0byt3m1n1
Path:
/
data
/
24
/
2
/
45
/
37
/
2208526
/
meta
/
2425775
/
mysql.backup
/
[
Home
]
File: magtt.mysqlv114.bak.sql
-- MySQL dump 10.11 -- -- Host: mysqlv114 Database: magtt -- ------------------------------------------------------ -- Server version 5.0.91 /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `admin_assert` ( `assert_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Assert ID', `assert_type` varchar(20) default NULL COMMENT 'Assert Type', `assert_data` text COMMENT 'Assert Data', PRIMARY KEY (`assert_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Admin Assert Table'; SET character_set_client = @saved_cs_client; -- -- 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_menutop` -- DROP TABLE IF EXISTS `admin_menutop`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `admin_menutop` ( `adminmenutop_id` int(11) unsigned NOT NULL auto_increment, `width_block_left` int(11) NOT NULL default '0', `width_block_right` int(11) NOT NULL default '0', `category_id` int(11) NOT NULL, `numbers_product` varchar(255) NOT NULL default '', `active_product` int(11) NOT NULL default '0', `static_block_top` int(11) NOT NULL default '0', `static_block_bottom` int(11) NOT NULL default '0', `static_block_left` int(11) NOT NULL default '0', `static_block_right` int(11) NOT NULL default '0', `label` varchar(255) NOT NULL default '', `active_thumbail` int(11) NOT NULL default '0', `active_static_block` int(11) NOT NULL default '0', `active_static_block_top` int(11) NOT NULL default '0', `active_static_block_bottom` int(11) NOT NULL default '0', `active_static_block_left` int(11) NOT NULL default '0', `active_static_block_right` int(11) NOT NULL default '0', `active_label` int(11) NOT NULL default '0', `level_column_count` int(11) NOT NULL default '0', `category_children` int(11) NOT NULL default '0', `font-color` varchar(50) character set utf8 collate utf8_unicode_ci NOT NULL, `background-color` varchar(50) character set utf8 collate utf8_unicode_ci NOT NULL, PRIMARY KEY (`adminmenutop_id`), UNIQUE KEY `category_id` (`category_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `admin_menutop` -- LOCK TABLES `admin_menutop` WRITE; /*!40000 ALTER TABLE `admin_menutop` DISABLE KEYS */; INSERT INTO `admin_menutop` VALUES (1,164,199,0,' 4 ',0,0,0,0,0,'',0,0,0,0,0,0,0,0,0,'',''); /*!40000 ALTER TABLE `admin_menutop` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_role` -- DROP TABLE IF EXISTS `admin_role`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `admin_role` ( `role_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Role ID', `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent Role ID', `tree_level` smallint(5) unsigned NOT NULL default '0' COMMENT 'Role Tree Level', `sort_order` smallint(5) unsigned NOT NULL default '0' COMMENT 'Role Sort Order', `role_type` varchar(1) NOT NULL default '0' COMMENT 'Role Type', `user_id` int(10) unsigned NOT NULL default '0' COMMENT 'User ID', `role_name` varchar(50) default NULL COMMENT 'Role Name', PRIMARY KEY (`role_id`), KEY `IDX_ADMIN_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`), KEY `IDX_ADMIN_ROLE_TREE_LEVEL` (`tree_level`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Admin Role Table'; SET character_set_client = @saved_cs_client; -- -- 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'),(4,1,2,0,'U',1,'admin'); /*!40000 ALTER TABLE `admin_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_rule` -- DROP TABLE IF EXISTS `admin_rule`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `admin_rule` ( `rule_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rule ID', `role_id` int(10) unsigned NOT NULL default '0' COMMENT 'Role ID', `resource_id` varchar(255) default NULL COMMENT 'Resource ID', `privileges` varchar(20) default NULL COMMENT 'Privileges', `assert_id` int(10) unsigned NOT NULL default '0' COMMENT 'Assert ID', `role_type` varchar(1) default NULL COMMENT 'Role Type', `permission` varchar(10) default NULL COMMENT 'Permission', PRIMARY KEY (`rule_id`), KEY `IDX_ADMIN_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`), KEY `IDX_ADMIN_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Admin Rule Table'; SET character_set_client = @saved_cs_client; -- -- 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',NULL,0,'G','allow'); /*!40000 ALTER TABLE `admin_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_user` -- DROP TABLE IF EXISTS `admin_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `admin_user` ( `user_id` int(10) unsigned NOT NULL auto_increment COMMENT 'User ID', `firstname` varchar(32) default NULL COMMENT 'User First Name', `lastname` varchar(32) default NULL COMMENT 'User Last Name', `email` varchar(128) default NULL COMMENT 'User Email', `username` varchar(40) default NULL COMMENT 'User Login', `password` varchar(100) default NULL COMMENT 'User Password', `created` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'User Created Time', `modified` timestamp NULL default NULL COMMENT 'User Modified Time', `logdate` timestamp NULL default NULL COMMENT 'User Last Login Time', `lognum` smallint(5) unsigned NOT NULL default '0' COMMENT 'User Login Number', `reload_acl_flag` smallint(6) NOT NULL default '0' COMMENT 'Reload ACL', `is_active` smallint(6) NOT NULL default '1' COMMENT 'User Is Active', `extra` text COMMENT 'User Extra Data', `rp_token` text COMMENT 'Reset Password Link Token', `rp_token_created_at` timestamp NULL default NULL COMMENT 'Reset Password Link Token Creation Date', PRIMARY KEY (`user_id`), UNIQUE KEY `UNQ_ADMIN_USER_USERNAME` (`username`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Admin User Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `admin_user` -- LOCK TABLES `admin_user` WRITE; /*!40000 ALTER TABLE `admin_user` DISABLE KEYS */; INSERT INTO `admin_user` VALUES (1,'admin','admin','admin@admin.com','admin','3a87bdf2ada1d8b041f73be21b1ab0af:kb9WuZLYL0WRUCfG7mPmzRxXcg0hN61D','2015-02-08 22:18:07','2015-03-30 18:32:53','2015-04-14 10:30:53',22,0,1,'a:1:{s:11:\"configState\";a:63:{s:7:\"web_url\";s:1:\"0\";s:7:\"web_seo\";s:1:\"1\";s:12:\"web_unsecure\";s:1:\"0\";s:10:\"web_secure\";s:1:\"0\";s:11:\"web_default\";s:1:\"0\";s:9:\"web_polls\";s:1:\"0\";s:10:\"web_cookie\";s:1:\"1\";s:11:\"web_session\";s:1:\"0\";s:24:\"web_browser_capabilities\";s:1:\"0\";s:14:\"design_package\";s:1:\"1\";s:12:\"design_theme\";s:1:\"1\";s:11:\"design_head\";s:1:\"0\";s:13:\"design_header\";s:1:\"1\";s:13:\"design_footer\";s:1:\"1\";s:16:\"design_watermark\";s:1:\"0\";s:17:\"design_pagination\";s:1:\"0\";s:12:\"design_email\";s:1:\"0\";s:11:\"cms_wysiwyg\";s:1:\"1\";s:24:\"cataloginventory_options\";s:1:\"1\";s:29:\"cataloginventory_item_options\";s:1:\"1\";s:15:\"general_country\";s:1:\"1\";s:14:\"general_locale\";s:1:\"1\";s:25:\"general_store_information\";s:1:\"0\";s:17:\"catalog_cloudzoom\";s:1:\"1\";s:16:\"catalog_frontend\";s:1:\"0\";s:14:\"catalog_review\";s:1:\"0\";s:15:\"catalog_sitemap\";s:1:\"1\";s:21:\"catalog_product_image\";s:1:\"0\";s:20:\"catalog_productalert\";s:1:\"0\";s:25:\"catalog_productalert_cron\";s:1:\"0\";s:19:\"catalog_placeholder\";s:1:\"0\";s:25:\"catalog_recently_products\";s:1:\"0\";s:13:\"catalog_price\";s:1:\"0\";s:26:\"catalog_layered_navigation\";s:1:\"0\";s:18:\"catalog_navigation\";s:1:\"0\";s:11:\"catalog_seo\";s:1:\"1\";s:14:\"catalog_search\";s:1:\"0\";s:20:\"catalog_downloadable\";s:1:\"0\";s:22:\"catalog_custom_options\";s:1:\"0\";s:16:\"currency_options\";s:1:\"1\";s:20:\"currency_webservicex\";s:1:\"0\";s:15:\"currency_import\";s:1:\"0\";s:9:\"blog_blog\";s:1:\"1\";s:9:\"blog_menu\";s:1:\"1\";s:13:\"blog_comments\";s:1:\"0\";s:14:\"blog_recaptcha\";s:1:\"0\";s:8:\"blog_rss\";s:1:\"0\";s:19:\"ajaxsearch_settings\";s:1:\"1\";s:27:\"ajaxsearch_searchbycategory\";s:1:\"0\";s:18:\"ajaxsearch_suggest\";s:1:\"0\";s:18:\"ajaxsearch_preview\";s:1:\"0\";s:19:\"ajaxsearch_category\";s:1:\"0\";s:15:\"ajaxsearch_page\";s:1:\"0\";s:15:\"ajaxsearch_info\";s:1:\"0\";s:17:\"megamenu_mainmenu\";s:1:\"1\";s:13:\"megamenu_info\";s:1:\"0\";s:15:\"googlemap_embed\";s:1:\"0\";s:18:\"googlemap_contacts\";s:1:\"1\";s:23:\"productlistgallery_list\";s:1:\"1\";s:23:\"productlistgallery_grid\";s:1:\"1\";s:28:\"productlistgallery_home_list\";s:1:\"1\";s:28:\"productlistgallery_home_grid\";s:1:\"1\";s:23:\"newsletterpopup_general\";s:1:\"1\";}}',NULL,NULL); /*!40000 ALTER TABLE `admin_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `adminnotification_inbox` -- DROP TABLE IF EXISTS `adminnotification_inbox`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `adminnotification_inbox` ( `notification_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Notification id', `severity` smallint(5) unsigned NOT NULL default '0' COMMENT 'Problem type', `date_added` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Create date', `title` varchar(255) NOT NULL COMMENT 'Title', `description` text COMMENT 'Description', `url` varchar(255) default NULL COMMENT 'Url', `is_read` smallint(5) unsigned NOT NULL default '0' COMMENT 'Flag if notification read', `is_remove` smallint(5) unsigned NOT NULL default '0' COMMENT 'Flag if notification might be removed', PRIMARY KEY (`notification_id`), KEY `IDX_ADMINNOTIFICATION_INBOX_SEVERITY` (`severity`), KEY `IDX_ADMINNOTIFICATION_INBOX_IS_READ` (`is_read`), KEY `IDX_ADMINNOTIFICATION_INBOX_IS_REMOVE` (`is_remove`) ) ENGINE=MyISAM AUTO_INCREMENT=98 DEFAULT CHARSET=utf8 COMMENT='Adminnotification Inbox'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `adminnotification_inbox` -- LOCK TABLES `adminnotification_inbox` WRITE; /*!40000 ALTER TABLE `adminnotification_inbox` DISABLE KEYS */; INSERT INTO `adminnotification_inbox` VALUES (1,4,'2008-07-25 09:24:40','Magento 1.1 Production Version Now Available','We are thrilled to announce the availability of the production release of Magento 1.1. Read more about the release in the Magento Blog.','http://www.magentocommerce.com/blog/comments/magento-11-is-here-1/',0,1),(2,4,'2008-08-02 09:30:16','Updated iPhone Theme is now available','Updated iPhone theme for Magento 1.1 is now available on Magento Connect and for upgrade through your Magento Connect Manager.','http://www.magentocommerce.com/blog/comments/updated-iphone-theme-for-magento-11-is-now-available/',0,1),(3,3,'2008-08-02 09:40:27','Magento version 1.1.2 is now available','Magento version 1.1.2 is now available for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-version-112-is-now-available/',0,1),(4,3,'2008-08-14 01:51:46','Magento version 1.1.3 is now available','Magento version 1.1.3 is now available','http://www.magentocommerce.com/blog/comments/magento-version-113-is-now-available/',0,1),(5,1,'2008-09-03 05:10:31','Magento Version 1.1.4 Security Update Now Available','Magento 1.1.4 Security Update Now Available. If you are using Magento version 1.1.x, we highly recommend upgrading to this version as soon as possible.','http://www.magentocommerce.com/blog/comments/magento-version-114-security-update/',0,1),(6,3,'2008-09-16 06:09:54','Magento version 1.1.5 Now Available','Magento version 1.1.5 Now Available.\n\nThis release includes many bug fixes, a new category manager and a new skin for the default Magento theme.','http://www.magentocommerce.com/blog/comments/magento-version-115-now-available/',0,1),(7,3,'2008-09-18 04:18:35','Magento version 1.1.6 Now Available','Magento version 1.1.6 Now Available.\n\nThis version includes bug fixes for Magento 1.1.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-116-now-available/',0,1),(8,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(9,3,'2008-11-20 11:31:12','Magento version 1.1.7 Now Available','Magento version 1.1.7 Now Available.\n\nThis version includes over 350 issue resolutions for Magento 1.1.x that are listed in the release notes section, and new functionality that includes:\n\n-Google Website Optimizer integration\n-Google Base integration\n-Scheduled DB logs cleaning option','http://www.magentocommerce.com/blog/comments/magento-version-117-now-available/',0,1),(10,3,'2008-11-27 07:24:50','Magento Version 1.1.8 Now Available','Magento version 1.1.8 now available.\n\nThis version includes some issue resolutions for Magento 1.1.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-118-now-available/',0,1),(11,3,'2008-12-30 17:45:59','Magento version 1.2.0 is now available for download and upgrade','We are extremely happy to announce the availability of Magento version 1.2.0 for download and upgrade.\n\nThis version includes numerous issue resolutions for Magento version 1.1.x and some highly requested new features such as:\n\n * Support for Downloadable/Digital Products. \n * Added Layered Navigation to site search result page.\n * Improved site search to utilize MySQL fulltext search\n * Added support for fixed-taxes on product level.\n * Upgraded Zend Framework to the latest stable version 1.7.2','http://www.magentocommerce.com/blog/comments/magento-version-120-is-now-available/',0,1),(12,2,'2008-12-31 07:59:22','Magento version 1.2.0.1 now available','Magento version 1.2.0.1 now available.This version includes some issue resolutions for Magento 1.2.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-1201-available/',0,1),(13,2,'2009-01-13 06:41:49','Magento version 1.2.0.2 now available','Magento version 1.2.0.2 is now available for download and upgrade. This version includes an issue resolutions for Magento version 1.2.0.x as listed in the release notes.','http://www.magentocommerce.com/blog/comments/magento-version-1202-now-available/',0,1),(14,3,'2009-01-24 10:25:56','Magento version 1.2.0.3 now available','Magento version 1.2.0.3 is now available for download and upgrade. This version includes issue resolutions for Magento version 1.2.0.x as listed in the release notes.','http://www.magentocommerce.com/blog/comments/magento-version-1203-now-available/',0,1),(15,3,'2009-02-03 07:57:00','Magento version 1.2.1 is now available for download and upgrade','We are happy to announce the availability of Magento version 1.2.1 for download and upgrade.\n\nThis version includes some issue resolutions for Magento version 1.2.x. A full list of items included in this release can be found on the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-121-now-available/',0,1),(16,3,'2009-02-24 10:45:47','Magento version 1.2.1.1 now available','Magento version 1.2.1.1 now available.This version includes some issue resolutions for Magento 1.2.x that are listed in the release notes section.','http://www.magentocommerce.com/blog/comments/magento-version-1211-now-available/',0,1),(17,3,'2009-02-27 11:39:24','CSRF Attack Prevention','We have just posted a blog entry about a hypothetical CSRF attack on a Magento admin panel. Please read the post to find out if your Magento installation is at risk at http://www.magentocommerce.com/blog/comments/csrf-vulnerabilities-in-web-application-and-how-to-avoid-them-in-magento/','http://www.magentocommerce.com/blog/comments/csrf-vulnerabilities-in-web-application-and-how-to-avoid-them-in-magento/',0,1),(18,2,'2009-03-04 09:03:58','Magento version 1.2.1.2 now available','Magento version 1.2.1.2 is now available for download and upgrade.\nThis version includes some updates to improve admin security as described in the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-1212-now-available/',0,1),(19,3,'2009-03-31 10:22:40','Magento version 1.3.0 now available','Magento version 1.3.0 is now available for download and upgrade. This version includes numerous issue resolutions for Magento version 1.2.x and new features as described on the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-130-is-now-available/',0,1),(20,3,'2009-04-18 12:06:02','Magento version 1.3.1 now available','Magento version 1.3.1 is now available for download and upgrade. This version includes some issue resolutions for Magento version 1.3.x and new features such as Checkout By Amazon and Amazon Flexible Payment. To see a full list of updates please check the release notes page.','http://www.magentocommerce.com/blog/comments/magento-version-131-now-available/',0,1),(21,3,'2009-05-20 06:31:21','Magento version 1.3.1.1 now available','Magento version 1.3.1.1 is now available for download and upgrade. This version includes some issue resolutions for Magento version 1.3.x and a security update for Magento installations that run on multiple domains or sub-domains. If you are running Magento with multiple domains or sub-domains we highly recommend upgrading to this version.','http://www.magentocommerce.com/blog/comments/magento-version-1311-now-available/',0,1),(22,3,'2009-05-30 06:54:06','Magento version 1.3.2 now available','This version includes some improvements and issue resolutions for version 1.3.x that are listed on the release notes page. also included is a Beta version of the Compile module.','http://www.magentocommerce.com/blog/comments/magento-version-132-now-available/',0,1),(23,3,'2009-06-02 03:32:52','Magento version 1.3.2.1 now available','Magento version 1.3.2.1 now available for download and upgrade.\n\nThis release solves an issue for users running Magento with PHP 5.2.0, and changes to index.php to support the new Compiler Module.','http://www.magentocommerce.com/blog/comments/magento-version-1321-now-available/',0,1),(24,3,'2009-07-02 09:21:44','Magento version 1.3.2.2 now available','Magento version 1.3.2.2 is now available for download and upgrade.\n\nThis release includes issue resolution for Magento version 1.3.x. To see a full list of changes please visit the release notes page http://www.magentocommerce.com/download/release_notes.','http://www.magentocommerce.com/blog/comments/magento-version-1322-now-available/',0,1),(25,3,'2009-07-23 14:48:54','Magento version 1.3.2.3 now available','Magento version 1.3.2.3 is now available for download and upgrade.\n\nThis release includes issue resolution for Magento version 1.3.x. We recommend to upgrade to this version if PayPal payment modules are in use. To see a full list of changes please visit the release notes page http://www.magentocommerce.com/download/release_notes.','http://www.magentocommerce.com/blog/comments/magento-version-1323-now-available/',0,1),(26,4,'2009-08-29 02:26:28','PayPal is updating Payflow Pro and Website Payments Pro (Payflow Edition) UK.','If you are using Payflow Pro and/or Website Payments Pro (Payflow Edition) UK. payment methods, you will need to update the URL‘s in your Magento Administrator Panel in order to process transactions after September 1, 2009. Full details are available here: http://www.magentocommerce.com/wiki/paypal_payflow_changes','http://www.magentocommerce.com/wiki/paypal_payflow_changes',0,1),(27,2,'2009-09-24 04:16:49','Magento Version 1.3.2.4 Security Update','Magento Version 1.3.2.4 is now available. This version includes a security updates for Magento 1.3.x that solves possible XSS vulnerability issue on customer registration page and is available through SVN, Download Page and through the Magento Connect Manager.','http://www.magentocommerce.com/blog/comments/magento-version-1324-security-update/',0,1),(28,4,'2009-09-25 22:57:54','Magento Preview Version 1.4.0.0-alpha2 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-alpha2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-alpha2-now-available/',0,1),(29,4,'2009-10-07 08:55:40','Magento Preview Version 1.4.0.0-alpha3 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-alpha3 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-alpha3-now-available/',0,1),(30,4,'2009-12-09 09:30:36','Magento Preview Version 1.4.0.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-beta1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-beta1-now-available/',0,1),(31,4,'2009-12-31 19:22:12','Magento Preview Version 1.4.0.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version 1.4.0.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1400-rc1-now-available/',0,1),(32,4,'2010-02-13 13:39:53','Magento CE Version 1.4.0.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.0.0 Stable for upgrade and download.','http://bit.ly/c53rpK',0,1),(33,3,'2010-02-20 12:39:36','Magento CE Version 1.4.0.1 Stable is now available','Magento CE 1.4.0.1 Stable is now available for upgrade and download.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1401-stable-now-available/',0,1),(34,4,'2010-04-24 04:09:03','Magento Version CE 1.3.3.0 Stable - Now Available With Support for 3-D Secure','Based on community requests, we are excited to announce the release of Magento CE 1.3.3.0-Stable with support for 3-D Secure. This release is intended for Magento merchants using version 1.3.x, who want to add support for 3-D Secure.','http://www.magentocommerce.com/blog/comments/magento-version-ce-1330-stable-now-available-with-support-for-3-d-secure/',0,1),(35,4,'2010-06-01 01:20:21','Announcing the Launch of Magento Mobile','The Magento team is pleased to announce the launch of Magento mobile, a new product that will allow Magento merchants to easily create branded, native mobile storefront applications that are deeply integrated with Magento’s market-leading eCommerce platform. The product includes a new administrative manager, a native iPhone app that is fully customizable, and a service where Magento manages the submission and maintenance process for the iTunes App Store.\n\nLearn more by visiting the Magento mobile product page and sign-up to be the first to launch a native mobile commerce app, fully integrated with Magento.','http://www.magentocommerce.com/product/mobile',0,1),(36,4,'2010-06-11 04:08:08','Magento CE Version 1.4.1.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.1.0 Stable for upgrade and download. Some of the highlights of this release include: Enhanced PayPal integration (more info to follow), Change of Database structure of the Sales module to no longer use EAV, and much more.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1410-stable-now-available/',0,1),(37,4,'2010-07-27 05:37:34','Magento CE Version 1.4.1.1 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.1.1 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1411-stable-now-available/',0,1),(38,4,'2010-07-28 13:12:12','Magento CE Version 1.4.2.0-beta1 Preview Release Now Available','This release gives a preview of the new Magento Connect Manager.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1420-beta1-now-available/',0,1),(39,4,'2010-07-29 04:15:01','Magento CE Version 1.4.1.1 Patch Available','As some users experienced issues with upgrading to CE 1.4.1.1 through PEAR channels we provided a patch for it that is available on our blog http://www.magentocommerce.com/blog/comments/magento-ce-version-1411-stable-patch/','http://www.magentocommerce.com/blog/comments/magento-ce-version-1411-stable-patch/',0,1),(40,4,'2010-10-12 08:13:25','Magento Mobile is now live!','Magento Mobile is now live! Signup today to have your own native iPhone mobile-shopping app in iTunes for the holiday season! Learn more at http://www.magentomobile.com/','http://www.magentomobile.com/',0,1),(41,4,'2010-11-09 07:52:06','Magento CE Version 1.4.2.0-RC1 Preview Release Now Available','We are happy to announce the availability of Magento Preview Version 1.4.2.0-RC1 for download.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1420-rc1-now-available/',0,1),(42,4,'2010-12-03 06:33:00','Magento CE Version 1.4.2.0-RC2 Preview Release Now Available','We are happy to announce the availability of Magento Preview Version 1.4.2.0-RC2 for download.','http://www.magentocommerce.com/blog/comments/magento-preview-version-1420-rc2-now-available/',0,1),(43,4,'2010-12-09 08:29:55','Magento CE Version 1.4.2.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.4.2.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1420-stable-now-available/',0,1),(44,4,'2010-12-18 09:23:55','Magento Preview Version CE 1.5.0.0-alpha1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-alpha1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-alpha1-now-available/',0,1),(45,4,'2010-12-30 09:51:08','Magento Preview Version CE 1.5.0.0-alpha2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-alpha2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-alpha2-now-available/',0,1),(46,4,'2011-01-14 10:35:36','Magento Preview Version CE 1.5.0.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-beta1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-beta1-now-available/',0,1),(47,4,'2011-01-22 07:19:09','Magento Preview Version CE 1.5.0.0-beta2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-beta2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-beta2-now-available/',0,1),(48,4,'2011-01-28 07:27:57','Magento Preview Version CE 1.5.0.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-rc1-now-available/',0,1),(49,4,'2011-02-04 07:56:33','Magento Preview Version CE 1.5.0.0-rc2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.5.0.0-rc2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1500-rc2-now-available/',0,1),(50,4,'2011-02-09 05:43:23','Magento CE Version 1.5.0.0 Stable is now available','We are excited to announce the availability of Magento CE Version 1.5.0.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-community-professional-and-enterprise-editions-releases-now-availab/',0,1),(51,4,'2011-02-10 09:42:57','Magento CE 1.5.0.1 stable Now Available','We are excited to announce the availability of Magento CE Version 1.5.0.1 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-1501-stable-now-available/',0,1),(52,4,'2011-03-19 04:15:45','Magento CE 1.5.1.0-beta1 Now Available','We are happy to announce the availability of Magento Preview Version CE 1.5.1.0-beta1 for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1510-beta1-now-available/',0,1),(53,4,'2011-04-01 02:43:02','Magento CE 1.5.1.0-rc1 Now Available','We are happy to announce the availability of Magento Preview Version CE 1.5.1.0-rc1 for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1510-rc1-now-available/',0,1),(54,4,'2011-04-27 03:21:07','Magento CE 1.5.1.0-stable Now Available','We are excited to announce the availability of Magento CE Version 1.5.1.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1510-stable-now-available/',0,1),(55,4,'2011-05-27 03:33:23','Magento Preview Version CE 1.6.0.0-alpha1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-alpha1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-alpha1-now-available/',0,1),(56,4,'2011-06-16 02:12:08','Magento Preview Version CE 1.6.0.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-beta1for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-beta1-now-available/',0,1),(57,4,'2011-07-01 03:03:58','Magento Preview Version CE 1.6.0.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-rc1-now-available/',0,1),(58,4,'2011-07-12 03:07:39','Magento Preview Version CE 1.6.0.0-rc2 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.0.0-rc2 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1600-rc2-now-available/',0,1),(59,4,'2011-08-20 01:58:31','Magento CE 1.6.0.0-stable Now Available','We are excited to announce the availability of Magento CE Version 1.6.0.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1600-stable-now-available/',0,1),(60,4,'2011-09-17 09:31:26','Magento Preview Version CE 1.6.1.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.1.0-beta1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1610-beta1-now-available/',0,1),(61,4,'2011-09-29 23:44:10','Magento Preview Version CE 1.6.1.0-rc1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.6.1.0-rc1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1610-rc1-now-available/',0,1),(62,4,'2011-10-20 01:50:05','Magento CE 1.6.1.0-stable Now Available','We are excited to announce the availability of Magento CE Version 1.6.1.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1610-stable-now-available/',0,1),(63,4,'2011-12-31 03:39:35','Magento Preview Version CE 1.7.0.0-alpha1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.7.0.0-alpha1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1700-alpha1-now-available/',0,1),(64,4,'2012-01-12 03:24:20','Magento CE 1.6.2.0-stable Now Available','We are excited to announce the availability of Magento CE Version 1.6.2.0 Stable for download and upgrade.','http://www.magentocommerce.com/blog/comments/magento-ce-version-1620-stable-now-available/',0,1),(65,4,'2012-03-03 05:54:12','Magento Preview Version CE 1.7.0.0-beta1 is now available','We are happy to announce the availability of Magento Preview Version CE 1.7.0.0-beta1 for download.\nAs this is a preview version it is NOT recommended in any way to be used in a production environment.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1700-beta1-now-available/',0,1),(66,4,'2012-04-23 18:02:40','Magento Community Preview Version CE 1.7.0.0-RC1 has been released!','Learn more about the exciting new features and updates in this release and how you can take it for a test drive. As this is a preview version, we need to stress that it\'s likely unstable and that we DON\'T recommend that you use it in any production environment just yet.','http://www.magentocommerce.com/blog/comments/magento-preview-version-ce-1700-rc1-now-available/',0,1),(67,4,'2012-05-11 13:46:54','Magento Community 1.7 and Magento Enterprise 1.12 now available!','Learn more about the exciting new features and updates in these releases.','http://www.magentocommerce.com/blog/comments/magento-enterprise-112-and-community-17-now-available/',0,1),(68,4,'2012-06-20 22:54:07','Magento Community Edition 1.7.0.1 now available! ','We have just released an updated version of Magento Community Edition, version 1.7.0.1. This update delivers new, minor functionality and fixes for some potential security vulnerabilities.','http://www.magentocommerce.com/blog/comments/magento-community-edition-1701-released/',0,1),(69,4,'2012-07-05 23:21:43','Important Security Update - Zend Platform Vulnerability','We have recently learned of a serious vulnerability in the Zend platform on which Magento is built. Learn more and access a patch that addresses this issue. ','http://www.magentocommerce.com/blog/comments/important-security-update-zend-platform-vulnerability/',0,1),(70,4,'2012-11-20 01:27:42','Wrap up more holiday sales with financing','Give your customers up to 6 months financing. You get paid right away with Bill Me Later, a PayPal service. It’s a great way to extend financing in time for the holidays. Learn More.','http://www.magentocommerce.com/paypal/billmelater?utm_source=CEMessaging&utm_medium=copy&utm_content=sixmonths&utm_campaign=BML',0,1),(71,4,'2012-12-07 16:22:30','Increase Your Sales With PayPal','Magento merchants using PayPal Express Checkout can help increase their sales on average 18%. It is one simple thing you can do right now to help boost your sales. Learn more.','http://www.magentocommerce.com/add-paypal?utm_source=CEModule&utm_medium=copy&utm_content=18&utm_campaign=choosepaypal',0,1),(72,4,'2013-01-16 03:02:07','Imagine 2013 Registration is Now Open!','Join 1500 merchants, partners, developers and enthusiasts from 35+ countries around the world for Magento’s premier global conference! Collaborate, learn, network and get inspired by the future of eCommerce. Tickets will sell out fast! April 8th – 10th in Las Vegas.','https://registration.imagineecommerce.com/',0,1),(73,4,'2013-02-12 22:53:42','Get More eCommerce Power with Magento Enterprise','Limited time offer: Get a free, customized evaluation of your Community Edition site from a Magento Solution Partner. This evaluation gives you a clear look at the numerous benefits you can achieve by upgrading to Enterprise Edition. ','http://www.magentocommerce.com/community-to-enterprise?utm_source=CEMM&utm_medium=copy&utm_campaign=CE2EE',0,1),(74,2,'2013-09-27 21:28:13','Magento Community Edition 1.8.0.0 - now available for download!','Get tax, security, performance, and many other improvements. \n\nLearn more at http://www.magentocommerce.com/blog/comments/magento-community-edition-one-eight-now-available/ ','http://www.magentocommerce.com/blog/comments/magento-community-edition-one-eight-now-available/',0,1),(75,4,'2013-12-11 20:35:06','Magento Community Edition 1.8.1.0 is here!','This new version offers significant tax calculation, product quality, and security enhancements. Be sure to carefully review the upgrade instructions before starting. More information is available at http://www.magentocommerce.com/blog/comments/magento-community-edition-1810-is-here/','http://www.magentocommerce.com/blog/comments/magento-community-edition-1810-is-here/',0,1),(76,4,'2013-12-13 04:24:39','Important Magento Community Edition Patch','A security patch is available for Magento Community Edition 1.4.0.0 through 1.7.0.2; the issue has been fixed in Magento Community Edition 1.8.0.0 and later. It resolves a vulnerability discovered through our quarterly penetration testing process and has not been reported by merchants. We encourage all merchants to apply the patch in their next regularly scheduled maintenance cycle. The patch is available at http://www.magentocommerce.com/download in the Magento Community Edition Patches section.','http://www.magentocommerce.com/download',0,1),(77,4,'2014-01-21 23:34:48','PHP 5.4 Patch Now Available','Magento is advancing its platform and making development more efficient by adding support for PHP 5.4. Patches are available for download at www.magentocommerce.com/download and you can learn more about this update in our blog post at http://www.magentocommerce.com/blog/comments/magento-now-supports-php-54 .','http://www.magentocommerce.com/blog/comments/magento-now-supports-php-54',0,1),(78,4,'2014-02-20 22:51:46','Discover Card Validation Patch Available','A patch that resolves an issue with validating Discover credit cards is now available for download at http://www.magentocommerce.com/download. More information on the patch is available in the Magento Knowledge Base at http://www.magentocommerce.com/knowledge-base/entry/discover-card-validation','http://www.magentocommerce.com/knowledge-base/entry/discover-card-validation ',0,1),(79,4,'2014-03-04 20:12:26','Learn How to Quickly Increase Sales on Your Site','Adding the PayPal Express Checkout button to your checkout page can help increase sales 18% on average. It’s fast and easy and you can do it right now to boost sales. Express Checkout is already seamlessly integrated into Community Edition.','http://magento.com/paypal/CE_Express_Checkout_NA?utm_source=messagemodule&utm_medium=message&utm_campaign=Ceexpresscheckout',0,1),(80,4,'2014-05-13 20:46:11','Magento Community Edition 1.9 is now available!','It accelerates your entry into the mobile commerce space by slashing the time and cost of getting a mobile device-friendly responsive site. And a new Bill Me Later payment option helps boost your sales. Visit http://magento.com/blog/magento-news/magento-enables-responsive-sites-half-time to learn more.','http://magento.com/blog/magento-news/magento-enables-responsive-sites-half-time',0,1),(81,4,'2014-10-08 08:55:06','It’s still not too late: Boost your 2014 Holiday sales today.','See results in as little as one week with eBay Enterprise Display and 2 business days with eBay Enterprise Affiliate. DID YOU KNOW: Get access to over 128 million highly qualified shoppers on eBay.com with eBay Enterprise Display. And the average retail client using product retargeting sees a $10 to $1 ROI on retargeting spend during Q4. With the eBay Enterprise Affiliate Network, get access to over 200,000 active network publishers across 30+ verticals, and only pay when a customer makes a purchase (Affiliate Network is only available in the U.S. & Canada). GET STARTED TODAY by visiting www.ebayenterprise.com/turbochargesales','http://www.ebayenterprise.com/turbochargesales',0,1),(82,4,'2014-11-13 00:03:26','Important: PayPal Users Must Discontinue Using SSL 3.0 By December 3, 2014','To address a vulnerability with the SSL 3.0 security protocol, PayPal and other payment gateways will be disabling SSL 3.0 support. Merchants must upgrade to Transport Layer Service (TLS) by December 3, 2014 to avoid PayPal payment operation failures. Learn more about what you need to do at https://devblog.paypal.com/poodle-ssl-3-0-vulnerability/','https://devblog.paypal.com/poodle-ssl-3-0-vulnerability/',0,1),(83,4,'2014-11-25 04:25:21','Magento Community Edition 1.9.1 is available!','Magento Community Edition 1.9.1 empowers merchants to deliver compelling shopping experiences by offering enhanced responsive design capabilities, new swatches to display product variations, and improved performance through support for MySQL 5.6 and PHP 5.5. It also includes support for Google Universal Analytics and over 70 product improvements. Find out more at http://magento.com/blog/magento-news/magento-community-edition-191-now-available-download','http://magento.com/blog/magento-news/magento-community-edition-191-now-available-download',0,1),(84,4,'2015-01-22 22:47:08','Join Us at Imagine Commerce 2015 - April 20-22 at the Wynn Las Vegas','Join Magento, eBay Enterprise, and over 2,000 merchants, developers, and eCommerce experts at the premier Commerce event of the year. With three days of cutting-edge keynote presentations, special technical programs, dynamic breakout sessions, and incredible networking opportunities, Imagine Commerce 2015 will educate, enrich, and inspire you to take your business to new heights. Register now at http://imagine2015.magento.com/.','http://imagine2015.magento.com/',0,1),(85,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(86,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(87,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(88,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(89,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(90,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(91,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(92,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(93,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(94,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(95,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(96,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1),(97,4,'2008-11-08 09:46:42','Reminder: Change Magento`s default phone numbers and callouts before site launch','Before launching your Magento store, please remember to change Magento`s default phone numbers that appear in email templates, callouts, templates, etc.',NULL,0,1); /*!40000 ALTER TABLE `adminnotification_inbox` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api2_acl_attribute` -- DROP TABLE IF EXISTS `api2_acl_attribute`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `api2_acl_attribute` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity ID', `user_type` varchar(20) NOT NULL COMMENT 'Type of user', `resource_id` varchar(255) NOT NULL COMMENT 'Resource ID', `operation` varchar(20) NOT NULL COMMENT 'Operation', `allowed_attributes` text COMMENT 'Allowed attributes', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_API2_ACL_ATTRIBUTE_USER_TYPE_RESOURCE_ID_OPERATION` (`user_type`,`resource_id`,`operation`), KEY `IDX_API2_ACL_ATTRIBUTE_USER_TYPE` (`user_type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Api2 Filter ACL Attributes'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `api2_acl_attribute` -- LOCK TABLES `api2_acl_attribute` WRITE; /*!40000 ALTER TABLE `api2_acl_attribute` DISABLE KEYS */; /*!40000 ALTER TABLE `api2_acl_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api2_acl_role` -- DROP TABLE IF EXISTS `api2_acl_role`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `api2_acl_role` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity ID', `created_at` timestamp NOT NULL default CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', `role_name` varchar(255) NOT NULL COMMENT 'Name of role', PRIMARY KEY (`entity_id`), KEY `IDX_API2_ACL_ROLE_CREATED_AT` (`created_at`), KEY `IDX_API2_ACL_ROLE_UPDATED_AT` (`updated_at`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Api2 Global ACL Roles'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `api2_acl_role` -- LOCK TABLES `api2_acl_role` WRITE; /*!40000 ALTER TABLE `api2_acl_role` DISABLE KEYS */; INSERT INTO `api2_acl_role` VALUES (1,'2015-02-09 00:13:44',NULL,'Guest'),(2,'2015-02-09 00:13:44',NULL,'Customer'); /*!40000 ALTER TABLE `api2_acl_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api2_acl_rule` -- DROP TABLE IF EXISTS `api2_acl_rule`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `api2_acl_rule` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity ID', `role_id` int(10) unsigned NOT NULL COMMENT 'Role ID', `resource_id` varchar(255) NOT NULL COMMENT 'Resource ID', `privilege` varchar(20) default NULL COMMENT 'ACL Privilege', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_API2_ACL_RULE_ROLE_ID_RESOURCE_ID_PRIVILEGE` (`role_id`,`resource_id`,`privilege`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Api2 Global ACL Rules'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `api2_acl_rule` -- LOCK TABLES `api2_acl_rule` WRITE; /*!40000 ALTER TABLE `api2_acl_rule` DISABLE KEYS */; /*!40000 ALTER TABLE `api2_acl_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api2_acl_user` -- DROP TABLE IF EXISTS `api2_acl_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `api2_acl_user` ( `admin_id` int(10) unsigned NOT NULL COMMENT 'Admin ID', `role_id` int(10) unsigned NOT NULL COMMENT 'Role ID', UNIQUE KEY `UNQ_API2_ACL_USER_ADMIN_ID` (`admin_id`), KEY `FK_API2_ACL_USER_ROLE_ID_API2_ACL_ROLE_ENTITY_ID` (`role_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Api2 Global ACL Users'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `api2_acl_user` -- LOCK TABLES `api2_acl_user` WRITE; /*!40000 ALTER TABLE `api2_acl_user` DISABLE KEYS */; /*!40000 ALTER TABLE `api2_acl_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_assert` -- DROP TABLE IF EXISTS `api_assert`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `api_assert` ( `assert_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Assert id', `assert_type` varchar(20) default NULL COMMENT 'Assert type', `assert_data` text COMMENT 'Assert additional data', PRIMARY KEY (`assert_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Api ACL Asserts'; SET character_set_client = @saved_cs_client; -- -- 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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `api_role` ( `role_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Role id', `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent role id', `tree_level` smallint(5) unsigned NOT NULL default '0' COMMENT 'Role level in tree', `sort_order` smallint(5) unsigned NOT NULL default '0' COMMENT 'Sort order to display on admin area', `role_type` varchar(1) NOT NULL default '0' COMMENT 'Role type', `user_id` int(10) unsigned NOT NULL default '0' COMMENT 'User id', `role_name` varchar(50) default NULL COMMENT 'Role name', PRIMARY KEY (`role_id`), KEY `IDX_API_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`), KEY `IDX_API_ROLE_TREE_LEVEL` (`tree_level`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Api ACL Roles'; SET character_set_client = @saved_cs_client; -- -- 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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `api_rule` ( `rule_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Api rule Id', `role_id` int(10) unsigned NOT NULL default '0' COMMENT 'Api role Id', `resource_id` varchar(255) default NULL COMMENT 'Module code', `api_privileges` varchar(20) default NULL COMMENT 'Privileges', `assert_id` int(10) unsigned NOT NULL default '0' COMMENT 'Assert id', `role_type` varchar(1) default NULL COMMENT 'Role type', `api_permission` varchar(10) default NULL COMMENT 'Permission', PRIMARY KEY (`rule_id`), KEY `IDX_API_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`), KEY `IDX_API_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Api ACL Rules'; SET character_set_client = @saved_cs_client; -- -- 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_session` -- DROP TABLE IF EXISTS `api_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `api_session` ( `user_id` int(10) unsigned NOT NULL COMMENT 'User id', `logdate` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Login date', `sessid` varchar(40) default NULL COMMENT 'Sessioin id', KEY `IDX_API_SESSION_USER_ID` (`user_id`), KEY `IDX_API_SESSION_SESSID` (`sessid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Api Sessions'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `api_session` -- LOCK TABLES `api_session` WRITE; /*!40000 ALTER TABLE `api_session` DISABLE KEYS */; /*!40000 ALTER TABLE `api_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_user` -- DROP TABLE IF EXISTS `api_user`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `api_user` ( `user_id` int(10) unsigned NOT NULL auto_increment COMMENT 'User id', `firstname` varchar(32) default NULL COMMENT 'First name', `lastname` varchar(32) default NULL COMMENT 'Last name', `email` varchar(128) default NULL COMMENT 'Email', `username` varchar(40) default NULL COMMENT 'Nickname', `api_key` varchar(100) default NULL COMMENT 'Api key', `created` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'User record create date', `modified` timestamp NULL default NULL COMMENT 'User record modify date', `lognum` smallint(5) unsigned NOT NULL default '0' COMMENT 'Quantity of log ins', `reload_acl_flag` smallint(6) NOT NULL default '0' COMMENT 'Refresh ACL flag', `is_active` smallint(6) NOT NULL default '1' COMMENT 'Account status', PRIMARY KEY (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Api Users'; SET character_set_client = @saved_cs_client; -- -- 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 `aw_blog` -- DROP TABLE IF EXISTS `aw_blog`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `aw_blog` ( `post_id` int(11) unsigned NOT NULL auto_increment, `title` varchar(255) NOT NULL default '', `post_content` text NOT NULL, `status` smallint(6) NOT NULL default '0', `created_time` datetime default NULL, `update_time` datetime default NULL, `identifier` varchar(255) NOT NULL default '', `user` varchar(255) NOT NULL default '', `update_user` varchar(255) NOT NULL default '', `meta_keywords` text NOT NULL, `meta_description` text NOT NULL, `comments` tinyint(11) NOT NULL, `tags` text NOT NULL, `short_content` text NOT NULL, PRIMARY KEY (`post_id`), UNIQUE KEY `identifier` (`identifier`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `aw_blog` -- LOCK TABLES `aw_blog` WRITE; /*!40000 ALTER TABLE `aw_blog` DISABLE KEYS */; INSERT INTO `aw_blog` VALUES (1,'Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do.','<img src=\"{{skin url=\'images/blog-1.jpg\'}}\" alt=\"post-img\" class=\"post-img\">\r\n<span class=\"post-text\">Lorem ipsum dolor ipsum dolor ipsum dolor ipsum dolor ipsum dolor ipsum dolorsit amet sit amet conse ctetur adipisicing v sit amet conse ctetur adipisicing conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse dolor ipsum dolor ipsum dolor ipsum dolor ipsum dolorsit amet sit amet conse ctetur adipisicing v sit amet conse ctetur adipisicing conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet consedolor ipsum dolor ipsum dolor ipsum dolor ipsum dolorsit amet sit amet conse ctetur adipisicing v sit amet conse ctetur adipisicing conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet consedolor ipsum dolor ipsum dolor ipsum dolor ipsum dolorsit amet sit amet conse ctetur adipisicing v sit amet conse ctetur adipisicing conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet consedolor ipsum dolor ipsum dolor ipsum dolor ipsum dolorsit amet sit amet conse ctetur adipisicing v sit amet conse ctetur adipisicing conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet consedolor ipsum dolor ipsum dolor ipsum dolor ipsum dolorsit amet sit amet conse ctetur adipisicing v sit amet conse ctetur adipisicing conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do.</span>',1,'2010-09-01 07:28:00','2015-04-09 15:00:43','lorem','Blogs','admin admin','','',0,'','<img src=\"{{skin url=\'images/blog-1.jpg\'}}\" alt=\"post-img\" class=\"post-img\">\r\n<span class=\"post-text\">Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do.</span>'),(2,'Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do','<img src=\"{{skin url=\'images/blog-2.jpg\'}}\" alt=\"post-img\" class=\"post-img\">\r\n<span class=\"post-text\">Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit ametamet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit ametamet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit ametamet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit ametamet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit ametamet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit ametamet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit ametamet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do.</span>',1,'2015-04-03 15:00:58','2015-04-09 15:04:40','lorem-ipsum','admin','admin admin','','',0,'','<img src=\"{{skin url=\'images/blog-2.jpg\'}}\" alt=\"post-img\" class=\"post-img\">\r\n<span class=\"post-text\">Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do. Lorem ipsum dolor sit amet conse ctetur adipisicing elit sed do.</span>'); /*!40000 ALTER TABLE `aw_blog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `aw_blog_cat` -- DROP TABLE IF EXISTS `aw_blog_cat`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `aw_blog_cat` ( `cat_id` int(11) unsigned NOT NULL auto_increment, `title` varchar(255) NOT NULL default '', `identifier` varchar(255) NOT NULL default '', `sort_order` tinyint(6) NOT NULL, `meta_keywords` text NOT NULL, `meta_description` text NOT NULL, PRIMARY KEY (`cat_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `aw_blog_cat` -- LOCK TABLES `aw_blog_cat` WRITE; /*!40000 ALTER TABLE `aw_blog_cat` DISABLE KEYS */; INSERT INTO `aw_blog_cat` VALUES (1,'News','news',0,'',''); /*!40000 ALTER TABLE `aw_blog_cat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `aw_blog_cat_store` -- DROP TABLE IF EXISTS `aw_blog_cat_store`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `aw_blog_cat_store` ( `cat_id` smallint(6) unsigned default NULL, `store_id` smallint(6) unsigned default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `aw_blog_cat_store` -- LOCK TABLES `aw_blog_cat_store` WRITE; /*!40000 ALTER TABLE `aw_blog_cat_store` DISABLE KEYS */; /*!40000 ALTER TABLE `aw_blog_cat_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `aw_blog_comment` -- DROP TABLE IF EXISTS `aw_blog_comment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `aw_blog_comment` ( `comment_id` int(11) unsigned NOT NULL auto_increment, `post_id` smallint(11) NOT NULL default '0', `comment` text NOT NULL, `status` smallint(6) NOT NULL default '0', `created_time` datetime default NULL, `user` varchar(255) NOT NULL default '', `email` varchar(255) NOT NULL default '', PRIMARY KEY (`comment_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `aw_blog_comment` -- LOCK TABLES `aw_blog_comment` WRITE; /*!40000 ALTER TABLE `aw_blog_comment` DISABLE KEYS */; INSERT INTO `aw_blog_comment` VALUES (1,1,'This is the first comment. It can be edited, deleted or set to unapproved so it is not displayed. This can be done in the admin panel.',2,'2015-02-08 19:13:57','Joe Blogs','joe@blogs.com'); /*!40000 ALTER TABLE `aw_blog_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `aw_blog_post_cat` -- DROP TABLE IF EXISTS `aw_blog_post_cat`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `aw_blog_post_cat` ( `cat_id` smallint(6) unsigned default NULL, `post_id` smallint(6) unsigned default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `aw_blog_post_cat` -- LOCK TABLES `aw_blog_post_cat` WRITE; /*!40000 ALTER TABLE `aw_blog_post_cat` DISABLE KEYS */; INSERT INTO `aw_blog_post_cat` VALUES (1,1),(1,2); /*!40000 ALTER TABLE `aw_blog_post_cat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `aw_blog_store` -- DROP TABLE IF EXISTS `aw_blog_store`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `aw_blog_store` ( `post_id` smallint(6) unsigned default NULL, `store_id` smallint(6) unsigned default NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `aw_blog_store` -- LOCK TABLES `aw_blog_store` WRITE; /*!40000 ALTER TABLE `aw_blog_store` DISABLE KEYS */; INSERT INTO `aw_blog_store` VALUES (1,1),(1,2),(1,3),(1,4),(2,1),(2,2),(2,3),(2,4); /*!40000 ALTER TABLE `aw_blog_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `aw_blog_tags` -- DROP TABLE IF EXISTS `aw_blog_tags`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `aw_blog_tags` ( `id` int(11) NOT NULL auto_increment, `tag` varchar(255) NOT NULL, `tag_count` int(11) NOT NULL default '0', `store_id` tinyint(4) NOT NULL, PRIMARY KEY (`id`), KEY `tag` (`tag`,`tag_count`,`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `aw_blog_tags` -- LOCK TABLES `aw_blog_tags` WRITE; /*!40000 ALTER TABLE `aw_blog_tags` DISABLE KEYS */; /*!40000 ALTER TABLE `aw_blog_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `captcha_log` -- DROP TABLE IF EXISTS `captcha_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `captcha_log` ( `type` varchar(32) NOT NULL COMMENT 'Type', `value` varchar(32) NOT NULL COMMENT 'Value', `count` int(10) unsigned NOT NULL default '0' COMMENT 'Count', `updated_at` timestamp NULL default NULL COMMENT 'Update Time', PRIMARY KEY (`type`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Count Login Attempts'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `captcha_log` -- LOCK TABLES `captcha_log` WRITE; /*!40000 ALTER TABLE `captcha_log` DISABLE KEYS */; /*!40000 ALTER TABLE `captcha_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_anc_categs_index_idx` -- DROP TABLE IF EXISTS `catalog_category_anc_categs_index_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_anc_categs_index_idx` ( `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID', `path` varchar(255) default NULL COMMENT 'Path', KEY `IDX_CATALOG_CATEGORY_ANC_CATEGS_INDEX_IDX_CATEGORY_ID` (`category_id`), KEY `IDX_CATALOG_CATEGORY_ANC_CATEGS_INDEX_IDX_PATH_CATEGORY_ID` (`path`,`category_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Indexer Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_category_anc_categs_index_idx` -- LOCK TABLES `catalog_category_anc_categs_index_idx` WRITE; /*!40000 ALTER TABLE `catalog_category_anc_categs_index_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_anc_categs_index_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_anc_categs_index_tmp` -- DROP TABLE IF EXISTS `catalog_category_anc_categs_index_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_anc_categs_index_tmp` ( `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID', `path` varchar(255) default NULL COMMENT 'Path', KEY `IDX_CATALOG_CATEGORY_ANC_CATEGS_INDEX_TMP_CATEGORY_ID` (`category_id`), KEY `IDX_CATALOG_CATEGORY_ANC_CATEGS_INDEX_TMP_PATH_CATEGORY_ID` (`path`,`category_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Indexer Temp Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_category_anc_categs_index_tmp` -- LOCK TABLES `catalog_category_anc_categs_index_tmp` WRITE; /*!40000 ALTER TABLE `catalog_category_anc_categs_index_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_anc_categs_index_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_anc_products_index_idx` -- DROP TABLE IF EXISTS `catalog_category_anc_products_index_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_anc_products_index_idx` ( `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `position` int(10) unsigned default NULL COMMENT 'Position', KEY `IDX_CAT_CTGR_ANC_PRDS_IDX_IDX_CTGR_ID_PRD_ID_POSITION` (`category_id`,`product_id`,`position`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Product Indexer Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_category_anc_products_index_idx` -- LOCK TABLES `catalog_category_anc_products_index_idx` WRITE; /*!40000 ALTER TABLE `catalog_category_anc_products_index_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_anc_products_index_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_anc_products_index_tmp` -- DROP TABLE IF EXISTS `catalog_category_anc_products_index_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_anc_products_index_tmp` ( `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `position` int(10) unsigned default NULL COMMENT 'Position', KEY `IDX_CAT_CTGR_ANC_PRDS_IDX_TMP_CTGR_ID_PRD_ID_POSITION` (`category_id`,`product_id`,`position`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Product Indexer Temp Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_category_anc_products_index_tmp` -- LOCK TABLES `catalog_category_anc_products_index_tmp` WRITE; /*!40000 ALTER TABLE `catalog_category_anc_products_index_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_anc_products_index_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_entity` -- DROP TABLE IF EXISTS `catalog_category_entity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_entity` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity ID', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attriute Set ID', `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent Category ID', `created_at` timestamp NULL default NULL COMMENT 'Creation Time', `updated_at` timestamp NULL default NULL COMMENT 'Update Time', `path` varchar(255) NOT NULL COMMENT 'Tree Path', `position` int(11) NOT NULL COMMENT 'Position', `level` int(11) NOT NULL default '0' COMMENT 'Tree Level', `children_count` int(11) NOT NULL COMMENT 'Child Count', PRIMARY KEY (`entity_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_LEVEL` (`level`), KEY `IDX_CATALOG_CATEGORY_ENTITY_PATH_ENTITY_ID` (`path`,`entity_id`) ) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Table'; SET character_set_client = @saved_cs_client; -- -- 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,3,0,0,'2015-08-02 21:15:33','2015-02-08 22:15:33','1',0,0,21),(2,3,3,1,'2015-02-08 22:15:35','2015-02-08 22:15:35','1/2',1,1,20),(3,3,3,2,'2015-02-24 20:49:23','2015-02-24 20:49:23','1/2/3',3,2,8),(4,3,3,3,'2015-02-24 20:50:29','2015-02-24 20:50:29','1/2/3/4',1,3,0),(5,3,3,3,'2015-02-24 20:52:00','2015-02-24 20:52:00','1/2/3/5',2,3,1),(6,3,3,3,'2015-02-24 20:52:33','2015-02-24 20:52:33','1/2/3/6',3,3,0),(7,3,3,3,'2015-02-24 20:53:03','2015-02-24 20:53:03','1/2/3/7',4,3,0),(8,3,3,3,'2015-02-24 20:53:36','2015-02-24 20:53:36','1/2/3/8',5,3,0),(9,3,3,3,'2015-02-24 20:54:12','2015-02-24 20:54:12','1/2/3/9',6,3,0),(10,3,3,3,'2015-02-24 20:54:46','2015-02-24 20:54:46','1/2/3/10',7,3,0),(11,3,3,2,'2015-02-24 20:55:20','2015-02-24 20:55:20','1/2/11',1,2,0),(12,3,3,2,'2015-02-24 20:55:47','2015-02-24 20:55:47','1/2/12',2,2,0),(13,3,3,2,'2015-02-24 20:56:25','2015-02-24 20:56:25','1/2/13',4,2,0),(14,3,3,2,'2015-02-24 20:56:48','2015-02-24 20:56:48','1/2/14',5,2,0),(15,3,3,2,'2015-02-24 20:57:19','2015-02-24 20:57:19','1/2/15',6,2,0),(16,3,3,2,'2015-02-24 20:57:43','2015-02-24 20:57:43','1/2/16',7,2,0),(17,3,3,2,'2015-02-24 20:58:11','2015-02-24 20:58:11','1/2/17',8,2,0),(18,3,3,2,'2015-02-24 20:58:39','2015-02-24 20:58:39','1/2/18',9,2,0),(19,3,3,2,'2015-02-24 20:59:06','2015-02-24 20:59:06','1/2/19',10,2,0),(20,3,3,2,'2015-02-24 20:59:30','2015-04-01 16:18:23','1/2/20',11,2,0),(21,3,3,2,'2015-02-24 20:59:54','2015-04-01 16:18:33','1/2/21',12,2,0),(22,3,3,5,'2015-07-04 13:36:47','2015-04-07 19:26:19','1/2/3/5/22',1,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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_entity_datetime` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `value` datetime default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_CTGR_ENTT_DTIME_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Datetime Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_category_entity_datetime` -- LOCK TABLES `catalog_category_entity_datetime` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_datetime` DISABLE KEYS */; INSERT INTO `catalog_category_entity_datetime` VALUES (1,3,59,0,3,NULL),(2,3,60,0,3,NULL),(3,3,59,0,4,NULL),(4,3,60,0,4,NULL),(5,3,59,0,5,NULL),(6,3,60,0,5,NULL),(7,3,59,0,6,NULL),(8,3,60,0,6,NULL),(9,3,59,0,7,NULL),(10,3,60,0,7,NULL),(11,3,59,0,8,NULL),(12,3,60,0,8,NULL),(13,3,59,0,9,NULL),(14,3,60,0,9,NULL),(15,3,59,0,10,NULL),(16,3,60,0,10,NULL),(17,3,59,0,11,NULL),(18,3,60,0,11,NULL),(19,3,59,0,12,NULL),(20,3,60,0,12,NULL),(21,3,59,0,13,NULL),(22,3,60,0,13,NULL),(23,3,59,0,14,NULL),(24,3,60,0,14,NULL),(25,3,59,0,15,NULL),(26,3,60,0,15,NULL),(27,3,59,0,16,NULL),(28,3,60,0,16,NULL),(29,3,59,0,17,NULL),(30,3,60,0,17,NULL),(31,3,59,0,18,NULL),(32,3,60,0,18,NULL),(33,3,59,0,19,NULL),(34,3,60,0,19,NULL),(35,3,59,0,20,NULL),(36,3,60,0,20,NULL),(37,3,59,0,21,NULL),(38,3,60,0,21,NULL),(39,3,59,0,22,NULL),(40,3,60,0,22,NULL); /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_entity_decimal` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `value` decimal(12,4) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_CTGR_ENTT_DEC_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Decimal Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_category_entity_decimal` -- LOCK TABLES `catalog_category_entity_decimal` WRITE; /*!40000 ALTER TABLE `catalog_category_entity_decimal` DISABLE KEYS */; INSERT INTO `catalog_category_entity_decimal` VALUES (1,3,70,0,3,NULL),(2,3,70,0,4,NULL),(3,3,70,0,5,NULL),(4,3,70,0,6,NULL),(5,3,70,0,7,NULL),(6,3,70,0,8,NULL),(7,3,70,0,9,NULL),(8,3,70,0,10,NULL),(9,3,70,0,11,NULL),(10,3,70,0,12,NULL),(11,3,70,0,13,NULL),(12,3,70,0,14,NULL),(13,3,70,0,15,NULL),(14,3,70,0,16,NULL),(15,3,70,0,17,NULL),(16,3,70,0,18,NULL),(17,3,70,0,19,NULL),(18,3,70,0,20,NULL),(19,3,70,0,21,NULL),(20,3,70,0,22,NULL); /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_entity_int` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `value` int(11) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_CTGR_ENTT_INT_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=127 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Integer Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- 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,3,67,0,1,1),(2,3,67,1,1,1),(3,3,42,0,2,1),(4,3,67,0,2,1),(5,3,42,1,2,1),(6,3,67,1,2,1),(7,3,42,0,3,1),(8,3,67,0,3,1),(9,3,50,0,3,NULL),(10,3,51,0,3,1),(11,3,68,0,3,0),(12,3,69,0,3,0),(13,3,42,0,4,1),(14,3,67,0,4,1),(15,3,50,0,4,NULL),(16,3,51,0,4,1),(17,3,68,0,4,0),(18,3,69,0,4,0),(19,3,42,0,5,1),(20,3,67,0,5,1),(21,3,50,0,5,NULL),(22,3,51,0,5,1),(23,3,68,0,5,0),(24,3,69,0,5,0),(25,3,42,0,6,1),(26,3,67,0,6,1),(27,3,50,0,6,NULL),(28,3,51,0,6,1),(29,3,68,0,6,0),(30,3,69,0,6,0),(31,3,42,0,7,1),(32,3,67,0,7,1),(33,3,50,0,7,NULL),(34,3,51,0,7,1),(35,3,68,0,7,0),(36,3,69,0,7,0),(37,3,42,0,8,1),(38,3,67,0,8,1),(39,3,50,0,8,NULL),(40,3,51,0,8,1),(41,3,68,0,8,0),(42,3,69,0,8,0),(43,3,42,0,9,1),(44,3,67,0,9,1),(45,3,50,0,9,NULL),(46,3,51,0,9,1),(47,3,68,0,9,0),(48,3,69,0,9,0),(49,3,42,0,10,1),(50,3,67,0,10,1),(51,3,50,0,10,NULL),(52,3,51,0,10,1),(53,3,68,0,10,0),(54,3,69,0,10,0),(55,3,42,0,11,1),(56,3,67,0,11,1),(57,3,50,0,11,NULL),(58,3,51,0,11,1),(59,3,68,0,11,0),(60,3,69,0,11,0),(61,3,42,0,12,1),(62,3,67,0,12,1),(63,3,50,0,12,NULL),(64,3,51,0,12,1),(65,3,68,0,12,0),(66,3,69,0,12,0),(67,3,42,0,13,1),(68,3,67,0,13,1),(69,3,50,0,13,NULL),(70,3,51,0,13,1),(71,3,68,0,13,0),(72,3,69,0,13,0),(73,3,42,0,14,1),(74,3,67,0,14,1),(75,3,50,0,14,NULL),(76,3,51,0,14,1),(77,3,68,0,14,0),(78,3,69,0,14,0),(79,3,42,0,15,1),(80,3,67,0,15,1),(81,3,50,0,15,NULL),(82,3,51,0,15,1),(83,3,68,0,15,0),(84,3,69,0,15,0),(85,3,42,0,16,1),(86,3,67,0,16,1),(87,3,50,0,16,NULL),(88,3,51,0,16,1),(89,3,68,0,16,0),(90,3,69,0,16,0),(91,3,42,0,17,1),(92,3,67,0,17,1),(93,3,50,0,17,NULL),(94,3,51,0,17,1),(95,3,68,0,17,0),(96,3,69,0,17,0),(97,3,42,0,18,1),(98,3,67,0,18,1),(99,3,50,0,18,NULL),(100,3,51,0,18,1),(101,3,68,0,18,0),(102,3,69,0,18,0),(103,3,42,0,19,1),(104,3,67,0,19,1),(105,3,50,0,19,NULL),(106,3,51,0,19,1),(107,3,68,0,19,0),(108,3,69,0,19,0),(109,3,42,0,20,0),(110,3,67,0,20,1),(111,3,50,0,20,NULL),(112,3,51,0,20,1),(113,3,68,0,20,0),(114,3,69,0,20,0),(115,3,42,0,21,0),(116,3,67,0,21,1),(117,3,50,0,21,NULL),(118,3,51,0,21,1),(119,3,68,0,21,0),(120,3,69,0,21,0),(121,3,42,0,22,1),(122,3,67,0,22,1),(123,3,50,0,22,NULL),(124,3,51,0,22,0),(125,3,68,0,22,0),(126,3,69,0,22,0); /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_entity_text` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `value` text COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_CTGR_ENTT_TEXT_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=105 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Text Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- 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,3,65,0,1,NULL),(2,3,65,1,1,NULL),(3,3,65,0,2,NULL),(4,3,65,1,2,NULL),(5,3,44,0,3,NULL),(6,3,47,0,3,NULL),(7,3,48,0,3,NULL),(8,3,62,0,3,NULL),(9,3,65,0,3,NULL),(10,3,44,0,4,NULL),(11,3,47,0,4,NULL),(12,3,48,0,4,NULL),(13,3,62,0,4,NULL),(14,3,65,0,4,NULL),(15,3,44,0,5,NULL),(16,3,47,0,5,NULL),(17,3,48,0,5,NULL),(18,3,62,0,5,NULL),(19,3,65,0,5,NULL),(20,3,44,0,6,NULL),(21,3,47,0,6,NULL),(22,3,48,0,6,NULL),(23,3,62,0,6,NULL),(24,3,65,0,6,NULL),(25,3,44,0,7,NULL),(26,3,47,0,7,NULL),(27,3,48,0,7,NULL),(28,3,62,0,7,NULL),(29,3,65,0,7,NULL),(30,3,44,0,8,NULL),(31,3,47,0,8,NULL),(32,3,48,0,8,NULL),(33,3,62,0,8,NULL),(34,3,65,0,8,NULL),(35,3,44,0,9,NULL),(36,3,47,0,9,NULL),(37,3,48,0,9,NULL),(38,3,62,0,9,NULL),(39,3,65,0,9,NULL),(40,3,44,0,10,NULL),(41,3,47,0,10,NULL),(42,3,48,0,10,NULL),(43,3,62,0,10,NULL),(44,3,65,0,10,NULL),(45,3,44,0,11,NULL),(46,3,47,0,11,NULL),(47,3,48,0,11,NULL),(48,3,62,0,11,NULL),(49,3,65,0,11,NULL),(50,3,44,0,12,NULL),(51,3,47,0,12,NULL),(52,3,48,0,12,NULL),(53,3,62,0,12,NULL),(54,3,65,0,12,NULL),(55,3,44,0,13,NULL),(56,3,47,0,13,NULL),(57,3,48,0,13,NULL),(58,3,62,0,13,NULL),(59,3,65,0,13,NULL),(60,3,44,0,14,NULL),(61,3,47,0,14,NULL),(62,3,48,0,14,NULL),(63,3,62,0,14,NULL),(64,3,65,0,14,NULL),(65,3,44,0,15,NULL),(66,3,47,0,15,NULL),(67,3,48,0,15,NULL),(68,3,62,0,15,NULL),(69,3,65,0,15,NULL),(70,3,44,0,16,NULL),(71,3,47,0,16,NULL),(72,3,48,0,16,NULL),(73,3,62,0,16,NULL),(74,3,65,0,16,NULL),(75,3,44,0,17,NULL),(76,3,47,0,17,NULL),(77,3,48,0,17,NULL),(78,3,62,0,17,NULL),(79,3,65,0,17,NULL),(80,3,44,0,18,NULL),(81,3,47,0,18,NULL),(82,3,48,0,18,NULL),(83,3,62,0,18,NULL),(84,3,65,0,18,NULL),(85,3,44,0,19,NULL),(86,3,47,0,19,NULL),(87,3,48,0,19,NULL),(88,3,62,0,19,NULL),(89,3,65,0,19,NULL),(90,3,44,0,20,NULL),(91,3,47,0,20,NULL),(92,3,48,0,20,NULL),(93,3,62,0,20,NULL),(94,3,65,0,20,NULL),(95,3,44,0,21,NULL),(96,3,47,0,21,NULL),(97,3,48,0,21,NULL),(98,3,62,0,21,NULL),(99,3,65,0,21,NULL),(100,3,44,0,22,NULL),(101,3,47,0,22,NULL),(102,3,48,0,22,NULL),(103,3,62,0,22,NULL),(104,3,65,0,22,NULL); /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_entity_varchar` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `value` varchar(255) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_CTGR_ENTT_VCHR_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=168 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Varchar Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- 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,3,41,0,1,'Root Catalog'),(2,3,41,1,1,'Root Catalog'),(3,3,43,1,1,'root-catalog'),(4,3,41,0,2,'Default Category'),(5,3,41,1,2,'Default Category'),(6,3,49,1,2,'PRODUCTS'),(7,3,43,1,2,'default-category'),(8,3,41,0,3,'Books'),(9,3,43,0,3,'books'),(10,3,46,0,3,NULL),(11,3,49,0,3,'PRODUCTS'),(12,3,58,0,3,NULL),(13,3,61,0,3,NULL),(14,3,57,1,3,'books.html'),(15,3,57,0,3,'books.html'),(16,3,41,0,4,'Children\'s books'),(17,3,43,0,4,'children-s-books'),(18,3,46,0,4,NULL),(19,3,49,0,4,'PRODUCTS'),(20,3,58,0,4,NULL),(21,3,61,0,4,NULL),(22,3,57,1,4,'books/children-s-books.html'),(23,3,57,0,4,'books/children-s-books.html'),(24,3,41,0,5,'Science fiction'),(25,3,43,0,5,'science-fiction'),(26,3,46,0,5,NULL),(27,3,49,0,5,'PRODUCTS'),(28,3,58,0,5,NULL),(29,3,61,0,5,NULL),(30,3,57,1,5,'books/science-fiction.html'),(31,3,57,0,5,'books/science-fiction.html'),(32,3,41,0,6,'Detective stories'),(33,3,43,0,6,'detective-stories'),(34,3,46,0,6,NULL),(35,3,49,0,6,'PRODUCTS'),(36,3,58,0,6,NULL),(37,3,61,0,6,NULL),(38,3,57,1,6,'books/detective-stories.html'),(39,3,57,0,6,'books/detective-stories.html'),(40,3,41,0,7,'Romance'),(41,3,43,0,7,'romance'),(42,3,46,0,7,NULL),(43,3,49,0,7,'PRODUCTS'),(44,3,58,0,7,NULL),(45,3,61,0,7,NULL),(46,3,57,1,7,'books/romance.html'),(47,3,57,0,7,'books/romance.html'),(48,3,41,0,8,'Belles-lettres'),(49,3,43,0,8,'belles-lettres'),(50,3,46,0,8,NULL),(51,3,49,0,8,'PRODUCTS'),(52,3,58,0,8,NULL),(53,3,61,0,8,NULL),(54,3,57,1,8,'books/belles-lettres.html'),(55,3,57,0,8,'books/belles-lettres.html'),(56,3,41,0,9,'Poetry'),(57,3,43,0,9,'poetry'),(58,3,46,0,9,NULL),(59,3,49,0,9,'PRODUCTS'),(60,3,58,0,9,NULL),(61,3,61,0,9,NULL),(62,3,57,1,9,'books/poetry.html'),(63,3,57,0,9,'books/poetry.html'),(64,3,41,0,10,'Classic'),(65,3,43,0,10,'classic'),(66,3,46,0,10,NULL),(67,3,49,0,10,'PRODUCTS'),(68,3,58,0,10,NULL),(69,3,61,0,10,NULL),(70,3,57,1,10,'books/classic.html'),(71,3,57,0,10,'books/classic.html'),(72,3,41,0,11,'Magazines'),(73,3,43,0,11,'magazines'),(74,3,46,0,11,NULL),(75,3,49,0,11,'PRODUCTS'),(76,3,58,0,11,NULL),(77,3,61,0,11,NULL),(78,3,57,1,11,'magazines.html'),(79,3,57,0,11,'magazines.html'),(80,3,41,0,12,'Comics'),(81,3,43,0,12,'comics'),(82,3,46,0,12,NULL),(83,3,49,0,12,'PRODUCTS'),(84,3,58,0,12,NULL),(85,3,61,0,12,NULL),(86,3,57,1,12,'comics.html'),(87,3,57,0,12,'comics.html'),(88,3,41,0,13,'CD/DVD'),(89,3,43,0,13,'cd-dvd'),(90,3,46,0,13,NULL),(91,3,49,0,13,'PRODUCTS'),(92,3,58,0,13,NULL),(93,3,61,0,13,NULL),(94,3,57,1,13,'cd-dvd.html'),(95,3,57,0,13,'cd-dvd.html'),(96,3,41,0,14,'Cards'),(97,3,43,0,14,'cards'),(98,3,46,0,14,NULL),(99,3,49,0,14,'PRODUCTS'),(100,3,58,0,14,NULL),(101,3,61,0,14,NULL),(102,3,57,1,14,'cards.html'),(103,3,57,0,14,'cards.html'),(104,3,41,0,15,'Calendars'),(105,3,43,0,15,'calendars'),(106,3,46,0,15,NULL),(107,3,49,0,15,'PRODUCTS'),(108,3,58,0,15,NULL),(109,3,61,0,15,NULL),(110,3,57,1,15,'calendars.html'),(111,3,57,0,15,'calendars.html'),(112,3,41,0,16,'Blanks'),(113,3,43,0,16,'blanks'),(114,3,46,0,16,NULL),(115,3,49,0,16,'PRODUCTS'),(116,3,58,0,16,NULL),(117,3,61,0,16,NULL),(118,3,57,1,16,'blanks.html'),(119,3,57,0,16,'blanks.html'),(120,3,41,0,17,'Rarity'),(121,3,43,0,17,'rarity'),(122,3,46,0,17,NULL),(123,3,49,0,17,'PRODUCTS'),(124,3,58,0,17,NULL),(125,3,61,0,17,NULL),(126,3,57,1,17,'rarity.html'),(127,3,57,0,17,'rarity.html'),(128,3,41,0,18,'Antiques'),(129,3,43,0,18,'antiques'),(130,3,46,0,18,NULL),(131,3,49,0,18,'PRODUCTS'),(132,3,58,0,18,NULL),(133,3,61,0,18,NULL),(134,3,57,1,18,'antiques.html'),(135,3,57,0,18,'antiques.html'),(136,3,41,0,19,'Writing materials'),(137,3,43,0,19,'writing-materials'),(138,3,46,0,19,NULL),(139,3,49,0,19,'PRODUCTS'),(140,3,58,0,19,NULL),(141,3,61,0,19,NULL),(142,3,57,1,19,'writing-materials.html'),(143,3,57,0,19,'writing-materials.html'),(144,3,41,0,20,'Posters'),(145,3,43,0,20,'posters'),(146,3,46,0,20,NULL),(147,3,49,0,20,'PRODUCTS'),(148,3,58,0,20,NULL),(149,3,61,0,20,NULL),(150,3,57,1,20,'posters.html'),(151,3,57,0,20,'posters.html'),(152,3,41,0,21,'Visiting cards'),(153,3,43,0,21,'visiting-cards'),(154,3,46,0,21,NULL),(155,3,49,0,21,'PRODUCTS'),(156,3,58,0,21,NULL),(157,3,61,0,21,NULL),(158,3,57,1,21,'visiting-cards.html'),(159,3,57,0,21,'visiting-cards.html'),(160,3,41,0,22,'Lorem ipsum'),(161,3,46,0,22,NULL),(162,3,49,0,22,'PRODUCTS'),(163,3,58,0,22,NULL),(164,3,61,0,22,NULL),(165,3,43,0,22,'lorem-ipsum'),(166,3,57,1,22,'books/science-fiction/lorem-ipsum.html'),(167,3,57,0,22,'books/science-fiction/lorem-ipsum.html'); /*!40000 ALTER TABLE `catalog_category_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_flat_store_1` -- DROP TABLE IF EXISTS `catalog_category_flat_store_1`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_flat_store_1` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'entity_id', `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'parent_id', `created_at` timestamp NULL default NULL COMMENT 'created_at', `updated_at` timestamp NULL default NULL COMMENT 'updated_at', `path` varchar(255) NOT NULL default '' COMMENT 'path', `position` int(11) NOT NULL COMMENT 'position', `level` int(11) NOT NULL default '0' COMMENT 'level', `children_count` int(11) NOT NULL COMMENT 'children_count', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `all_children` text COMMENT 'All Children', `available_sort_by` text COMMENT 'Available Product Listing Sort By', `children` text COMMENT 'Children', `custom_apply_to_products` int(11) default NULL COMMENT 'Apply To Products', `custom_design` varchar(255) default NULL COMMENT 'Custom Design', `custom_design_from` datetime default NULL COMMENT 'Active From', `custom_design_to` datetime default NULL COMMENT 'Active To', `custom_layout_update` text COMMENT 'Custom Layout Update', `custom_use_parent_settings` int(11) default NULL COMMENT 'Use Parent Category Settings', `default_sort_by` varchar(255) default NULL COMMENT 'Default Product Listing Sort By', `description` text COMMENT 'Description', `display_mode` varchar(255) default NULL COMMENT 'Display Mode', `filter_price_range` decimal(12,4) default NULL COMMENT 'Layered Navigation Price Step', `image` varchar(255) default NULL COMMENT 'Image', `include_in_menu` int(11) default NULL COMMENT 'Include in Navigation Menu', `is_active` int(11) default NULL COMMENT 'Is Active', `is_anchor` int(11) default NULL COMMENT 'Is Anchor', `landing_page` int(11) default NULL COMMENT 'CMS Block', `meta_description` text COMMENT 'Meta Description', `meta_keywords` text COMMENT 'Meta Keywords', `meta_title` varchar(255) default NULL COMMENT 'Page Title', `name` varchar(255) default NULL COMMENT 'Name', `page_layout` varchar(255) default NULL COMMENT 'Page Layout', `path_in_store` text COMMENT 'Path In Store', `url_key` varchar(255) default NULL COMMENT 'URL Key', `url_path` varchar(255) default NULL COMMENT 'Url Path', PRIMARY KEY (`entity_id`), KEY `IDX_CATALOG_CATEGORY_FLAT_STORE_1_STORE_ID` (`store_id`), KEY `IDX_CATALOG_CATEGORY_FLAT_STORE_1_PATH` (`path`), KEY `IDX_CATALOG_CATEGORY_FLAT_STORE_1_LEVEL` (`level`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Category Flat (Store 1)'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_category_flat_store_1` -- LOCK TABLES `catalog_category_flat_store_1` WRITE; /*!40000 ALTER TABLE `catalog_category_flat_store_1` DISABLE KEYS */; INSERT INTO `catalog_category_flat_store_1` VALUES (1,0,'2015-08-02 21:15:33','2015-02-08 22:15:33','1',0,0,1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,'Root Catalog',NULL,NULL,'root-catalog',NULL),(2,1,'2015-02-08 22:15:35','2015-02-08 22:15:35','1/2',1,1,0,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,'Default Category',NULL,NULL,'default-category',NULL); /*!40000 ALTER TABLE `catalog_category_flat_store_1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product` -- DROP TABLE IF EXISTS `catalog_category_product`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_product` ( `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `position` int(11) NOT NULL default '0' COMMENT 'Position', PRIMARY KEY (`category_id`,`product_id`), KEY `IDX_CATALOG_CATEGORY_PRODUCT_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Category Linkage Table'; SET character_set_client = @saved_cs_client; -- -- 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 (3,1,1),(3,2,1),(3,9,1),(3,12,1),(3,13,1),(3,16,1),(3,17,1),(4,1,1),(4,2,1),(4,9,1),(4,12,1),(4,13,1),(4,16,1),(4,17,1),(5,1,1),(5,9,1),(5,12,1),(5,13,1),(5,16,1),(5,17,1),(6,1,1),(6,9,1),(6,12,1),(6,13,1),(6,16,1),(6,17,1),(7,1,1),(7,9,1),(7,12,1),(7,13,1),(7,16,1),(7,17,1),(8,1,1),(8,9,1),(8,12,1),(8,13,1),(8,16,1),(8,17,1),(9,1,1),(9,9,1),(9,12,1),(9,13,1),(9,16,1),(9,17,1),(10,1,1),(10,9,1),(10,12,1),(10,13,1),(10,16,1),(10,17,1),(11,1,1),(11,5,1),(11,6,1),(11,8,1),(11,13,1),(11,18,1),(11,20,1),(12,1,1),(12,5,1),(12,8,1),(12,11,1),(12,13,1),(12,17,1),(12,20,1),(13,4,1),(13,5,1),(13,8,1),(13,11,1),(13,14,1),(13,18,1),(13,20,1),(14,1,1),(14,3,1),(14,5,1),(14,8,1),(14,11,1),(14,14,1),(14,18,1),(15,1,1),(15,4,1),(15,6,1),(15,10,1),(15,12,1),(15,14,1),(15,19,1),(16,2,1),(16,4,1),(16,6,1),(16,11,1),(16,12,1),(16,14,1),(16,19,1),(17,2,1),(17,3,1),(17,6,1),(17,10,1),(17,12,1),(17,14,1),(17,16,1),(18,3,1),(18,4,1),(18,7,1),(18,10,1),(18,12,1),(18,15,1),(18,19,1),(19,3,1),(19,4,1),(19,7,1),(19,9,1),(19,10,1),(19,13,1),(19,18,1),(20,2,1),(20,3,1),(20,7,1),(20,9,1),(20,10,1),(20,13,1),(20,17,1),(21,2,1),(21,5,1),(21,6,1),(21,9,1),(21,12,1),(21,13,1),(21,17,1); /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_product_index` ( `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `position` int(11) default NULL COMMENT 'Position', `is_parent` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Parent', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility', PRIMARY KEY (`category_id`,`product_id`,`store_id`), KEY `IDX_CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`), KEY `15D3C269665C74C2219037D534F4B0DC` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index'; SET character_set_client = @saved_cs_client; -- -- 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 (2,1,20005,0,1,4),(2,5,20005,0,1,4),(2,6,20005,0,1,4),(2,8,20005,0,1,4),(2,13,20005,0,1,4),(2,18,20005,0,1,4),(2,20,20005,0,1,4),(2,2,20007,0,1,4),(2,9,20007,0,1,4),(2,12,20007,0,1,4),(2,16,20007,0,1,4),(2,17,20007,0,1,4),(2,11,30007,0,1,4),(2,4,50011,0,1,4),(2,14,50011,0,1,4),(2,3,60013,0,1,4),(2,10,70015,0,1,4),(2,19,70015,0,1,4),(2,7,100021,0,1,4),(2,15,100021,0,1,4),(3,1,1,1,1,4),(3,2,1,1,1,4),(3,9,1,1,1,4),(3,12,1,1,1,4),(3,13,1,1,1,4),(3,16,1,1,1,4),(3,17,1,1,1,4),(4,1,1,1,1,4),(4,2,1,1,1,4),(4,9,1,1,1,4),(4,12,1,1,1,4),(4,13,1,1,1,4),(4,16,1,1,1,4),(4,17,1,1,1,4),(5,1,1,1,1,4),(5,9,1,1,1,4),(5,12,1,1,1,4),(5,13,1,1,1,4),(5,16,1,1,1,4),(5,17,1,1,1,4),(6,1,1,1,1,4),(6,9,1,1,1,4),(6,12,1,1,1,4),(6,13,1,1,1,4),(6,16,1,1,1,4),(6,17,1,1,1,4),(7,1,1,1,1,4),(7,9,1,1,1,4),(7,12,1,1,1,4),(7,13,1,1,1,4),(7,16,1,1,1,4),(7,17,1,1,1,4),(8,1,1,1,1,4),(8,9,1,1,1,4),(8,12,1,1,1,4),(8,13,1,1,1,4),(8,16,1,1,1,4),(8,17,1,1,1,4),(9,1,1,1,1,4),(9,9,1,1,1,4),(9,12,1,1,1,4),(9,13,1,1,1,4),(9,16,1,1,1,4),(9,17,1,1,1,4),(10,1,1,1,1,4),(10,9,1,1,1,4),(10,12,1,1,1,4),(10,13,1,1,1,4),(10,16,1,1,1,4),(10,17,1,1,1,4),(11,1,1,1,1,4),(11,5,1,1,1,4),(11,6,1,1,1,4),(11,8,1,1,1,4),(11,13,1,1,1,4),(11,18,1,1,1,4),(11,20,1,1,1,4),(12,1,1,1,1,4),(12,5,1,1,1,4),(12,8,1,1,1,4),(12,11,1,1,1,4),(12,13,1,1,1,4),(12,17,1,1,1,4),(12,20,1,1,1,4),(13,4,1,1,1,4),(13,5,1,1,1,4),(13,8,1,1,1,4),(13,11,1,1,1,4),(13,14,1,1,1,4),(13,18,1,1,1,4),(13,20,1,1,1,4),(14,1,1,1,1,4),(14,3,1,1,1,4),(14,5,1,1,1,4),(14,8,1,1,1,4),(14,11,1,1,1,4),(14,14,1,1,1,4),(14,18,1,1,1,4),(15,1,1,1,1,4),(15,4,1,1,1,4),(15,6,1,1,1,4),(15,10,1,1,1,4),(15,12,1,1,1,4),(15,14,1,1,1,4),(15,19,1,1,1,4),(16,2,1,1,1,4),(16,4,1,1,1,4),(16,6,1,1,1,4),(16,11,1,1,1,4),(16,12,1,1,1,4),(16,14,1,1,1,4),(16,19,1,1,1,4),(17,2,1,1,1,4),(17,3,1,1,1,4),(17,6,1,1,1,4),(17,10,1,1,1,4),(17,12,1,1,1,4),(17,14,1,1,1,4),(17,16,1,1,1,4),(18,3,1,1,1,4),(18,4,1,1,1,4),(18,7,1,1,1,4),(18,10,1,1,1,4),(18,12,1,1,1,4),(18,15,1,1,1,4),(18,19,1,1,1,4),(19,3,1,1,1,4),(19,4,1,1,1,4),(19,7,1,1,1,4),(19,9,1,1,1,4),(19,10,1,1,1,4),(19,13,1,1,1,4),(19,18,1,1,1,4),(20,2,1,1,1,4),(20,3,1,1,1,4),(20,7,1,1,1,4),(20,9,1,1,1,4),(20,10,1,1,1,4),(20,13,1,1,1,4),(20,17,1,1,1,4),(21,2,1,1,1,4),(21,5,1,1,1,4),(21,6,1,1,1,4),(21,9,1,1,1,4),(21,12,1,1,1,4),(21,13,1,1,1,4),(21,17,1,1,1,4),(2,1,20005,0,2,4),(2,5,20005,0,2,4),(2,6,20005,0,2,4),(2,8,20005,0,2,4),(2,13,20005,0,2,4),(2,18,20005,0,2,4),(2,20,20005,0,2,4),(2,2,20007,0,2,4),(2,9,20007,0,2,4),(2,12,20007,0,2,4),(2,16,20007,0,2,4),(2,17,20007,0,2,4),(2,11,30007,0,2,4),(2,4,50011,0,2,4),(2,14,50011,0,2,4),(2,3,60013,0,2,4),(2,10,70015,0,2,4),(2,19,70015,0,2,4),(2,7,100021,0,2,4),(2,15,100021,0,2,4),(3,1,1,1,2,4),(3,2,1,1,2,4),(3,9,1,1,2,4),(3,12,1,1,2,4),(3,13,1,1,2,4),(3,16,1,1,2,4),(3,17,1,1,2,4),(4,1,1,1,2,4),(4,2,1,1,2,4),(4,9,1,1,2,4),(4,12,1,1,2,4),(4,13,1,1,2,4),(4,16,1,1,2,4),(4,17,1,1,2,4),(5,1,1,1,2,4),(5,9,1,1,2,4),(5,12,1,1,2,4),(5,13,1,1,2,4),(5,16,1,1,2,4),(5,17,1,1,2,4),(6,1,1,1,2,4),(6,9,1,1,2,4),(6,12,1,1,2,4),(6,13,1,1,2,4),(6,16,1,1,2,4),(6,17,1,1,2,4),(7,1,1,1,2,4),(7,9,1,1,2,4),(7,12,1,1,2,4),(7,13,1,1,2,4),(7,16,1,1,2,4),(7,17,1,1,2,4),(8,1,1,1,2,4),(8,9,1,1,2,4),(8,12,1,1,2,4),(8,13,1,1,2,4),(8,16,1,1,2,4),(8,17,1,1,2,4),(9,1,1,1,2,4),(9,9,1,1,2,4),(9,12,1,1,2,4),(9,13,1,1,2,4),(9,16,1,1,2,4),(9,17,1,1,2,4),(10,1,1,1,2,4),(10,9,1,1,2,4),(10,12,1,1,2,4),(10,13,1,1,2,4),(10,16,1,1,2,4),(10,17,1,1,2,4),(11,1,1,1,2,4),(11,5,1,1,2,4),(11,6,1,1,2,4),(11,8,1,1,2,4),(11,13,1,1,2,4),(11,18,1,1,2,4),(11,20,1,1,2,4),(12,1,1,1,2,4),(12,5,1,1,2,4),(12,8,1,1,2,4),(12,11,1,1,2,4),(12,13,1,1,2,4),(12,17,1,1,2,4),(12,20,1,1,2,4),(13,4,1,1,2,4),(13,5,1,1,2,4),(13,8,1,1,2,4),(13,11,1,1,2,4),(13,14,1,1,2,4),(13,18,1,1,2,4),(13,20,1,1,2,4),(14,1,1,1,2,4),(14,3,1,1,2,4),(14,5,1,1,2,4),(14,8,1,1,2,4),(14,11,1,1,2,4),(14,14,1,1,2,4),(14,18,1,1,2,4),(15,1,1,1,2,4),(15,4,1,1,2,4),(15,6,1,1,2,4),(15,10,1,1,2,4),(15,12,1,1,2,4),(15,14,1,1,2,4),(15,19,1,1,2,4),(16,2,1,1,2,4),(16,4,1,1,2,4),(16,6,1,1,2,4),(16,11,1,1,2,4),(16,12,1,1,2,4),(16,14,1,1,2,4),(16,19,1,1,2,4),(17,2,1,1,2,4),(17,3,1,1,2,4),(17,6,1,1,2,4),(17,10,1,1,2,4),(17,12,1,1,2,4),(17,14,1,1,2,4),(17,16,1,1,2,4),(18,3,1,1,2,4),(18,4,1,1,2,4),(18,7,1,1,2,4),(18,10,1,1,2,4),(18,12,1,1,2,4),(18,15,1,1,2,4),(18,19,1,1,2,4),(19,3,1,1,2,4),(19,4,1,1,2,4),(19,7,1,1,2,4),(19,9,1,1,2,4),(19,10,1,1,2,4),(19,13,1,1,2,4),(19,18,1,1,2,4),(20,2,1,1,2,4),(20,3,1,1,2,4),(20,7,1,1,2,4),(20,9,1,1,2,4),(20,10,1,1,2,4),(20,13,1,1,2,4),(20,17,1,1,2,4),(21,2,1,1,2,4),(21,5,1,1,2,4),(21,6,1,1,2,4),(21,9,1,1,2,4),(21,12,1,1,2,4),(21,13,1,1,2,4),(21,17,1,1,2,4),(2,1,20005,0,3,4),(2,5,20005,0,3,4),(2,6,20005,0,3,4),(2,8,20005,0,3,4),(2,13,20005,0,3,4),(2,18,20005,0,3,4),(2,20,20005,0,3,4),(2,2,20007,0,3,4),(2,9,20007,0,3,4),(2,12,20007,0,3,4),(2,16,20007,0,3,4),(2,17,20007,0,3,4),(2,11,30007,0,3,4),(2,4,50011,0,3,4),(2,14,50011,0,3,4),(2,3,60013,0,3,4),(2,10,70015,0,3,4),(2,19,70015,0,3,4),(2,7,100021,0,3,4),(2,15,100021,0,3,4),(3,1,1,1,3,4),(3,2,1,1,3,4),(3,9,1,1,3,4),(3,12,1,1,3,4),(3,13,1,1,3,4),(3,16,1,1,3,4),(3,17,1,1,3,4),(4,1,1,1,3,4),(4,2,1,1,3,4),(4,9,1,1,3,4),(4,12,1,1,3,4),(4,13,1,1,3,4),(4,16,1,1,3,4),(4,17,1,1,3,4),(5,1,1,1,3,4),(5,9,1,1,3,4),(5,12,1,1,3,4),(5,13,1,1,3,4),(5,16,1,1,3,4),(5,17,1,1,3,4),(6,1,1,1,3,4),(6,9,1,1,3,4),(6,12,1,1,3,4),(6,13,1,1,3,4),(6,16,1,1,3,4),(6,17,1,1,3,4),(7,1,1,1,3,4),(7,9,1,1,3,4),(7,12,1,1,3,4),(7,13,1,1,3,4),(7,16,1,1,3,4),(7,17,1,1,3,4),(8,1,1,1,3,4),(8,9,1,1,3,4),(8,12,1,1,3,4),(8,13,1,1,3,4),(8,16,1,1,3,4),(8,17,1,1,3,4),(9,1,1,1,3,4),(9,9,1,1,3,4),(9,12,1,1,3,4),(9,13,1,1,3,4),(9,16,1,1,3,4),(9,17,1,1,3,4),(10,1,1,1,3,4),(10,9,1,1,3,4),(10,12,1,1,3,4),(10,13,1,1,3,4),(10,16,1,1,3,4),(10,17,1,1,3,4),(11,1,1,1,3,4),(11,5,1,1,3,4),(11,6,1,1,3,4),(11,8,1,1,3,4),(11,13,1,1,3,4),(11,18,1,1,3,4),(11,20,1,1,3,4),(12,1,1,1,3,4),(12,5,1,1,3,4),(12,8,1,1,3,4),(12,11,1,1,3,4),(12,13,1,1,3,4),(12,17,1,1,3,4),(12,20,1,1,3,4),(13,4,1,1,3,4),(13,5,1,1,3,4),(13,8,1,1,3,4),(13,11,1,1,3,4),(13,14,1,1,3,4),(13,18,1,1,3,4),(13,20,1,1,3,4),(14,1,1,1,3,4),(14,3,1,1,3,4),(14,5,1,1,3,4),(14,8,1,1,3,4),(14,11,1,1,3,4),(14,14,1,1,3,4),(14,18,1,1,3,4),(15,1,1,1,3,4),(15,4,1,1,3,4),(15,6,1,1,3,4),(15,10,1,1,3,4),(15,12,1,1,3,4),(15,14,1,1,3,4),(15,19,1,1,3,4),(16,2,1,1,3,4),(16,4,1,1,3,4),(16,6,1,1,3,4),(16,11,1,1,3,4),(16,12,1,1,3,4),(16,14,1,1,3,4),(16,19,1,1,3,4),(17,2,1,1,3,4),(17,3,1,1,3,4),(17,6,1,1,3,4),(17,10,1,1,3,4),(17,12,1,1,3,4),(17,14,1,1,3,4),(17,16,1,1,3,4),(18,3,1,1,3,4),(18,4,1,1,3,4),(18,7,1,1,3,4),(18,10,1,1,3,4),(18,12,1,1,3,4),(18,15,1,1,3,4),(18,19,1,1,3,4),(19,3,1,1,3,4),(19,4,1,1,3,4),(19,7,1,1,3,4),(19,9,1,1,3,4),(19,10,1,1,3,4),(19,13,1,1,3,4),(19,18,1,1,3,4),(20,2,1,1,3,4),(20,3,1,1,3,4),(20,7,1,1,3,4),(20,9,1,1,3,4),(20,10,1,1,3,4),(20,13,1,1,3,4),(20,17,1,1,3,4),(21,2,1,1,3,4),(21,5,1,1,3,4),(21,6,1,1,3,4),(21,9,1,1,3,4),(21,12,1,1,3,4),(21,13,1,1,3,4),(21,17,1,1,3,4),(2,1,20005,0,4,4),(2,5,20005,0,4,4),(2,6,20005,0,4,4),(2,8,20005,0,4,4),(2,13,20005,0,4,4),(2,18,20005,0,4,4),(2,20,20005,0,4,4),(2,2,20007,0,4,4),(2,9,20007,0,4,4),(2,12,20007,0,4,4),(2,16,20007,0,4,4),(2,17,20007,0,4,4),(2,11,30007,0,4,4),(2,4,50011,0,4,4),(2,14,50011,0,4,4),(2,3,60013,0,4,4),(2,10,70015,0,4,4),(2,19,70015,0,4,4),(2,7,100021,0,4,4),(2,15,100021,0,4,4),(3,1,1,1,4,4),(3,2,1,1,4,4),(3,9,1,1,4,4),(3,12,1,1,4,4),(3,13,1,1,4,4),(3,16,1,1,4,4),(3,17,1,1,4,4),(4,1,1,1,4,4),(4,2,1,1,4,4),(4,9,1,1,4,4),(4,12,1,1,4,4),(4,13,1,1,4,4),(4,16,1,1,4,4),(4,17,1,1,4,4),(5,1,1,1,4,4),(5,9,1,1,4,4),(5,12,1,1,4,4),(5,13,1,1,4,4),(5,16,1,1,4,4),(5,17,1,1,4,4),(6,1,1,1,4,4),(6,9,1,1,4,4),(6,12,1,1,4,4),(6,13,1,1,4,4),(6,16,1,1,4,4),(6,17,1,1,4,4),(7,1,1,1,4,4),(7,9,1,1,4,4),(7,12,1,1,4,4),(7,13,1,1,4,4),(7,16,1,1,4,4),(7,17,1,1,4,4),(8,1,1,1,4,4),(8,9,1,1,4,4),(8,12,1,1,4,4),(8,13,1,1,4,4),(8,16,1,1,4,4),(8,17,1,1,4,4),(9,1,1,1,4,4),(9,9,1,1,4,4),(9,12,1,1,4,4),(9,13,1,1,4,4),(9,16,1,1,4,4),(9,17,1,1,4,4),(10,1,1,1,4,4),(10,9,1,1,4,4),(10,12,1,1,4,4),(10,13,1,1,4,4),(10,16,1,1,4,4),(10,17,1,1,4,4),(11,1,1,1,4,4),(11,5,1,1,4,4),(11,6,1,1,4,4),(11,8,1,1,4,4),(11,13,1,1,4,4),(11,18,1,1,4,4),(11,20,1,1,4,4),(12,1,1,1,4,4),(12,5,1,1,4,4),(12,8,1,1,4,4),(12,11,1,1,4,4),(12,13,1,1,4,4),(12,17,1,1,4,4),(12,20,1,1,4,4),(13,4,1,1,4,4),(13,5,1,1,4,4),(13,8,1,1,4,4),(13,11,1,1,4,4),(13,14,1,1,4,4),(13,18,1,1,4,4),(13,20,1,1,4,4),(14,1,1,1,4,4),(14,3,1,1,4,4),(14,5,1,1,4,4),(14,8,1,1,4,4),(14,11,1,1,4,4),(14,14,1,1,4,4),(14,18,1,1,4,4),(15,1,1,1,4,4),(15,4,1,1,4,4),(15,6,1,1,4,4),(15,10,1,1,4,4),(15,12,1,1,4,4),(15,14,1,1,4,4),(15,19,1,1,4,4),(16,2,1,1,4,4),(16,4,1,1,4,4),(16,6,1,1,4,4),(16,11,1,1,4,4),(16,12,1,1,4,4),(16,14,1,1,4,4),(16,19,1,1,4,4),(17,2,1,1,4,4),(17,3,1,1,4,4),(17,6,1,1,4,4),(17,10,1,1,4,4),(17,12,1,1,4,4),(17,14,1,1,4,4),(17,16,1,1,4,4),(18,3,1,1,4,4),(18,4,1,1,4,4),(18,7,1,1,4,4),(18,10,1,1,4,4),(18,12,1,1,4,4),(18,15,1,1,4,4),(18,19,1,1,4,4),(19,3,1,1,4,4),(19,4,1,1,4,4),(19,7,1,1,4,4),(19,9,1,1,4,4),(19,10,1,1,4,4),(19,13,1,1,4,4),(19,18,1,1,4,4),(20,2,1,1,4,4),(20,3,1,1,4,4),(20,7,1,1,4,4),(20,9,1,1,4,4),(20,10,1,1,4,4),(20,13,1,1,4,4),(20,17,1,1,4,4),(21,2,1,1,4,4),(21,5,1,1,4,4),(21,6,1,1,4,4),(21,9,1,1,4,4),(21,12,1,1,4,4),(21,13,1,1,4,4),(21,17,1,1,4,4); /*!40000 ALTER TABLE `catalog_category_product_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_enbl_idx` -- DROP TABLE IF EXISTS `catalog_category_product_index_enbl_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_product_index_enbl_idx` ( `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `visibility` int(10) unsigned NOT NULL default '0' COMMENT 'Visibility', KEY `IDX_CAT_CTGR_PRD_IDX_ENBL_IDX_PRD_ID_VISIBILITY` (`product_id`,`visibility`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Enabled Indexer Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_category_product_index_enbl_idx` -- LOCK TABLES `catalog_category_product_index_enbl_idx` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_enbl_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_enbl_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_enbl_tmp` -- DROP TABLE IF EXISTS `catalog_category_product_index_enbl_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_product_index_enbl_tmp` ( `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `visibility` int(10) unsigned NOT NULL default '0' COMMENT 'Visibility', KEY `IDX_CAT_CTGR_PRD_IDX_ENBL_TMP_PRD_ID_VISIBILITY` (`product_id`,`visibility`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Enabled Indexer Temp Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_category_product_index_enbl_tmp` -- LOCK TABLES `catalog_category_product_index_enbl_tmp` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_enbl_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_enbl_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_idx` -- DROP TABLE IF EXISTS `catalog_category_product_index_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_product_index_idx` ( `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `position` int(11) NOT NULL default '0' COMMENT 'Position', `is_parent` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Parent', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility', KEY `IDX_CAT_CTGR_PRD_IDX_IDX_PRD_ID_CTGR_ID_STORE_ID` (`product_id`,`category_id`,`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Indexer Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_category_product_index_idx` -- LOCK TABLES `catalog_category_product_index_idx` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index_tmp` -- DROP TABLE IF EXISTS `catalog_category_product_index_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_category_product_index_tmp` ( `category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Category ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `position` int(11) NOT NULL default '0' COMMENT 'Position', `is_parent` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Parent', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility', KEY `IDX_CAT_CTGR_PRD_IDX_TMP_PRD_ID_CTGR_ID_STORE_ID` (`product_id`,`category_id`,`store_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Indexer Temp Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_category_product_index_tmp` -- LOCK TABLES `catalog_category_product_index_tmp` WRITE; /*!40000 ALTER TABLE `catalog_category_product_index_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_category_product_index_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_compare_item` -- DROP TABLE IF EXISTS `catalog_compare_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_compare_item` ( `catalog_compare_item_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Compare Item ID', `visitor_id` int(10) unsigned NOT NULL default '0' COMMENT 'Visitor ID', `customer_id` int(10) unsigned default NULL COMMENT 'Customer ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `store_id` smallint(5) unsigned default NULL COMMENT 'Store ID', PRIMARY KEY (`catalog_compare_item_id`), KEY `IDX_CATALOG_COMPARE_ITEM_CUSTOMER_ID` (`customer_id`), KEY `IDX_CATALOG_COMPARE_ITEM_PRODUCT_ID` (`product_id`), KEY `IDX_CATALOG_COMPARE_ITEM_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`), KEY `IDX_CATALOG_COMPARE_ITEM_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`), KEY `IDX_CATALOG_COMPARE_ITEM_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Catalog Compare Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_compare_item` -- LOCK TABLES `catalog_compare_item` WRITE; /*!40000 ALTER TABLE `catalog_compare_item` DISABLE KEYS */; INSERT INTO `catalog_compare_item` VALUES (1,38,NULL,1,1); /*!40000 ALTER TABLE `catalog_compare_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_eav_attribute` -- DROP TABLE IF EXISTS `catalog_eav_attribute`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_eav_attribute` ( `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID', `frontend_input_renderer` varchar(255) default NULL COMMENT 'Frontend Input Renderer', `is_global` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Global', `is_visible` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Visible', `is_searchable` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Searchable', `is_filterable` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Filterable', `is_comparable` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Comparable', `is_visible_on_front` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Visible On Front', `is_html_allowed_on_front` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is HTML Allowed On Front', `is_used_for_price_rules` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Used For Price Rules', `is_filterable_in_search` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Filterable In Search', `used_in_product_listing` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Used In Product Listing', `used_for_sort_by` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Used For Sorting', `is_configurable` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Configurable', `apply_to` varchar(255) default NULL COMMENT 'Apply To', `is_visible_in_advanced_search` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Visible In Advanced Search', `position` int(11) NOT NULL default '0' COMMENT 'Position', `is_wysiwyg_enabled` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is WYSIWYG Enabled', `is_used_for_promo_rules` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Used For Promo Rules', PRIMARY KEY (`attribute_id`), KEY `IDX_CATALOG_EAV_ATTRIBUTE_USED_FOR_SORT_BY` (`used_for_sort_by`), KEY `IDX_CATALOG_EAV_ATTRIBUTE_USED_IN_PRODUCT_LISTING` (`used_in_product_listing`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog EAV Attribute Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_eav_attribute` -- LOCK TABLES `catalog_eav_attribute` WRITE; /*!40000 ALTER TABLE `catalog_eav_attribute` DISABLE KEYS */; INSERT INTO `catalog_eav_attribute` VALUES (41,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(42,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(43,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(44,NULL,0,1,0,0,0,0,1,0,0,0,0,1,NULL,0,0,1,0),(45,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(46,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(47,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(48,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(49,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(50,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(51,NULL,1,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(52,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(53,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(54,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(55,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(56,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(57,NULL,0,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(58,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(59,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(60,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(61,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(62,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(63,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(64,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(65,'adminhtml/catalog_category_helper_sortby_available',0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(66,'adminhtml/catalog_category_helper_sortby_default',0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(67,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(68,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(69,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(70,'adminhtml/catalog_category_helper_pricestep',0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(71,NULL,0,1,1,0,0,0,0,0,0,1,1,1,NULL,1,0,0,0),(72,NULL,0,1,1,0,1,0,1,0,0,0,0,1,NULL,1,0,1,0),(73,NULL,0,1,1,0,1,0,1,0,0,1,0,1,NULL,1,0,1,0),(74,NULL,1,1,1,0,1,0,0,0,0,0,0,1,NULL,1,0,0,0),(75,NULL,2,1,1,1,0,0,0,0,0,1,1,1,'simple,configurable,virtual,bundle,downloadable',1,0,0,0),(76,NULL,2,1,0,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(77,NULL,2,1,0,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(78,NULL,2,1,0,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(79,NULL,2,1,0,0,0,0,0,0,0,0,0,1,'virtual,downloadable',0,0,0,0),(80,NULL,1,1,0,0,0,0,0,0,0,0,0,1,'simple,bundle',0,0,0,0),(81,NULL,1,1,1,1,1,0,0,0,0,0,0,1,'simple',1,0,0,0),(82,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(83,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(84,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(85,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(86,NULL,0,1,0,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(87,NULL,0,1,0,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(88,NULL,1,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(89,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(90,NULL,2,1,0,0,0,0,0,0,0,0,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(91,NULL,2,1,0,0,0,0,0,0,0,0,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(92,NULL,1,1,1,1,1,0,0,0,0,0,0,1,'simple',1,0,0,0),(93,NULL,2,1,0,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(94,NULL,2,1,0,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(95,NULL,1,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(96,NULL,2,1,1,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(97,NULL,0,1,0,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(98,NULL,0,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(99,NULL,0,0,0,0,0,0,0,0,0,0,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(100,NULL,1,1,0,0,0,0,0,0,0,0,0,0,'simple,virtual',0,0,0,0),(101,NULL,1,1,0,0,0,0,0,0,0,0,0,0,'simple,virtual',0,0,0,0),(102,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(103,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(104,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(105,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(106,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(107,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(108,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(109,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(110,NULL,1,0,0,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(111,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(112,NULL,0,0,0,0,0,0,0,0,0,1,0,0,NULL,0,0,0,0),(113,NULL,0,0,0,0,0,0,0,0,0,1,0,0,NULL,0,0,0,0),(114,NULL,0,0,0,0,0,0,0,0,0,1,0,0,NULL,0,0,0,0),(115,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(116,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(117,NULL,2,1,0,0,0,0,0,0,0,0,0,0,'simple,configurable,bundle,grouped',0,0,0,0),(118,'adminhtml/catalog_product_helper_form_msrp_enabled',2,1,0,0,0,0,0,0,0,1,0,1,'simple,bundle,configurable,virtual,downloadable',0,0,0,0),(119,'adminhtml/catalog_product_helper_form_msrp_price',2,1,0,0,0,0,0,0,0,1,0,1,'simple,bundle,configurable,virtual,downloadable',0,0,0,0),(120,NULL,2,1,0,0,0,0,0,0,0,1,0,1,'simple,bundle,configurable,virtual,downloadable',0,0,0,0),(121,NULL,2,1,1,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,downloadable,bundle',1,0,0,0),(122,'giftmessage/adminhtml_product_helper_form_config',1,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0),(123,NULL,1,0,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(124,NULL,1,0,0,0,0,0,0,0,0,0,0,0,'bundle',0,0,0,0),(125,NULL,1,0,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(126,NULL,1,1,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(127,NULL,1,0,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(128,NULL,1,0,0,0,0,0,0,0,0,1,0,0,'downloadable',0,0,0,0),(129,NULL,0,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0),(130,NULL,0,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0),(131,NULL,1,0,0,0,0,0,0,0,0,1,0,0,'downloadable',0,0,0,0),(142,NULL,0,1,0,0,0,0,1,0,0,0,0,0,NULL,0,0,0,0),(143,NULL,0,1,0,0,0,0,1,0,0,0,0,0,NULL,0,0,0,0),(144,NULL,0,1,0,0,0,0,1,0,0,0,0,0,NULL,0,0,0,0),(145,NULL,0,1,0,0,0,1,1,0,0,0,0,0,NULL,0,0,0,0),(146,NULL,0,1,0,0,0,1,1,0,0,0,0,0,NULL,0,0,0,0),(147,NULL,0,1,0,0,0,1,1,0,0,0,0,0,NULL,0,0,0,0),(148,NULL,0,1,0,0,0,1,1,0,0,0,0,0,NULL,0,0,0,0); /*!40000 ALTER TABLE `catalog_eav_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_option` -- DROP TABLE IF EXISTS `catalog_product_bundle_option`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_bundle_option` ( `option_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Id', `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id', `required` smallint(5) unsigned NOT NULL default '0' COMMENT 'Required', `position` int(10) unsigned NOT NULL default '0' COMMENT 'Position', `type` varchar(255) default NULL COMMENT 'Type', PRIMARY KEY (`option_id`), KEY `IDX_CATALOG_PRODUCT_BUNDLE_OPTION_PARENT_ID` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Option'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_bundle_option` -- LOCK TABLES `catalog_product_bundle_option` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_option` DISABLE KEYS */; /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_bundle_option_value` ( `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value Id', `option_id` int(10) unsigned NOT NULL COMMENT 'Option Id', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id', `title` varchar(255) default NULL COMMENT 'Title', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CATALOG_PRODUCT_BUNDLE_OPTION_VALUE_OPTION_ID_STORE_ID` (`option_id`,`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Option Value'; SET character_set_client = @saved_cs_client; -- -- 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 */; /*!40000 ALTER TABLE `catalog_product_bundle_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_price_index` -- DROP TABLE IF EXISTS `catalog_product_bundle_price_index`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_bundle_price_index` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', `min_price` decimal(12,4) NOT NULL COMMENT 'Min Price', `max_price` decimal(12,4) NOT NULL COMMENT 'Max Price', PRIMARY KEY (`entity_id`,`website_id`,`customer_group_id`), KEY `IDX_CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_WEBSITE_ID` (`website_id`), KEY `IDX_CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_CUSTOMER_GROUP_ID` (`customer_group_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Price Index'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_bundle_price_index` -- LOCK TABLES `catalog_product_bundle_price_index` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_price_index` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_price_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_selection` -- DROP TABLE IF EXISTS `catalog_product_bundle_selection`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_bundle_selection` ( `selection_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Selection Id', `option_id` int(10) unsigned NOT NULL COMMENT 'Option Id', `parent_product_id` int(10) unsigned NOT NULL COMMENT 'Parent Product Id', `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id', `position` int(10) unsigned NOT NULL default '0' COMMENT 'Position', `is_default` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Default', `selection_price_type` smallint(5) unsigned NOT NULL default '0' COMMENT 'Selection Price Type', `selection_price_value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Selection Price Value', `selection_qty` decimal(12,4) default NULL COMMENT 'Selection Qty', `selection_can_change_qty` smallint(6) NOT NULL default '0' COMMENT 'Selection Can Change Qty', PRIMARY KEY (`selection_id`), KEY `IDX_CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION_ID` (`option_id`), KEY `IDX_CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_bundle_selection` -- LOCK TABLES `catalog_product_bundle_selection` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_selection` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_selection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_selection_price` -- DROP TABLE IF EXISTS `catalog_product_bundle_selection_price`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_bundle_selection_price` ( `selection_id` int(10) unsigned NOT NULL COMMENT 'Selection Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `selection_price_type` smallint(5) unsigned NOT NULL default '0' COMMENT 'Selection Price Type', `selection_price_value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Selection Price Value', PRIMARY KEY (`selection_id`,`website_id`), KEY `IDX_CATALOG_PRODUCT_BUNDLE_SELECTION_PRICE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection Price'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_bundle_selection_price` -- LOCK TABLES `catalog_product_bundle_selection_price` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_selection_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_selection_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_bundle_stock_index` -- DROP TABLE IF EXISTS `catalog_product_bundle_stock_index`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_bundle_stock_index` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Id', `stock_status` smallint(6) default '0' COMMENT 'Stock Status', PRIMARY KEY (`entity_id`,`website_id`,`stock_id`,`option_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Stock Index'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_bundle_stock_index` -- LOCK TABLES `catalog_product_bundle_stock_index` WRITE; /*!40000 ALTER TABLE `catalog_product_bundle_stock_index` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_bundle_stock_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_enabled_index` -- DROP TABLE IF EXISTS `catalog_product_enabled_index`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_enabled_index` ( `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `visibility` smallint(5) unsigned NOT NULL default '0' COMMENT 'Visibility', PRIMARY KEY (`product_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_ENABLED_INDEX_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Visibility Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_enabled_index` -- LOCK TABLES `catalog_product_enabled_index` WRITE; /*!40000 ALTER TABLE `catalog_product_enabled_index` DISABLE KEYS */; /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_entity` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity ID', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Set ID', `type_id` varchar(32) NOT NULL default 'simple' COMMENT 'Type ID', `sku` varchar(64) default NULL COMMENT 'SKU', `has_options` smallint(6) NOT NULL default '0' COMMENT 'Has Options', `required_options` smallint(5) unsigned NOT NULL default '0' COMMENT 'Required Options', `created_at` timestamp NULL default NULL COMMENT 'Creation Time', `updated_at` timestamp NULL default NULL COMMENT 'Update Time', PRIMARY KEY (`entity_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_SKU` (`sku`) ) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Table'; SET character_set_client = @saved_cs_client; -- -- 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 (1,4,4,'simple','#1',1,1,'2015-02-24 21:10:28','2015-04-08 16:17:00'),(2,4,4,'simple','#2',1,1,'2015-02-25 13:46:02','2015-04-08 16:19:08'),(3,4,4,'simple','#3',1,1,'2015-02-25 13:53:51','2015-02-25 18:06:22'),(4,4,4,'simple','#4',1,1,'2015-02-25 13:58:18','2015-04-07 18:10:13'),(5,4,4,'simple','#5',1,1,'2015-02-25 14:02:18','2015-04-08 16:28:52'),(6,4,4,'simple','#6',1,1,'2015-02-25 14:06:21','2015-04-08 16:01:54'),(7,4,4,'simple','#7',1,1,'2015-02-25 14:24:21','2015-04-08 16:16:33'),(8,4,4,'simple','#8',1,1,'2015-02-25 14:32:18','2015-02-25 14:32:18'),(9,4,4,'simple','#9',1,1,'2015-02-25 14:36:38','2015-04-08 16:29:53'),(10,4,4,'simple','#10',1,1,'2015-02-25 15:29:08','2015-04-08 16:13:10'),(11,4,4,'simple','#11',1,1,'2015-02-25 16:28:35','2015-04-08 12:22:22'),(12,4,4,'simple','#12',1,1,'2015-02-25 16:38:24','2015-04-08 12:25:08'),(13,4,4,'simple','#13',1,1,'2015-02-25 16:56:53','2015-04-08 16:30:32'),(14,4,4,'simple','#14',1,1,'2015-02-25 17:02:48','2015-04-08 12:22:02'),(15,4,4,'simple','#15',1,1,'2015-02-25 17:20:40','2015-02-25 17:20:40'),(16,4,4,'simple','#16',1,1,'2015-02-25 17:31:07','2015-04-08 12:23:34'),(17,4,4,'simple','#17',1,1,'2015-02-25 17:45:16','2015-04-08 16:14:59'),(18,4,4,'simple','#18',1,1,'2015-02-25 17:50:02','2015-04-08 12:21:29'),(19,4,4,'simple','#19',1,1,'2015-02-25 17:55:28','2015-02-25 17:55:28'),(20,4,4,'simple','#20',1,1,'2015-02-25 17:59:04','2015-04-08 12:24:37'); /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_entity_datetime` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `value` datetime default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_PRD_ENTT_DTIME_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID` (`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_DATETIME_ENTITY_ID` (`entity_id`) ) ENGINE=MyISAM AUTO_INCREMENT=133 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Datetime Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- 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,4,93,0,1,'2015-04-01 00:00:00'),(2,4,94,0,1,'2030-04-30 00:00:00'),(3,4,77,0,1,NULL),(4,4,78,0,1,NULL),(5,4,104,0,1,NULL),(6,4,105,0,1,NULL),(7,4,93,0,2,'2015-04-01 00:00:00'),(8,4,94,0,2,'2030-04-30 00:00:00'),(9,4,77,0,2,NULL),(10,4,78,0,2,NULL),(11,4,104,0,2,NULL),(12,4,105,0,2,NULL),(19,4,93,0,3,NULL),(20,4,94,0,3,NULL),(21,4,77,0,3,'2015-02-25 00:00:00'),(22,4,78,0,3,'2030-02-25 00:00:00'),(23,4,104,0,3,NULL),(24,4,105,0,3,NULL),(25,4,93,0,4,NULL),(26,4,94,0,4,NULL),(27,4,77,0,4,NULL),(28,4,78,0,4,NULL),(29,4,104,0,4,NULL),(30,4,105,0,4,NULL),(31,4,93,0,5,'2015-04-01 00:00:00'),(32,4,94,0,5,'2030-04-30 00:00:00'),(33,4,77,0,5,NULL),(34,4,78,0,5,NULL),(35,4,104,0,5,NULL),(36,4,105,0,5,NULL),(37,4,93,0,6,'2015-04-01 00:00:00'),(38,4,94,0,6,'2030-04-30 00:00:00'),(39,4,77,0,6,NULL),(40,4,78,0,6,NULL),(41,4,104,0,6,NULL),(42,4,105,0,6,NULL),(43,4,93,0,7,'2015-04-01 00:00:00'),(44,4,94,0,7,'2030-04-30 00:00:00'),(45,4,77,0,7,NULL),(46,4,78,0,7,NULL),(47,4,104,0,7,NULL),(48,4,105,0,7,NULL),(49,4,93,0,8,NULL),(50,4,94,0,8,NULL),(51,4,77,0,8,'2015-02-25 00:00:00'),(52,4,78,0,8,NULL),(53,4,104,0,8,NULL),(54,4,105,0,8,NULL),(55,4,93,0,9,'2015-04-01 00:00:00'),(56,4,94,0,9,'2030-04-30 00:00:00'),(57,4,77,0,9,NULL),(58,4,78,0,9,NULL),(59,4,104,0,9,NULL),(60,4,105,0,9,NULL),(61,4,93,0,10,'2015-04-01 00:00:00'),(62,4,94,0,10,'2030-04-30 00:00:00'),(63,4,77,0,10,NULL),(64,4,78,0,10,NULL),(65,4,104,0,10,NULL),(66,4,105,0,10,NULL),(67,4,93,0,11,NULL),(68,4,94,0,11,NULL),(69,4,77,0,11,NULL),(70,4,78,0,11,NULL),(71,4,104,0,11,NULL),(72,4,105,0,11,NULL),(73,4,93,0,12,NULL),(74,4,94,0,12,NULL),(75,4,77,0,12,'2015-04-08 00:00:00'),(76,4,78,0,12,NULL),(77,4,104,0,12,NULL),(78,4,105,0,12,NULL),(79,4,93,0,13,'2015-04-01 00:00:00'),(80,4,94,0,13,'2030-04-30 00:00:00'),(81,4,77,0,13,NULL),(82,4,78,0,13,NULL),(83,4,104,0,13,NULL),(84,4,105,0,13,NULL),(85,4,93,0,14,NULL),(86,4,94,0,14,NULL),(87,4,77,0,14,NULL),(88,4,78,0,14,NULL),(89,4,104,0,14,NULL),(90,4,105,0,14,NULL),(91,4,93,0,15,NULL),(92,4,94,0,15,NULL),(93,4,77,0,15,NULL),(94,4,78,0,15,NULL),(95,4,104,0,15,NULL),(96,4,105,0,15,NULL),(97,4,93,0,16,NULL),(98,4,94,0,16,NULL),(99,4,77,0,16,'2015-04-08 00:00:00'),(100,4,78,0,16,NULL),(101,4,104,0,16,NULL),(102,4,105,0,16,NULL),(109,4,93,0,17,'2015-04-01 00:00:00'),(110,4,94,0,17,'2030-04-30 00:00:00'),(111,4,77,0,17,NULL),(112,4,78,0,17,NULL),(113,4,104,0,17,NULL),(114,4,105,0,17,NULL),(115,4,93,0,18,NULL),(116,4,94,0,18,NULL),(117,4,77,0,18,'2015-04-08 00:00:00'),(118,4,78,0,18,NULL),(119,4,104,0,18,NULL),(120,4,105,0,18,NULL),(121,4,93,0,19,NULL),(122,4,94,0,19,NULL),(123,4,77,0,19,NULL),(124,4,78,0,19,NULL),(125,4,104,0,19,NULL),(126,4,105,0,19,NULL),(127,4,93,0,20,NULL),(128,4,94,0,20,NULL),(129,4,77,0,20,NULL),(130,4,78,0,20,NULL),(131,4,104,0,20,NULL),(132,4,105,0,20,NULL); /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_entity_decimal` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `value` decimal(12,4) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_PRD_ENTT_DEC_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID` (`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`) ) ENGINE=MyISAM AUTO_INCREMENT=87 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Decimal Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- 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,4,80,0,1,'0.2000'),(2,4,75,0,1,'20.0000'),(3,4,76,0,1,NULL),(4,4,120,0,1,NULL),(5,4,80,0,2,'0.2000'),(6,4,75,0,2,'15.0000'),(7,4,76,0,2,NULL),(8,4,120,0,2,NULL),(12,4,80,0,3,'0.2000'),(13,4,75,0,3,'30.0000'),(14,4,76,0,3,'20.0000'),(15,4,120,0,3,NULL),(16,4,80,0,4,'0.3000'),(17,4,75,0,4,'35.0000'),(18,4,76,0,4,NULL),(19,4,120,0,4,NULL),(20,4,80,0,5,'0.2000'),(21,4,75,0,5,'45.0000'),(22,4,76,0,5,NULL),(23,4,120,0,5,NULL),(24,4,80,0,6,'0.3000'),(25,4,75,0,6,'35.0000'),(26,4,76,0,6,NULL),(27,4,120,0,6,NULL),(28,4,80,0,7,'0.2000'),(29,4,75,0,7,'25.0000'),(30,4,76,0,7,NULL),(31,4,120,0,7,NULL),(32,4,80,0,8,'0.2000'),(33,4,75,0,8,'45.0000'),(34,4,76,0,8,'35.0000'),(35,4,120,0,8,NULL),(36,4,80,0,9,'0.2000'),(37,4,75,0,9,'25.9900'),(38,4,76,0,9,NULL),(39,4,120,0,9,NULL),(40,4,80,0,10,'0.3000'),(41,4,75,0,10,'45.0000'),(42,4,76,0,10,NULL),(43,4,120,0,10,NULL),(44,4,80,0,11,'0.3000'),(45,4,75,0,11,'30.0000'),(46,4,76,0,11,NULL),(47,4,120,0,11,NULL),(48,4,80,0,12,'0.2000'),(49,4,75,0,12,'20.0000'),(50,4,76,0,12,'15.9900'),(51,4,120,0,12,NULL),(52,4,80,0,13,'0.3000'),(53,4,75,0,13,'25.0000'),(54,4,76,0,13,NULL),(55,4,120,0,13,NULL),(56,4,80,0,14,'0.3000'),(57,4,75,0,14,'15.0000'),(58,4,76,0,14,NULL),(59,4,120,0,14,NULL),(60,4,80,0,15,'0.2000'),(61,4,75,0,15,'17.9900'),(62,4,76,0,15,NULL),(63,4,120,0,15,NULL),(64,4,80,0,16,'0.3000'),(65,4,75,0,16,'25.0000'),(66,4,76,0,16,'18.5000'),(67,4,120,0,16,NULL),(71,4,80,0,17,'0.3000'),(72,4,75,0,17,'35.0000'),(73,4,76,0,17,NULL),(74,4,120,0,17,NULL),(75,4,80,0,18,'0.3000'),(76,4,75,0,18,'26.9900'),(77,4,76,0,18,'20.0000'),(78,4,120,0,18,NULL),(79,4,80,0,19,'0.3000'),(80,4,75,0,19,'27.9900'),(81,4,76,0,19,NULL),(82,4,120,0,19,NULL),(83,4,80,0,20,'0.3000'),(84,4,75,0,20,'35.0000'),(85,4,76,0,20,NULL),(86,4,120,0,20,NULL); /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_entity_gallery` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `position` int(11) NOT NULL default '0' COMMENT 'Position', `value` varchar(255) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_PRD_ENTT_GLR_ENTT_TYPE_ID_ENTT_ID_ATTR_ID_STORE_ID` (`entity_type_id`,`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Gallery Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- 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_group_price` -- DROP TABLE IF EXISTS `catalog_product_entity_group_price`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_entity_group_price` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `all_groups` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Applicable To All Customer Groups', `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID', `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', PRIMARY KEY (`value_id`), UNIQUE KEY `CC12C83765B562314470A24F2BDD0F36` (`entity_id`,`all_groups`,`customer_group_id`,`website_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_GROUP_PRICE_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_GROUP_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_GROUP_PRICE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Group Price Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_entity_group_price` -- LOCK TABLES `catalog_product_entity_group_price` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_group_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_group_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_int` -- DROP TABLE IF EXISTS `catalog_product_entity_int`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_entity_int` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_type_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `value` int(11) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CATALOG_PRODUCT_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_INT_STORE_ID` (`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_INT_ENTITY_ID` (`entity_id`) ) ENGINE=MyISAM AUTO_INCREMENT=221 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Integer Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- 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,4,81,0,1,9),(2,4,145,0,1,19),(3,4,146,0,1,21),(4,4,147,0,1,24),(5,4,148,0,1,30),(6,4,143,0,1,0),(7,4,142,0,1,1),(8,4,96,0,1,1),(9,4,102,0,1,4),(10,4,121,0,1,2),(11,4,100,0,1,0),(12,4,81,0,2,10),(13,4,145,0,2,20),(14,4,146,0,2,23),(15,4,147,0,2,25),(16,4,148,0,2,26),(17,4,143,0,2,0),(18,4,142,0,2,1),(19,4,96,0,2,1),(20,4,102,0,2,4),(21,4,121,0,2,2),(22,4,100,0,2,0),(23,4,81,0,3,11),(24,4,145,0,3,19),(25,4,146,0,3,21),(26,4,147,0,3,24),(27,4,148,0,3,30),(28,4,143,0,3,1),(29,4,142,0,3,0),(30,4,96,0,3,1),(31,4,102,0,3,4),(32,4,121,0,3,2),(33,4,100,0,3,0),(34,4,81,0,4,12),(35,4,145,0,4,19),(36,4,146,0,4,21),(37,4,147,0,4,25),(38,4,148,0,4,30),(39,4,143,0,4,0),(40,4,142,0,4,0),(41,4,96,0,4,1),(42,4,102,0,4,4),(43,4,121,0,4,2),(44,4,100,0,4,0),(45,4,81,0,5,13),(46,4,145,0,5,19),(47,4,146,0,5,21),(48,4,147,0,5,25),(49,4,148,0,5,30),(50,4,143,0,5,0),(51,4,142,0,5,1),(52,4,96,0,5,1),(53,4,102,0,5,4),(54,4,121,0,5,2),(55,4,100,0,5,0),(56,4,81,0,6,14),(57,4,145,0,6,19),(58,4,146,0,6,21),(59,4,147,0,6,25),(60,4,148,0,6,30),(61,4,143,0,6,0),(62,4,142,0,6,1),(63,4,96,0,6,1),(64,4,102,0,6,4),(65,4,121,0,6,2),(66,4,100,0,6,0),(67,4,81,0,7,15),(68,4,145,0,7,20),(69,4,146,0,7,23),(70,4,147,0,7,25),(71,4,148,0,7,29),(72,4,143,0,7,0),(73,4,142,0,7,1),(74,4,96,0,7,1),(75,4,102,0,7,4),(76,4,121,0,7,2),(77,4,100,0,7,0),(78,4,81,0,8,16),(79,4,145,0,8,19),(80,4,146,0,8,22),(81,4,147,0,8,25),(82,4,148,0,8,30),(83,4,143,0,8,1),(84,4,142,0,8,0),(85,4,96,0,8,1),(86,4,102,0,8,4),(87,4,121,0,8,2),(88,4,100,0,8,0),(89,4,81,0,9,17),(90,4,145,0,9,19),(91,4,146,0,9,21),(92,4,147,0,9,25),(93,4,148,0,9,30),(94,4,143,0,9,0),(95,4,142,0,9,1),(96,4,96,0,9,1),(97,4,102,0,9,4),(98,4,121,0,9,2),(99,4,100,0,9,0),(100,4,81,0,10,18),(101,4,145,0,10,19),(102,4,146,0,10,21),(103,4,147,0,10,24),(104,4,148,0,10,30),(105,4,143,0,10,0),(106,4,142,0,10,1),(107,4,96,0,10,1),(108,4,102,0,10,4),(109,4,121,0,10,2),(110,4,100,0,10,0),(111,4,81,0,11,9),(112,4,145,0,11,19),(113,4,146,0,11,22),(114,4,147,0,11,24),(115,4,148,0,11,30),(116,4,143,0,11,0),(117,4,142,0,11,0),(118,4,96,0,11,1),(119,4,102,0,11,4),(120,4,121,0,11,2),(121,4,100,0,11,0),(122,4,81,0,12,10),(123,4,145,0,12,19),(124,4,146,0,12,23),(125,4,147,0,12,25),(126,4,148,0,12,29),(127,4,143,0,12,1),(128,4,142,0,12,0),(129,4,96,0,12,1),(130,4,102,0,12,4),(131,4,121,0,12,2),(132,4,100,0,12,0),(133,4,81,0,13,11),(134,4,145,0,13,20),(135,4,146,0,13,21),(136,4,147,0,13,25),(137,4,148,0,13,29),(138,4,143,0,13,0),(139,4,142,0,13,1),(140,4,96,0,13,1),(141,4,102,0,13,4),(142,4,121,0,13,2),(143,4,100,0,13,0),(144,4,81,0,14,12),(145,4,145,0,14,19),(146,4,146,0,14,23),(147,4,147,0,14,24),(148,4,148,0,14,27),(149,4,143,0,14,0),(150,4,142,0,14,0),(151,4,96,0,14,1),(152,4,102,0,14,4),(153,4,121,0,14,2),(154,4,100,0,14,0),(155,4,81,0,15,13),(156,4,145,0,15,19),(157,4,146,0,15,23),(158,4,147,0,15,24),(159,4,148,0,15,28),(160,4,143,0,15,0),(161,4,142,0,15,0),(162,4,96,0,15,1),(163,4,102,0,15,4),(164,4,121,0,15,2),(165,4,100,0,15,0),(166,4,81,0,16,14),(167,4,145,0,16,19),(168,4,146,0,16,22),(169,4,147,0,16,24),(170,4,148,0,16,30),(171,4,143,0,16,1),(172,4,142,0,16,0),(173,4,96,0,16,1),(174,4,102,0,16,4),(175,4,121,0,16,2),(176,4,100,0,16,0),(177,4,81,0,17,15),(178,4,145,0,17,19),(179,4,146,0,17,23),(180,4,147,0,17,24),(181,4,148,0,17,30),(182,4,143,0,17,0),(183,4,142,0,17,1),(184,4,96,0,17,1),(185,4,102,0,17,4),(186,4,121,0,17,2),(187,4,100,0,17,0),(188,4,81,0,18,16),(189,4,145,0,18,19),(190,4,146,0,18,23),(191,4,147,0,18,25),(192,4,148,0,18,30),(193,4,143,0,18,1),(194,4,142,0,18,0),(195,4,96,0,18,1),(196,4,102,0,18,4),(197,4,121,0,18,2),(198,4,100,0,18,0),(199,4,81,0,19,17),(200,4,145,0,19,20),(201,4,146,0,19,22),(202,4,147,0,19,24),(203,4,148,0,19,30),(204,4,143,0,19,0),(205,4,142,0,19,1),(206,4,96,0,19,1),(207,4,102,0,19,4),(208,4,121,0,19,2),(209,4,100,0,19,0),(210,4,81,0,20,18),(211,4,145,0,20,19),(212,4,146,0,20,22),(213,4,147,0,20,24),(214,4,148,0,20,30),(215,4,143,0,20,0),(216,4,142,0,20,0),(217,4,96,0,20,1),(218,4,102,0,20,4),(219,4,121,0,20,2),(220,4,100,0,20,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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_entity_media_gallery` ( `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `value` varchar(255) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_ENTITY_ID` (`entity_id`) ) ENGINE=MyISAM AUTO_INCREMENT=121 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- 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,88,1,'/a/f/after_ever_happy_1.png'),(2,88,1,'/a/f/after_ever_happy_3.png'),(3,88,1,'/a/f/after_ever_happy_6.png'),(4,88,1,'/a/f/after_ever_happy_5.png'),(5,88,1,'/a/f/after_ever_happy_4.png'),(6,88,1,'/a/f/after_ever_happy_2.png'),(7,88,2,'/a/p/apples_and_pumpkins_4.png'),(8,88,2,'/a/p/apples_and_pumpkins_2.png'),(9,88,2,'/a/p/apples_and_pumpkins_1.png'),(10,88,2,'/a/p/apples_and_pumpkins_3.png'),(11,88,2,'/a/p/apples_and_pumpkins_5.png'),(12,88,2,'/a/p/apples_and_pumpkins_6.png'),(13,88,3,'/b/e/being_mortal_medicine_and_what_matters_in_the_end_3.png'),(14,88,3,'/b/e/being_mortal_medicine_and_what_matters_in_the_end_6.png'),(15,88,3,'/b/e/being_mortal_medicine_and_what_matters_in_the_end_4.png'),(16,88,3,'/b/e/being_mortal_medicine_and_what_matters_in_the_end_5.png'),(17,88,3,'/b/e/being_mortal_medicine_and_what_matters_in_the_end_2.png'),(18,88,3,'/b/e/being_mortal_medicine_and_what_matters_in_the_end_1.png'),(19,88,4,'/c/r/criterion_designs_2.png'),(20,88,4,'/c/r/criterion_designs_1.png'),(21,88,4,'/c/r/criterion_designs_4.png'),(22,88,4,'/c/r/criterion_designs_3.png'),(23,88,4,'/c/r/criterion_designs_5.png'),(24,88,4,'/c/r/criterion_designs_6.png'),(25,88,5,'/g/e/get_what_s_yours_the_secrets_to_maxing_out_your_social_security_5.png'),(26,88,5,'/g/e/get_what_s_yours_the_secrets_to_maxing_out_your_social_security_4.png'),(27,88,5,'/g/e/get_what_s_yours_the_secrets_to_maxing_out_your_social_security_1.png'),(28,88,5,'/g/e/get_what_s_yours_the_secrets_to_maxing_out_your_social_security_6.png'),(29,88,5,'/g/e/get_what_s_yours_the_secrets_to_maxing_out_your_social_security_2.png'),(30,88,5,'/g/e/get_what_s_yours_the_secrets_to_maxing_out_your_social_security_3.png'),(31,88,6,'/h/o/hollywood_frame_by_frame_3.png'),(32,88,6,'/h/o/hollywood_frame_by_frame_6.png'),(33,88,6,'/h/o/hollywood_frame_by_frame_4.png'),(34,88,6,'/h/o/hollywood_frame_by_frame_1.png'),(35,88,6,'/h/o/hollywood_frame_by_frame_2.png'),(36,88,6,'/h/o/hollywood_frame_by_frame_5.png'),(37,88,7,'/l/o/locomotive_caldecott_medal_book__2.png'),(38,88,7,'/l/o/locomotive_caldecott_medal_book__5.png'),(39,88,7,'/l/o/locomotive_caldecott_medal_book__1.png'),(40,88,7,'/l/o/locomotive_caldecott_medal_book__3.png'),(41,88,7,'/l/o/locomotive_caldecott_medal_book__4.png'),(42,88,7,'/l/o/locomotive_caldecott_medal_book__6.png'),(43,88,8,'/l/o/lose_the_clutter_lose_the_weight_6.png'),(44,88,8,'/l/o/lose_the_clutter_lose_the_weight_4.png'),(45,88,8,'/l/o/lose_the_clutter_lose_the_weight_2.png'),(46,88,8,'/l/o/lose_the_clutter_lose_the_weight_5.png'),(47,88,8,'/l/o/lose_the_clutter_lose_the_weight_3.png'),(48,88,8,'/l/o/lose_the_clutter_lose_the_weight_1.png'),(49,88,9,'/l/o/lost_lake_a_novel_3.png'),(50,88,9,'/l/o/lost_lake_a_novel_5.png'),(51,88,9,'/l/o/lost_lake_a_novel_4.png'),(52,88,9,'/l/o/lost_lake_a_novel_6.png'),(53,88,9,'/l/o/lost_lake_a_novel_1.png'),(54,88,9,'/l/o/lost_lake_a_novel_2.png'),(55,88,10,'/m/a/magnum_contact_sheets_2.png'),(56,88,10,'/m/a/magnum_contact_sheets_1.png'),(57,88,10,'/m/a/magnum_contact_sheets_4.png'),(58,88,10,'/m/a/magnum_contact_sheets_6.png'),(59,88,10,'/m/a/magnum_contact_sheets_3.png'),(60,88,10,'/m/a/magnum_contact_sheets_5.png'),(61,88,11,'/p/h/photographers_sketchbooks_2.png'),(62,88,11,'/p/h/photographers_sketchbooks_3.png'),(63,88,11,'/p/h/photographers_sketchbooks_1.png'),(64,88,11,'/p/h/photographers_sketchbooks_5.png'),(65,88,11,'/p/h/photographers_sketchbooks_4.png'),(66,88,11,'/p/h/photographers_sketchbooks_6.png'),(67,88,12,'/s/t/stellaluna_6.png'),(68,88,12,'/s/t/stellaluna_5.png'),(69,88,12,'/s/t/stellaluna_1.png'),(70,88,12,'/s/t/stellaluna_4.png'),(71,88,12,'/s/t/stellaluna_3.png'),(72,88,12,'/s/t/stellaluna_2.png'),(73,88,13,'/t/h/the_children_s_crusade_a_novel_5.png'),(74,88,13,'/t/h/the_children_s_crusade_a_novel_2.png'),(75,88,13,'/t/h/the_children_s_crusade_a_novel_1.png'),(76,88,13,'/t/h/the_children_s_crusade_a_novel_6.png'),(77,88,13,'/t/h/the_children_s_crusade_a_novel_3.png'),(78,88,13,'/t/h/the_children_s_crusade_a_novel_4.png'),(79,88,14,'/t/h/the_farmer_and_the_clown_2.png'),(80,88,14,'/t/h/the_farmer_and_the_clown_4.png'),(81,88,14,'/t/h/the_farmer_and_the_clown_6.png'),(82,88,14,'/t/h/the_farmer_and_the_clown_3.png'),(83,88,14,'/t/h/the_farmer_and_the_clown_5.png'),(84,88,14,'/t/h/the_farmer_and_the_clown_1.png'),(85,88,15,'/t/h/the_middle_school_rules_of_brian_urlacher_3.png'),(86,88,15,'/t/h/the_middle_school_rules_of_brian_urlacher_2.png'),(87,88,15,'/t/h/the_middle_school_rules_of_brian_urlacher_4.png'),(88,88,15,'/t/h/the_middle_school_rules_of_brian_urlacher_6.png'),(89,88,15,'/t/h/the_middle_school_rules_of_brian_urlacher_1.png'),(90,88,15,'/t/h/the_middle_school_rules_of_brian_urlacher_5.png'),(91,88,16,'/t/h/the_pecan_man_4.png'),(92,88,16,'/t/h/the_pecan_man_3.png'),(93,88,16,'/t/h/the_pecan_man_2.png'),(94,88,16,'/t/h/the_pecan_man_6.png'),(95,88,16,'/t/h/the_pecan_man_1.png'),(96,88,16,'/t/h/the_pecan_man_5.png'),(97,88,17,'/t/h/the_rosie_project_a_novel_3.png'),(98,88,17,'/t/h/the_rosie_project_a_novel_1.png'),(99,88,17,'/t/h/the_rosie_project_a_novel_6.png'),(100,88,17,'/t/h/the_rosie_project_a_novel_5.png'),(101,88,17,'/t/h/the_rosie_project_a_novel_2.png'),(102,88,17,'/t/h/the_rosie_project_a_novel_4.png'),(103,88,18,'/t/h/the_sugar_queen_random_house_reader_s_circle__2.png'),(104,88,18,'/t/h/the_sugar_queen_random_house_reader_s_circle__1.png'),(105,88,18,'/t/h/the_sugar_queen_random_house_reader_s_circle__6.png'),(106,88,18,'/t/h/the_sugar_queen_random_house_reader_s_circle__5.png'),(107,88,18,'/t/h/the_sugar_queen_random_house_reader_s_circle__4.png'),(108,88,18,'/t/h/the_sugar_queen_random_house_reader_s_circle__3.png'),(109,88,19,'/t/h/the_wes_anderson_collection_the_grand_budapest_hotel_6.png'),(110,88,19,'/t/h/the_wes_anderson_collection_the_grand_budapest_hotel_4.png'),(111,88,19,'/t/h/the_wes_anderson_collection_the_grand_budapest_hotel_2.png'),(112,88,19,'/t/h/the_wes_anderson_collection_the_grand_budapest_hotel_3.png'),(113,88,19,'/t/h/the_wes_anderson_collection_the_grand_budapest_hotel_5.png'),(114,88,19,'/t/h/the_wes_anderson_collection_the_grand_budapest_hotel_1.png'),(115,88,20,'/t/h/the_wes_anderson_collection_5.png'),(116,88,20,'/t/h/the_wes_anderson_collection_3.png'),(117,88,20,'/t/h/the_wes_anderson_collection_6.png'),(118,88,20,'/t/h/the_wes_anderson_collection_1.png'),(119,88,20,'/t/h/the_wes_anderson_collection_2.png'),(120,88,20,'/t/h/the_wes_anderson_collection_4.png'); /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_entity_media_gallery_value` ( `value_id` int(10) unsigned NOT NULL default '0' COMMENT 'Value ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `label` varchar(255) default NULL COMMENT 'Label', `position` int(10) unsigned default NULL COMMENT 'Position', `disabled` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Disabled', PRIMARY KEY (`value_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Value Table'; SET character_set_client = @saved_cs_client; -- -- 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,NULL,1,0),(2,0,NULL,2,0),(3,0,NULL,3,0),(4,0,NULL,4,0),(5,0,NULL,5,0),(6,0,NULL,6,0),(7,0,NULL,1,0),(8,0,NULL,2,0),(9,0,NULL,3,0),(10,0,NULL,4,0),(11,0,NULL,5,0),(12,0,NULL,6,0),(13,0,NULL,1,0),(14,0,NULL,2,0),(15,0,NULL,3,0),(16,0,NULL,4,0),(17,0,NULL,5,0),(18,0,NULL,6,0),(19,0,NULL,1,0),(20,0,NULL,2,0),(21,0,NULL,3,0),(22,0,NULL,4,0),(23,0,NULL,5,0),(24,0,NULL,6,0),(25,0,NULL,1,0),(26,0,NULL,2,0),(27,0,NULL,3,0),(28,0,NULL,4,0),(29,0,NULL,5,0),(30,0,NULL,6,0),(31,0,NULL,1,0),(32,0,NULL,2,0),(33,0,NULL,3,0),(34,0,NULL,4,0),(35,0,NULL,5,0),(36,0,NULL,6,0),(37,0,NULL,1,0),(38,0,NULL,2,0),(39,0,NULL,3,0),(40,0,NULL,4,0),(41,0,NULL,5,0),(42,0,NULL,6,0),(43,0,NULL,1,0),(44,0,NULL,2,0),(45,0,NULL,3,0),(46,0,NULL,4,0),(47,0,NULL,5,0),(48,0,NULL,6,0),(49,0,NULL,1,0),(50,0,NULL,2,0),(51,0,NULL,3,0),(52,0,NULL,4,0),(53,0,NULL,5,0),(54,0,NULL,6,0),(55,0,NULL,1,0),(56,0,NULL,2,0),(57,0,NULL,3,0),(58,0,NULL,4,0),(59,0,NULL,5,0),(60,0,NULL,6,0),(61,0,NULL,1,0),(62,0,NULL,2,0),(63,0,NULL,3,0),(64,0,NULL,4,0),(65,0,NULL,5,0),(66,0,NULL,6,0),(67,0,NULL,1,0),(68,0,NULL,2,0),(69,0,NULL,3,0),(70,0,NULL,4,0),(71,0,NULL,5,0),(72,0,NULL,6,0),(73,0,NULL,1,0),(74,0,NULL,2,0),(75,0,NULL,3,0),(76,0,NULL,4,0),(77,0,NULL,5,0),(78,0,NULL,6,0),(79,0,NULL,1,0),(80,0,NULL,2,0),(81,0,NULL,3,0),(82,0,NULL,4,0),(83,0,NULL,5,0),(84,0,NULL,6,0),(85,0,NULL,1,0),(86,0,NULL,2,0),(87,0,NULL,3,0),(88,0,NULL,4,0),(89,0,NULL,5,0),(90,0,NULL,6,0),(91,0,NULL,1,0),(92,0,NULL,2,0),(93,0,NULL,3,0),(94,0,NULL,4,0),(95,0,NULL,5,0),(96,0,NULL,6,0),(97,0,NULL,1,0),(98,0,NULL,2,0),(99,0,NULL,3,0),(100,0,NULL,4,0),(101,0,NULL,5,0),(102,0,NULL,6,0),(103,0,NULL,1,0),(104,0,NULL,2,0),(105,0,NULL,3,0),(106,0,NULL,4,0),(107,0,NULL,5,0),(108,0,NULL,6,0),(109,0,NULL,1,0),(110,0,NULL,2,0),(111,0,NULL,3,0),(112,0,NULL,4,0),(113,0,NULL,5,0),(114,0,NULL,6,0),(115,0,NULL,1,0),(116,0,NULL,2,0),(117,0,NULL,3,0),(118,0,NULL,4,0),(119,0,NULL,5,0),(120,0,NULL,6,0); /*!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`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_entity_text` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_type_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `value` text COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CATALOG_PRODUCT_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID` (`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_TEXT_ENTITY_ID` (`entity_id`) ) ENGINE=MyISAM AUTO_INCREMENT=85 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Text Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- 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,4,72,0,1,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(2,4,73,0,1,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(3,4,83,0,1,NULL),(4,4,106,0,1,NULL),(5,4,72,0,2,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(6,4,73,0,2,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(7,4,83,0,2,NULL),(8,4,106,0,2,NULL),(11,4,72,0,3,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(12,4,73,0,3,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(13,4,83,0,3,NULL),(14,4,106,0,3,NULL),(15,4,72,0,4,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(16,4,73,0,4,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(17,4,83,0,4,NULL),(18,4,106,0,4,NULL),(19,4,72,0,5,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(20,4,73,0,5,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(21,4,83,0,5,NULL),(22,4,106,0,5,NULL),(23,4,72,0,6,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(24,4,73,0,6,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(25,4,83,0,6,NULL),(26,4,106,0,6,NULL),(27,4,72,0,7,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(28,4,73,0,7,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(29,4,83,0,7,NULL),(30,4,106,0,7,NULL),(31,4,72,0,8,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(32,4,73,0,8,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(33,4,83,0,8,NULL),(34,4,106,0,8,NULL),(35,4,72,0,9,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(36,4,73,0,9,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(37,4,83,0,9,NULL),(38,4,106,0,9,NULL),(39,4,72,0,10,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(40,4,73,0,10,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(41,4,83,0,10,NULL),(42,4,106,0,10,NULL),(43,4,72,0,11,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(44,4,73,0,11,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(45,4,83,0,11,NULL),(46,4,106,0,11,NULL),(47,4,72,0,12,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(48,4,73,0,12,'Well, reading <strong>books</strong> as a hobby was always a noble, pleasant and very useful kind of activity. It gives <strong>knowledge</strong>, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(49,4,83,0,12,NULL),(50,4,106,0,12,NULL),(51,4,72,0,13,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(52,4,73,0,13,'Well, reading books as a <strong>hobby</strong> was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(53,4,83,0,13,NULL),(54,4,106,0,13,NULL),(55,4,72,0,14,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(56,4,73,0,14,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(57,4,83,0,14,NULL),(58,4,106,0,14,NULL),(59,4,72,0,15,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(60,4,73,0,15,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(61,4,83,0,15,NULL),(62,4,106,0,15,NULL),(63,4,72,0,16,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(64,4,73,0,16,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(65,4,83,0,16,NULL),(66,4,106,0,16,NULL),(69,4,72,0,17,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(70,4,73,0,17,'Well, reading <strong>books</strong> as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(71,4,83,0,17,NULL),(72,4,106,0,17,NULL),(73,4,72,0,18,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(74,4,73,0,18,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(75,4,83,0,18,NULL),(76,4,106,0,18,NULL),(77,4,72,0,19,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(78,4,73,0,19,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(79,4,83,0,19,NULL),(80,4,106,0,19,NULL),(81,4,72,0,20,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.\r\n But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. \r\nOur business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. \r\nThe diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.\r\n'),(82,4,73,0,20,'Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.'),(83,4,83,0,20,NULL),(84,4,106,0,20,NULL); /*!40000 ALTER TABLE `catalog_product_entity_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_tier_price` -- DROP TABLE IF EXISTS `catalog_product_entity_tier_price`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_entity_tier_price` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `all_groups` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Applicable To All Customer Groups', `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group ID', `qty` decimal(12,4) NOT NULL default '1.0000' COMMENT 'QTY', `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', PRIMARY KEY (`value_id`), UNIQUE KEY `E8AB433B9ACB00343ABB312AD2FAB087` (`entity_id`,`all_groups`,`customer_group_id`,`qty`,`website_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_TIER_PRICE_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_TIER_PRICE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_entity_tier_price` -- LOCK TABLES `catalog_product_entity_tier_price` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_tier_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_entity_tier_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_varchar` -- DROP TABLE IF EXISTS `catalog_product_entity_varchar`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_entity_varchar` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value ID', `entity_type_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Type ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity ID', `value` varchar(255) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_PRD_ENTT_VCHR_ENTT_ID_ATTR_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID` (`store_id`), KEY `IDX_CATALOG_PRODUCT_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`) ) ENGINE=MyISAM AUTO_INCREMENT=421 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Varchar Attribute Backend Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_entity_varchar` -- LOCK TABLES `catalog_product_entity_varchar` WRITE; /*!40000 ALTER TABLE `catalog_product_entity_varchar` DISABLE KEYS */; INSERT INTO `catalog_product_entity_varchar` VALUES (1,4,71,0,1,'After Ever Happy'),(2,4,144,0,1,NULL),(3,4,97,0,1,'after-ever-happy'),(4,4,117,0,1,NULL),(5,4,118,0,1,'2'),(6,4,119,0,1,'4'),(7,4,82,0,1,NULL),(8,4,84,0,1,NULL),(9,4,85,0,1,'/a/f/after_ever_happy_6.png'),(10,4,86,0,1,'/a/f/after_ever_happy_6.png'),(11,4,87,0,1,'/a/f/after_ever_happy_6.png'),(12,4,103,0,1,NULL),(13,4,107,0,1,NULL),(14,4,109,0,1,'container1'),(15,4,122,0,1,NULL),(16,4,112,0,1,NULL),(17,4,113,0,1,NULL),(18,4,114,0,1,NULL),(19,4,98,1,1,'after-ever-happy.html'),(20,4,98,0,1,'after-ever-happy.html'),(21,4,71,0,2,'Apples and Pumpkins'),(22,4,144,0,2,'https://www.youtube.com/embed/mw4V_8svaDc'),(23,4,97,0,2,'apples-and-pumpkins'),(24,4,117,0,2,NULL),(25,4,118,0,2,'2'),(26,4,119,0,2,'4'),(27,4,82,0,2,NULL),(28,4,84,0,2,NULL),(29,4,85,0,2,'/a/p/apples_and_pumpkins_1.png'),(30,4,86,0,2,'/a/p/apples_and_pumpkins_1.png'),(31,4,87,0,2,'/a/p/apples_and_pumpkins_1.png'),(32,4,103,0,2,NULL),(33,4,107,0,2,NULL),(34,4,109,0,2,'container1'),(35,4,122,0,2,NULL),(36,4,112,0,2,NULL),(37,4,113,0,2,NULL),(38,4,114,0,2,NULL),(39,4,98,1,2,'apples-and-pumpkins.html'),(40,4,98,0,2,'apples-and-pumpkins.html'),(51,4,71,0,3,'Being Mortal Medicine and What Matters in the End'),(52,4,144,0,3,'https://www.youtube.com/embed/mw4V_8svaDc'),(53,4,97,0,3,'being-mortal-medicine-and-what-matters-in-the-end'),(54,4,117,0,3,NULL),(55,4,118,0,3,'2'),(56,4,119,0,3,'4'),(57,4,82,0,3,NULL),(58,4,84,0,3,NULL),(59,4,85,0,3,'/b/e/being_mortal_medicine_and_what_matters_in_the_end_6.png'),(60,4,86,0,3,'/b/e/being_mortal_medicine_and_what_matters_in_the_end_6.png'),(61,4,87,0,3,'/b/e/being_mortal_medicine_and_what_matters_in_the_end_6.png'),(62,4,103,0,3,NULL),(63,4,107,0,3,NULL),(64,4,109,0,3,'container1'),(65,4,122,0,3,NULL),(66,4,112,0,3,NULL),(67,4,113,0,3,NULL),(68,4,114,0,3,NULL),(69,4,98,1,3,'being-mortal-medicine-and-what-matters-in-the-end.html'),(70,4,98,0,3,'being-mortal-medicine-and-what-matters-in-the-end.html'),(71,4,71,0,4,'Criterion Designs'),(72,4,144,0,4,'https://www.youtube.com/embed/mw4V_8svaDc'),(73,4,97,0,4,'criterion-designs'),(74,4,117,0,4,NULL),(75,4,118,0,4,'2'),(76,4,119,0,4,'4'),(77,4,82,0,4,NULL),(78,4,84,0,4,NULL),(79,4,85,0,4,'/c/r/criterion_designs_1.png'),(80,4,86,0,4,'/c/r/criterion_designs_1.png'),(81,4,87,0,4,'/c/r/criterion_designs_1.png'),(82,4,103,0,4,NULL),(83,4,107,0,4,NULL),(84,4,109,0,4,'container1'),(85,4,122,0,4,NULL),(86,4,112,0,4,NULL),(87,4,113,0,4,NULL),(88,4,114,0,4,NULL),(89,4,98,1,4,'criterion-designs.html'),(90,4,98,0,4,'criterion-designs.html'),(91,4,71,0,5,'Get What\'s Yours The Secrets to Maxing Out Your Social Security'),(92,4,144,0,5,'https://www.youtube.com/embed/mw4V_8svaDc'),(93,4,97,0,5,'get-what-s-yours-the-secrets-to-maxing-out-your-social-security'),(94,4,117,0,5,NULL),(95,4,118,0,5,'2'),(96,4,119,0,5,'4'),(97,4,82,0,5,NULL),(98,4,84,0,5,NULL),(99,4,85,0,5,'/g/e/get_what_s_yours_the_secrets_to_maxing_out_your_social_security_5.png'),(100,4,86,0,5,'/g/e/get_what_s_yours_the_secrets_to_maxing_out_your_social_security_5.png'),(101,4,87,0,5,'/g/e/get_what_s_yours_the_secrets_to_maxing_out_your_social_security_5.png'),(102,4,103,0,5,NULL),(103,4,107,0,5,NULL),(104,4,109,0,5,'container1'),(105,4,122,0,5,NULL),(106,4,112,0,5,NULL),(107,4,113,0,5,NULL),(108,4,114,0,5,NULL),(109,4,98,1,5,'get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html'),(110,4,98,0,5,'get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html'),(111,4,71,0,6,'Hollywood Frame by Frame'),(112,4,144,0,6,'https://www.youtube.com/embed/mw4V_8svaDc'),(113,4,97,0,6,'hollywood-frame-by-frame'),(114,4,117,0,6,NULL),(115,4,118,0,6,'2'),(116,4,119,0,6,'4'),(117,4,82,0,6,NULL),(118,4,84,0,6,NULL),(119,4,85,0,6,'/h/o/hollywood_frame_by_frame_1.png'),(120,4,86,0,6,'/h/o/hollywood_frame_by_frame_1.png'),(121,4,87,0,6,'/h/o/hollywood_frame_by_frame_1.png'),(122,4,103,0,6,NULL),(123,4,107,0,6,NULL),(124,4,109,0,6,'container1'),(125,4,122,0,6,NULL),(126,4,112,0,6,NULL),(127,4,113,0,6,NULL),(128,4,114,0,6,NULL),(129,4,98,1,6,'hollywood-frame-by-frame.html'),(130,4,98,0,6,'hollywood-frame-by-frame.html'),(131,4,71,0,7,'Locomotive (Caldecott Medal Book)'),(132,4,144,0,7,'https://www.youtube.com/embed/mw4V_8svaDc'),(133,4,97,0,7,'locomotive-caldecott-medal-book'),(134,4,117,0,7,NULL),(135,4,118,0,7,'2'),(136,4,119,0,7,'4'),(137,4,82,0,7,NULL),(138,4,84,0,7,NULL),(139,4,85,0,7,'/l/o/locomotive_caldecott_medal_book__4.png'),(140,4,86,0,7,'/l/o/locomotive_caldecott_medal_book__4.png'),(141,4,87,0,7,'/l/o/locomotive_caldecott_medal_book__4.png'),(142,4,103,0,7,NULL),(143,4,107,0,7,NULL),(144,4,109,0,7,'container1'),(145,4,122,0,7,NULL),(146,4,112,0,7,NULL),(147,4,113,0,7,NULL),(148,4,114,0,7,NULL),(149,4,98,1,7,'locomotive-caldecott-medal-book.html'),(150,4,98,0,7,'locomotive-caldecott-medal-book.html'),(151,4,71,0,8,'Lose the Clutter, Lose the Weight'),(152,4,144,0,8,'https://www.youtube.com/embed/mw4V_8svaDc'),(153,4,97,0,8,'lose-the-clutter-lose-the-weight'),(154,4,117,0,8,NULL),(155,4,118,0,8,'2'),(156,4,119,0,8,'4'),(157,4,82,0,8,NULL),(158,4,84,0,8,NULL),(159,4,85,0,8,'/l/o/lose_the_clutter_lose_the_weight_6.png'),(160,4,86,0,8,'/l/o/lose_the_clutter_lose_the_weight_6.png'),(161,4,87,0,8,'/l/o/lose_the_clutter_lose_the_weight_6.png'),(162,4,103,0,8,NULL),(163,4,107,0,8,NULL),(164,4,109,0,8,'container1'),(165,4,122,0,8,NULL),(166,4,112,0,8,NULL),(167,4,113,0,8,NULL),(168,4,114,0,8,NULL),(169,4,98,1,8,'lose-the-clutter-lose-the-weight.html'),(170,4,98,0,8,'lose-the-clutter-lose-the-weight.html'),(171,4,71,0,9,'Lost Lake A Novel'),(172,4,144,0,9,'https://www.youtube.com/embed/mw4V_8svaDc'),(173,4,97,0,9,'lost-lake-a-novel'),(174,4,117,0,9,NULL),(175,4,118,0,9,'2'),(176,4,119,0,9,'4'),(177,4,82,0,9,NULL),(178,4,84,0,9,NULL),(179,4,85,0,9,'/l/o/lost_lake_a_novel_5.png'),(180,4,86,0,9,'/l/o/lost_lake_a_novel_5.png'),(181,4,87,0,9,'/l/o/lost_lake_a_novel_5.png'),(182,4,103,0,9,NULL),(183,4,107,0,9,NULL),(184,4,109,0,9,'container1'),(185,4,122,0,9,NULL),(186,4,112,0,9,NULL),(187,4,113,0,9,NULL),(188,4,114,0,9,NULL),(189,4,98,1,9,'lost-lake-a-novel.html'),(190,4,98,0,9,'lost-lake-a-novel.html'),(191,4,71,0,10,'Magnum Contact Sheets'),(192,4,144,0,10,'https://www.youtube.com/embed/mw4V_8svaDc'),(193,4,97,0,10,'magnum-contact-sheets'),(194,4,117,0,10,NULL),(195,4,118,0,10,'2'),(196,4,119,0,10,'4'),(197,4,82,0,10,NULL),(198,4,84,0,10,NULL),(199,4,85,0,10,'/m/a/magnum_contact_sheets_6.png'),(200,4,86,0,10,'/m/a/magnum_contact_sheets_6.png'),(201,4,87,0,10,'/m/a/magnum_contact_sheets_6.png'),(202,4,103,0,10,NULL),(203,4,107,0,10,NULL),(204,4,109,0,10,'container1'),(205,4,122,0,10,NULL),(206,4,112,0,10,NULL),(207,4,113,0,10,NULL),(208,4,114,0,10,NULL),(209,4,98,1,10,'magnum-contact-sheets.html'),(210,4,98,0,10,'magnum-contact-sheets.html'),(211,4,71,0,11,'Photographers\' Sketchbooks'),(212,4,144,0,11,'https://www.youtube.com/embed/mw4V_8svaDc'),(213,4,97,0,11,'photographers-sketchbooks'),(214,4,117,0,11,NULL),(215,4,118,0,11,'2'),(216,4,119,0,11,'4'),(217,4,82,0,11,NULL),(218,4,84,0,11,NULL),(219,4,85,0,11,'/p/h/photographers_sketchbooks_1.png'),(220,4,86,0,11,'/p/h/photographers_sketchbooks_1.png'),(221,4,87,0,11,'/p/h/photographers_sketchbooks_1.png'),(222,4,103,0,11,NULL),(223,4,107,0,11,NULL),(224,4,109,0,11,'container1'),(225,4,122,0,11,NULL),(226,4,112,0,11,NULL),(227,4,113,0,11,NULL),(228,4,114,0,11,NULL),(229,4,98,1,11,'photographers-sketchbooks.html'),(230,4,98,0,11,'photographers-sketchbooks.html'),(231,4,71,0,12,'Stellaluna'),(232,4,144,0,12,'https://www.youtube.com/embed/mw4V_8svaDc'),(233,4,97,0,12,'stellaluna'),(234,4,117,0,12,NULL),(235,4,118,0,12,'2'),(236,4,119,0,12,'4'),(237,4,82,0,12,NULL),(238,4,84,0,12,NULL),(239,4,85,0,12,'/s/t/stellaluna_1.png'),(240,4,86,0,12,'/s/t/stellaluna_1.png'),(241,4,87,0,12,'/s/t/stellaluna_1.png'),(242,4,103,0,12,NULL),(243,4,107,0,12,NULL),(244,4,109,0,12,'container1'),(245,4,122,0,12,NULL),(246,4,112,0,12,NULL),(247,4,113,0,12,NULL),(248,4,114,0,12,NULL),(249,4,98,1,12,'stellaluna.html'),(250,4,98,0,12,'stellaluna.html'),(251,4,71,0,13,'The Children\'s Crusade A Novel'),(252,4,144,0,13,'https://www.youtube.com/embed/mw4V_8svaDc'),(253,4,97,0,13,'the-children-s-crusade-a-novel'),(254,4,117,0,13,NULL),(255,4,118,0,13,'2'),(256,4,119,0,13,'4'),(257,4,82,0,13,NULL),(258,4,84,0,13,NULL),(259,4,85,0,13,'/t/h/the_children_s_crusade_a_novel_6.png'),(260,4,86,0,13,'/t/h/the_children_s_crusade_a_novel_6.png'),(261,4,87,0,13,'/t/h/the_children_s_crusade_a_novel_6.png'),(262,4,103,0,13,NULL),(263,4,107,0,13,NULL),(264,4,109,0,13,'container1'),(265,4,122,0,13,NULL),(266,4,112,0,13,NULL),(267,4,113,0,13,NULL),(268,4,114,0,13,NULL),(269,4,98,1,13,'the-children-s-crusade-a-novel.html'),(270,4,98,0,13,'the-children-s-crusade-a-novel.html'),(271,4,71,0,14,'The Farmer and the Clown'),(272,4,144,0,14,'https://www.youtube.com/embed/mw4V_8svaDc'),(273,4,97,0,14,'the-farmer-and-the-clown'),(274,4,117,0,14,NULL),(275,4,118,0,14,'2'),(276,4,119,0,14,'4'),(277,4,82,0,14,NULL),(278,4,84,0,14,NULL),(279,4,85,0,14,'/t/h/the_farmer_and_the_clown_1.png'),(280,4,86,0,14,'/t/h/the_farmer_and_the_clown_1.png'),(281,4,87,0,14,'/t/h/the_farmer_and_the_clown_1.png'),(282,4,103,0,14,NULL),(283,4,107,0,14,NULL),(284,4,109,0,14,'container1'),(285,4,122,0,14,NULL),(286,4,112,0,14,NULL),(287,4,113,0,14,NULL),(288,4,114,0,14,NULL),(289,4,98,1,14,'the-farmer-and-the-clown.html'),(290,4,98,0,14,'the-farmer-and-the-clown.html'),(291,4,71,0,15,'The Middle School Rules of Brian Urlacher'),(292,4,144,0,15,'https://www.youtube.com/embed/mw4V_8svaDc'),(293,4,97,0,15,'the-middle-school-rules-of-brian-urlacher'),(294,4,117,0,15,NULL),(295,4,118,0,15,'2'),(296,4,119,0,15,'4'),(297,4,82,0,15,NULL),(298,4,84,0,15,NULL),(299,4,85,0,15,'/t/h/the_middle_school_rules_of_brian_urlacher_6.png'),(300,4,86,0,15,'/t/h/the_middle_school_rules_of_brian_urlacher_6.png'),(301,4,87,0,15,'/t/h/the_middle_school_rules_of_brian_urlacher_6.png'),(302,4,103,0,15,NULL),(303,4,107,0,15,NULL),(304,4,109,0,15,'container1'),(305,4,122,0,15,NULL),(306,4,112,0,15,NULL),(307,4,113,0,15,NULL),(308,4,114,0,15,NULL),(309,4,98,1,15,'the-middle-school-rules-of-brian-urlacher.html'),(310,4,98,0,15,'the-middle-school-rules-of-brian-urlacher.html'),(311,4,71,0,16,'The Pecan Man'),(312,4,144,0,16,'https://www.youtube.com/embed/mw4V_8svaDc'),(313,4,97,0,16,'the-pecan-man'),(314,4,117,0,16,NULL),(315,4,118,0,16,'2'),(316,4,119,0,16,'4'),(317,4,82,0,16,NULL),(318,4,84,0,16,NULL),(319,4,85,0,16,'/t/h/the_pecan_man_6.png'),(320,4,86,0,16,'/t/h/the_pecan_man_6.png'),(321,4,87,0,16,'/t/h/the_pecan_man_6.png'),(322,4,103,0,16,NULL),(323,4,107,0,16,NULL),(324,4,109,0,16,'container1'),(325,4,122,0,16,NULL),(326,4,112,0,16,NULL),(327,4,113,0,16,NULL),(328,4,114,0,16,NULL),(329,4,98,1,16,'the-pecan-man.html'),(330,4,98,0,16,'the-pecan-man.html'),(341,4,71,0,17,'The Rosie Project A Nove'),(342,4,144,0,17,'https://www.youtube.com/embed/mw4V_8svaDc'),(343,4,97,0,17,'the-rosie-project-a-nove'),(344,4,117,0,17,NULL),(345,4,118,0,17,'2'),(346,4,119,0,17,'4'),(347,4,82,0,17,NULL),(348,4,84,0,17,NULL),(349,4,85,0,17,'/t/h/the_rosie_project_a_novel_6.png'),(350,4,86,0,17,'/t/h/the_rosie_project_a_novel_6.png'),(351,4,87,0,17,'/t/h/the_rosie_project_a_novel_6.png'),(352,4,103,0,17,NULL),(353,4,107,0,17,NULL),(354,4,109,0,17,'container1'),(355,4,122,0,17,NULL),(356,4,112,0,17,NULL),(357,4,113,0,17,NULL),(358,4,114,0,17,NULL),(359,4,98,1,17,'the-rosie-project-a-nove.html'),(360,4,98,0,17,'the-rosie-project-a-nove.html'),(361,4,71,0,18,'The Sugar Queen '),(362,4,144,0,18,'https://www.youtube.com/embed/mw4V_8svaDc'),(363,4,97,0,18,'the-sugar-queen'),(364,4,117,0,18,NULL),(365,4,118,0,18,'2'),(366,4,119,0,18,'4'),(367,4,82,0,18,NULL),(368,4,84,0,18,NULL),(369,4,85,0,18,'/t/h/the_sugar_queen_random_house_reader_s_circle__6.png'),(370,4,86,0,18,'/t/h/the_sugar_queen_random_house_reader_s_circle__6.png'),(371,4,87,0,18,'/t/h/the_sugar_queen_random_house_reader_s_circle__6.png'),(372,4,103,0,18,NULL),(373,4,107,0,18,NULL),(374,4,109,0,18,'container1'),(375,4,122,0,18,NULL),(376,4,112,0,18,NULL),(377,4,113,0,18,NULL),(378,4,114,0,18,NULL),(379,4,98,1,18,'the-sugar-queen.html'),(380,4,98,0,18,'the-sugar-queen.html'),(381,4,71,0,19,'The Wes Anderson Collection The Grand Budapest Hotel'),(382,4,144,0,19,'https://www.youtube.com/embed/mw4V_8svaDc'),(383,4,97,0,19,'the-wes-anderson-collection-the-grand-budapest-hotel'),(384,4,117,0,19,NULL),(385,4,118,0,19,'2'),(386,4,119,0,19,'4'),(387,4,82,0,19,NULL),(388,4,84,0,19,NULL),(389,4,85,0,19,'/t/h/the_wes_anderson_collection_the_grand_budapest_hotel_1.png'),(390,4,86,0,19,'/t/h/the_wes_anderson_collection_the_grand_budapest_hotel_1.png'),(391,4,87,0,19,'/t/h/the_wes_anderson_collection_the_grand_budapest_hotel_1.png'),(392,4,103,0,19,NULL),(393,4,107,0,19,NULL),(394,4,109,0,19,'container1'),(395,4,122,0,19,NULL),(396,4,112,0,19,NULL),(397,4,113,0,19,NULL),(398,4,114,0,19,NULL),(399,4,98,1,19,'the-wes-anderson-collection-the-grand-budapest-hotel.html'),(400,4,98,0,19,'the-wes-anderson-collection-the-grand-budapest-hotel.html'),(401,4,71,0,20,'The Wes Anderson Collection'),(402,4,144,0,20,'https://www.youtube.com/embed/mw4V_8svaDc'),(403,4,97,0,20,'the-wes-anderson-collection'),(404,4,117,0,20,NULL),(405,4,118,0,20,'2'),(406,4,119,0,20,'4'),(407,4,82,0,20,NULL),(408,4,84,0,20,NULL),(409,4,85,0,20,'/t/h/the_wes_anderson_collection_3.png'),(410,4,86,0,20,'/t/h/the_wes_anderson_collection_3.png'),(411,4,87,0,20,'/t/h/the_wes_anderson_collection_3.png'),(412,4,103,0,20,NULL),(413,4,107,0,20,NULL),(414,4,109,0,20,'container1'),(415,4,122,0,20,NULL),(416,4,112,0,20,NULL),(417,4,113,0,20,NULL),(418,4,114,0,20,NULL),(419,4,98,1,20,'the-wes-anderson-collection.html'),(420,4,98,0,20,'the-wes-anderson-collection.html'); /*!40000 ALTER TABLE `catalog_product_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_flat_1` -- DROP TABLE IF EXISTS `catalog_product_flat_1`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_flat_1` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'entity_id', `attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'attribute_set_id', `type_id` varchar(32) NOT NULL default 'simple' COMMENT 'type_id', `cost` decimal(12,4) default NULL COMMENT 'cost', `created_at` timestamp NULL default NULL COMMENT 'created_at', `gift_message_available` smallint(6) default NULL COMMENT 'gift_message_available', `has_options` smallint(6) NOT NULL default '0' COMMENT 'has_options', `image_label` varchar(255) default NULL COMMENT 'image_label', `is_recurring` smallint(6) default NULL COMMENT 'is_recurring', `links_exist` int(11) default NULL COMMENT 'links_exist', `links_purchased_separately` int(11) default NULL COMMENT 'links_purchased_separately', `links_title` varchar(255) default NULL COMMENT 'links_title', `msrp` decimal(12,4) default NULL COMMENT 'msrp', `msrp_display_actual_price_type` varchar(255) default NULL COMMENT 'msrp_display_actual_price_type', `msrp_enabled` smallint(6) default NULL COMMENT 'msrp_enabled', `name` varchar(255) default NULL COMMENT 'name', `news_from_date` datetime default NULL COMMENT 'news_from_date', `news_to_date` datetime default NULL COMMENT 'news_to_date', `price` decimal(12,4) default NULL COMMENT 'price', `price_type` int(11) default NULL COMMENT 'price_type', `price_view` int(11) default NULL COMMENT 'price_view', `recurring_profile` text COMMENT 'recurring_profile', `required_options` smallint(5) unsigned NOT NULL default '0' COMMENT 'required_options', `shipment_type` int(11) default NULL COMMENT 'shipment_type', `short_description` text COMMENT 'short_description', `sku` varchar(64) default NULL COMMENT 'sku', `sku_type` int(11) default NULL COMMENT 'sku_type', `small_image` varchar(255) default NULL COMMENT 'small_image', `small_image_label` varchar(255) default NULL COMMENT 'small_image_label', `special_from_date` datetime default NULL COMMENT 'special_from_date', `special_price` decimal(12,4) default NULL COMMENT 'special_price', `special_to_date` datetime default NULL COMMENT 'special_to_date', `tax_class_id` int(10) unsigned default NULL COMMENT 'tax_class_id', `thumbnail` varchar(255) default NULL COMMENT 'thumbnail', `thumbnail_label` varchar(255) default NULL COMMENT 'thumbnail_label', `updated_at` timestamp NULL default NULL COMMENT 'updated_at', `url_key` varchar(255) default NULL COMMENT 'url_key', `url_path` varchar(255) default NULL COMMENT 'url_path', `visibility` smallint(5) unsigned default NULL COMMENT 'visibility', `weight` decimal(12,4) default NULL COMMENT 'weight', `weight_type` int(11) default NULL COMMENT 'weight_type', PRIMARY KEY (`entity_id`), KEY `IDX_CATALOG_PRODUCT_FLAT_1_TYPE_ID` (`type_id`), KEY `IDX_CATALOG_PRODUCT_FLAT_1_ATTRIBUTE_SET_ID` (`attribute_set_id`), KEY `IDX_CATALOG_PRODUCT_FLAT_1_NAME` (`name`), KEY `IDX_CATALOG_PRODUCT_FLAT_1_PRICE` (`price`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Flat (Store 1)'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_flat_1` -- LOCK TABLES `catalog_product_flat_1` WRITE; /*!40000 ALTER TABLE `catalog_product_flat_1` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_flat_1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav` -- DROP TABLE IF EXISTS `catalog_product_index_eav`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_eav` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', `value` int(10) unsigned NOT NULL COMMENT 'Value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_eav` -- LOCK TABLES `catalog_product_index_eav` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav` DISABLE KEYS */; INSERT INTO `catalog_product_index_eav` VALUES (1,81,1,9),(1,81,2,9),(1,81,3,9),(1,81,4,9),(1,121,1,2),(1,121,2,2),(1,121,3,2),(1,121,4,2),(2,81,1,10),(2,81,2,10),(2,81,3,10),(2,81,4,10),(2,121,1,2),(2,121,2,2),(2,121,3,2),(2,121,4,2),(3,81,1,11),(3,81,2,11),(3,81,3,11),(3,81,4,11),(3,121,1,2),(3,121,2,2),(3,121,3,2),(3,121,4,2),(4,81,1,12),(4,81,2,12),(4,81,3,12),(4,81,4,12),(4,121,1,2),(4,121,2,2),(4,121,3,2),(4,121,4,2),(5,81,1,13),(5,81,2,13),(5,81,3,13),(5,81,4,13),(5,121,1,2),(5,121,2,2),(5,121,3,2),(5,121,4,2),(6,81,1,14),(6,81,2,14),(6,81,3,14),(6,81,4,14),(6,121,1,2),(6,121,2,2),(6,121,3,2),(6,121,4,2),(7,81,1,15),(7,81,2,15),(7,81,3,15),(7,81,4,15),(7,121,1,2),(7,121,2,2),(7,121,3,2),(7,121,4,2),(8,81,1,16),(8,81,2,16),(8,81,3,16),(8,81,4,16),(8,121,1,2),(8,121,2,2),(8,121,3,2),(8,121,4,2),(9,81,1,17),(9,81,2,17),(9,81,3,17),(9,81,4,17),(9,121,1,2),(9,121,2,2),(9,121,3,2),(9,121,4,2),(10,81,1,18),(10,81,2,18),(10,81,3,18),(10,81,4,18),(10,121,1,2),(10,121,2,2),(10,121,3,2),(10,121,4,2),(11,81,1,9),(11,81,2,9),(11,81,3,9),(11,81,4,9),(11,121,1,2),(11,121,2,2),(11,121,3,2),(11,121,4,2),(12,81,1,10),(12,81,2,10),(12,81,3,10),(12,81,4,10),(12,121,1,2),(12,121,2,2),(12,121,3,2),(12,121,4,2),(13,81,1,11),(13,81,2,11),(13,81,3,11),(13,81,4,11),(13,121,1,2),(13,121,2,2),(13,121,3,2),(13,121,4,2),(14,81,1,12),(14,81,2,12),(14,81,3,12),(14,81,4,12),(14,121,1,2),(14,121,2,2),(14,121,3,2),(14,121,4,2),(15,81,1,13),(15,81,2,13),(15,81,3,13),(15,81,4,13),(15,121,1,2),(15,121,2,2),(15,121,3,2),(15,121,4,2),(16,81,1,14),(16,81,2,14),(16,81,3,14),(16,81,4,14),(16,121,1,2),(16,121,2,2),(16,121,3,2),(16,121,4,2),(17,81,1,15),(17,81,2,15),(17,81,3,15),(17,81,4,15),(17,121,1,2),(17,121,2,2),(17,121,3,2),(17,121,4,2),(18,81,1,16),(18,81,2,16),(18,81,3,16),(18,81,4,16),(18,121,1,2),(18,121,2,2),(18,121,3,2),(18,121,4,2),(19,81,1,17),(19,81,2,17),(19,81,3,17),(19,81,4,17),(19,121,1,2),(19,121,2,2),(19,121,3,2),(19,121,4,2),(20,81,1,18),(20,81,2,18),(20,81,3,18),(20,81,4,18),(20,121,1,2),(20,121,2,2),(20,121,3,2),(20,121,4,2); /*!40000 ALTER TABLE `catalog_product_index_eav` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_decimal` -- DROP TABLE IF EXISTS `catalog_product_index_eav_decimal`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_eav_decimal` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', `value` decimal(12,4) NOT NULL COMMENT 'Value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_eav_decimal` -- LOCK TABLES `catalog_product_index_eav_decimal` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_decimal_idx` -- DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_eav_decimal_idx` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', `value` decimal(12,4) NOT NULL COMMENT 'Value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_STORE_ID` (`store_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_VALUE` (`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_eav_decimal_idx` -- LOCK TABLES `catalog_product_index_eav_decimal_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_decimal_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_eav_decimal_tmp` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', `value` decimal(12,4) NOT NULL COMMENT 'Value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_STORE_ID` (`store_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_VALUE` (`value`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Temp Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_eav_decimal_tmp` -- LOCK TABLES `catalog_product_index_eav_decimal_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav_decimal_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_idx` -- DROP TABLE IF EXISTS `catalog_product_index_eav_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_eav_idx` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', `value` int(10) unsigned NOT NULL COMMENT 'Value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_IDX_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_IDX_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_IDX_STORE_ID` (`store_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_IDX_VALUE` (`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_eav_idx` -- LOCK TABLES `catalog_product_index_eav_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_idx` DISABLE KEYS */; INSERT INTO `catalog_product_index_eav_idx` VALUES (1,81,1,9),(1,81,2,9),(1,81,3,9),(1,81,4,9),(1,121,1,2),(1,121,2,2),(1,121,3,2),(1,121,4,2),(2,81,1,10),(2,81,2,10),(2,81,3,10),(2,81,4,10),(2,121,1,2),(2,121,2,2),(2,121,3,2),(2,121,4,2),(3,81,1,11),(3,81,2,11),(3,81,3,11),(3,81,4,11),(3,121,1,2),(3,121,2,2),(3,121,3,2),(3,121,4,2),(4,81,1,12),(4,81,2,12),(4,81,3,12),(4,81,4,12),(4,121,1,2),(4,121,2,2),(4,121,3,2),(4,121,4,2),(5,81,1,13),(5,81,2,13),(5,81,3,13),(5,81,4,13),(5,121,1,2),(5,121,2,2),(5,121,3,2),(5,121,4,2),(6,81,1,14),(6,81,2,14),(6,81,3,14),(6,81,4,14),(6,121,1,2),(6,121,2,2),(6,121,3,2),(6,121,4,2),(7,81,1,15),(7,81,2,15),(7,81,3,15),(7,81,4,15),(7,121,1,2),(7,121,2,2),(7,121,3,2),(7,121,4,2),(8,81,1,16),(8,81,2,16),(8,81,3,16),(8,81,4,16),(8,121,1,2),(8,121,2,2),(8,121,3,2),(8,121,4,2),(9,81,1,17),(9,81,2,17),(9,81,3,17),(9,81,4,17),(9,121,1,2),(9,121,2,2),(9,121,3,2),(9,121,4,2),(10,81,1,18),(10,81,2,18),(10,81,3,18),(10,81,4,18),(10,121,1,2),(10,121,2,2),(10,121,3,2),(10,121,4,2),(11,81,1,9),(11,81,2,9),(11,81,3,9),(11,81,4,9),(11,121,1,2),(11,121,2,2),(11,121,3,2),(11,121,4,2),(12,81,1,10),(12,81,2,10),(12,81,3,10),(12,81,4,10),(12,121,1,2),(12,121,2,2),(12,121,3,2),(12,121,4,2),(13,81,1,11),(13,81,2,11),(13,81,3,11),(13,81,4,11),(13,121,1,2),(13,121,2,2),(13,121,3,2),(13,121,4,2),(14,81,1,12),(14,81,2,12),(14,81,3,12),(14,81,4,12),(14,121,1,2),(14,121,2,2),(14,121,3,2),(14,121,4,2),(15,81,1,13),(15,81,2,13),(15,81,3,13),(15,81,4,13),(15,121,1,2),(15,121,2,2),(15,121,3,2),(15,121,4,2),(16,81,1,14),(16,81,2,14),(16,81,3,14),(16,81,4,14),(16,121,1,2),(16,121,2,2),(16,121,3,2),(16,121,4,2),(17,81,1,15),(17,81,2,15),(17,81,3,15),(17,81,4,15),(17,121,1,2),(17,121,2,2),(17,121,3,2),(17,121,4,2),(18,81,1,16),(18,81,2,16),(18,81,3,16),(18,81,4,16),(18,121,1,2),(18,121,2,2),(18,121,3,2),(18,121,4,2),(19,81,1,17),(19,81,2,17),(19,81,3,17),(19,81,4,17),(19,121,1,2),(19,121,2,2),(19,121,3,2),(19,121,4,2),(20,81,1,18),(20,81,2,18),(20,81,3,18),(20,81,4,18),(20,121,1,2),(20,121,2,2),(20,121,3,2),(20,121,4,2); /*!40000 ALTER TABLE `catalog_product_index_eav_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_eav_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_eav_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_eav_tmp` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', `value` int(10) unsigned NOT NULL COMMENT 'Value', PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_TMP_ENTITY_ID` (`entity_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_TMP_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_TMP_STORE_ID` (`store_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_EAV_TMP_VALUE` (`value`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Temp Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_eav_tmp` -- LOCK TABLES `catalog_product_index_eav_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_eav_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_eav_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_group_price` -- DROP TABLE IF EXISTS `catalog_product_index_group_price`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_group_price` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `price` decimal(12,4) default NULL COMMENT 'Min Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_GROUP_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_GROUP_PRICE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Group Price Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_group_price` -- LOCK TABLES `catalog_product_index_group_price` WRITE; /*!40000 ALTER TABLE `catalog_product_index_group_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_group_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price` -- DROP TABLE IF EXISTS `catalog_product_index_price`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class ID', `price` decimal(12,4) default NULL COMMENT 'Price', `final_price` decimal(12,4) default NULL COMMENT 'Final Price', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_WEBSITE_ID` (`website_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`), KEY `IDX_CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price` -- LOCK TABLES `catalog_product_index_price` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price` DISABLE KEYS */; INSERT INTO `catalog_product_index_price` VALUES (1,0,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(1,1,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(1,2,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(1,3,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(2,0,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(2,1,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(2,2,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(2,3,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(3,0,1,2,'30.0000','20.0000','20.0000','20.0000',NULL,NULL),(3,1,1,2,'30.0000','20.0000','20.0000','20.0000',NULL,NULL),(3,2,1,2,'30.0000','20.0000','20.0000','20.0000',NULL,NULL),(3,3,1,2,'30.0000','20.0000','20.0000','20.0000',NULL,NULL),(4,0,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(4,1,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(4,2,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(4,3,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(5,0,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(5,1,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(5,2,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(5,3,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(6,0,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(6,1,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(6,2,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(6,3,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(7,0,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(7,1,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(7,2,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(7,3,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(8,0,1,2,'45.0000','35.0000','35.0000','35.0000',NULL,NULL),(8,1,1,2,'45.0000','35.0000','35.0000','35.0000',NULL,NULL),(8,2,1,2,'45.0000','35.0000','35.0000','35.0000',NULL,NULL),(8,3,1,2,'45.0000','35.0000','35.0000','35.0000',NULL,NULL),(9,0,1,2,'25.9900','25.9900','25.9900','25.9900',NULL,NULL),(9,1,1,2,'25.9900','25.9900','25.9900','25.9900',NULL,NULL),(9,2,1,2,'25.9900','25.9900','25.9900','25.9900',NULL,NULL),(9,3,1,2,'25.9900','25.9900','25.9900','25.9900',NULL,NULL),(10,0,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(10,1,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(10,2,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(10,3,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(11,0,1,2,'30.0000','30.0000','30.0000','30.0000',NULL,NULL),(11,1,1,2,'30.0000','30.0000','30.0000','30.0000',NULL,NULL),(11,2,1,2,'30.0000','30.0000','30.0000','30.0000',NULL,NULL),(11,3,1,2,'30.0000','30.0000','30.0000','30.0000',NULL,NULL),(12,0,1,2,'20.0000','15.9900','15.9900','15.9900',NULL,NULL),(12,1,1,2,'20.0000','15.9900','15.9900','15.9900',NULL,NULL),(12,2,1,2,'20.0000','15.9900','15.9900','15.9900',NULL,NULL),(12,3,1,2,'20.0000','15.9900','15.9900','15.9900',NULL,NULL),(13,0,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(13,1,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(13,2,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(13,3,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(14,0,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(14,1,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(14,2,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(14,3,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(15,0,1,2,'17.9900','17.9900','17.9900','17.9900',NULL,NULL),(15,1,1,2,'17.9900','17.9900','17.9900','17.9900',NULL,NULL),(15,2,1,2,'17.9900','17.9900','17.9900','17.9900',NULL,NULL),(15,3,1,2,'17.9900','17.9900','17.9900','17.9900',NULL,NULL),(16,0,1,2,'25.0000','18.5000','18.5000','18.5000',NULL,NULL),(16,1,1,2,'25.0000','18.5000','18.5000','18.5000',NULL,NULL),(16,2,1,2,'25.0000','18.5000','18.5000','18.5000',NULL,NULL),(16,3,1,2,'25.0000','18.5000','18.5000','18.5000',NULL,NULL),(17,0,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(17,1,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(17,2,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(17,3,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(18,0,1,2,'26.9900','20.0000','20.0000','20.0000',NULL,NULL),(18,1,1,2,'26.9900','20.0000','20.0000','20.0000',NULL,NULL),(18,2,1,2,'26.9900','20.0000','20.0000','20.0000',NULL,NULL),(18,3,1,2,'26.9900','20.0000','20.0000','20.0000',NULL,NULL),(19,0,1,2,'27.9900','27.9900','27.9900','27.9900',NULL,NULL),(19,1,1,2,'27.9900','27.9900','27.9900','27.9900',NULL,NULL),(19,2,1,2,'27.9900','27.9900','27.9900','27.9900',NULL,NULL),(19,3,1,2,'27.9900','27.9900','27.9900','27.9900',NULL,NULL),(20,0,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(20,1,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(20,2,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(20,3,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL); /*!40000 ALTER TABLE `catalog_product_index_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_bundle_idx` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class Id', `price_type` smallint(5) unsigned NOT NULL COMMENT 'Price Type', `special_price` decimal(12,4) default NULL COMMENT 'Special Price', `tier_percent` decimal(12,4) default NULL COMMENT 'Tier Percent', `orig_price` decimal(12,4) default NULL COMMENT 'Orig Price', `price` decimal(12,4) default NULL COMMENT 'Price', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `base_tier` decimal(12,4) default NULL COMMENT 'Base Tier', `group_price` decimal(12,4) default NULL COMMENT 'Group price', `base_group_price` decimal(12,4) default NULL COMMENT 'Base Group Price', `group_price_percent` decimal(12,4) default NULL COMMENT 'Group Price Percent', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Idx'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_bundle_idx` -- LOCK TABLES `catalog_product_index_price_bundle_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_opt_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_opt_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_bundle_opt_idx` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Id', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `alt_price` decimal(12,4) default NULL COMMENT 'Alt Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `alt_tier_price` decimal(12,4) default NULL COMMENT 'Alt Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', `alt_group_price` decimal(12,4) default NULL COMMENT 'Alt Group Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Idx'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_bundle_opt_idx` -- LOCK TABLES `catalog_product_index_price_bundle_opt_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_opt_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_opt_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_bundle_opt_tmp` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Id', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `alt_price` decimal(12,4) default NULL COMMENT 'Alt Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `alt_tier_price` decimal(12,4) default NULL COMMENT 'Alt Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', `alt_group_price` decimal(12,4) default NULL COMMENT 'Alt Group Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Tmp'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_bundle_opt_tmp` -- LOCK TABLES `catalog_product_index_price_bundle_opt_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_opt_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_sel_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_sel_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_bundle_sel_idx` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Id', `selection_id` int(10) unsigned NOT NULL default '0' COMMENT 'Selection Id', `group_type` smallint(5) unsigned default '0' COMMENT 'Group Type', `is_required` smallint(5) unsigned default '0' COMMENT 'Is Required', `price` decimal(12,4) default NULL COMMENT 'Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Idx'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_bundle_sel_idx` -- LOCK TABLES `catalog_product_index_price_bundle_sel_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_sel_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_sel_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_bundle_sel_tmp` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Id', `selection_id` int(10) unsigned NOT NULL default '0' COMMENT 'Selection Id', `group_type` smallint(5) unsigned default '0' COMMENT 'Group Type', `is_required` smallint(5) unsigned default '0' COMMENT 'Is Required', `price` decimal(12,4) default NULL COMMENT 'Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Tmp'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_bundle_sel_tmp` -- LOCK TABLES `catalog_product_index_price_bundle_sel_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_sel_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_bundle_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_bundle_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_bundle_tmp` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class Id', `price_type` smallint(5) unsigned NOT NULL COMMENT 'Price Type', `special_price` decimal(12,4) default NULL COMMENT 'Special Price', `tier_percent` decimal(12,4) default NULL COMMENT 'Tier Percent', `orig_price` decimal(12,4) default NULL COMMENT 'Orig Price', `price` decimal(12,4) default NULL COMMENT 'Price', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `base_tier` decimal(12,4) default NULL COMMENT 'Base Tier', `group_price` decimal(12,4) default NULL COMMENT 'Group price', `base_group_price` decimal(12,4) default NULL COMMENT 'Base Group Price', `group_price_percent` decimal(12,4) default NULL COMMENT 'Group Price Percent', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Tmp'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_bundle_tmp` -- LOCK TABLES `catalog_product_index_price_bundle_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_bundle_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_cfg_opt_agr_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_agr_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_cfg_opt_agr_idx` ( `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID', `child_id` int(10) unsigned NOT NULL COMMENT 'Child ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `price` decimal(12,4) default NULL COMMENT 'Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Index '; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_cfg_opt_agr_idx` -- LOCK TABLES `catalog_product_index_price_cfg_opt_agr_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_cfg_opt_agr_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_agr_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_cfg_opt_agr_tmp` ( `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID', `child_id` int(10) unsigned NOT NULL COMMENT 'Child ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `price` decimal(12,4) default NULL COMMENT 'Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Temp T'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_cfg_opt_agr_tmp` -- LOCK TABLES `catalog_product_index_price_cfg_opt_agr_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_agr_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_cfg_opt_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_cfg_opt_idx` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_cfg_opt_idx` -- LOCK TABLES `catalog_product_index_price_cfg_opt_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_cfg_opt_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_cfg_opt_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_cfg_opt_tmp` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Temp Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_cfg_opt_tmp` -- LOCK TABLES `catalog_product_index_price_cfg_opt_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_cfg_opt_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_downlod_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_downlod_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_downlod_idx` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Minimum price', `max_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Maximum price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Indexer Table for price of downloadable products'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_downlod_idx` -- LOCK TABLES `catalog_product_index_price_downlod_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_downlod_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_downlod_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_downlod_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_downlod_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_downlod_tmp` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Minimum price', `max_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Maximum price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Temporary Indexer Table for price of downloadable products'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_downlod_tmp` -- LOCK TABLES `catalog_product_index_price_downlod_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_downlod_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_downlod_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_final_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_final_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_final_idx` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class ID', `orig_price` decimal(12,4) default NULL COMMENT 'Original Price', `price` decimal(12,4) default NULL COMMENT 'Price', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `base_tier` decimal(12,4) default NULL COMMENT 'Base Tier', `group_price` decimal(12,4) default NULL COMMENT 'Group price', `base_group_price` decimal(12,4) default NULL COMMENT 'Base Group Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_final_idx` -- LOCK TABLES `catalog_product_index_price_final_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_final_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_final_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_final_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_final_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_final_tmp` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class ID', `orig_price` decimal(12,4) default NULL COMMENT 'Original Price', `price` decimal(12,4) default NULL COMMENT 'Price', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `base_tier` decimal(12,4) default NULL COMMENT 'Base Tier', `group_price` decimal(12,4) default NULL COMMENT 'Group price', `base_group_price` decimal(12,4) default NULL COMMENT 'Base Group Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Temp Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_final_tmp` -- LOCK TABLES `catalog_product_index_price_final_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_final_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_final_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_idx` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class ID', `price` decimal(12,4) default NULL COMMENT 'Price', `final_price` decimal(12,4) default NULL COMMENT 'Final Price', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_IDX_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_IDX_WEBSITE_ID` (`website_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_IDX_MIN_PRICE` (`min_price`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_idx` -- LOCK TABLES `catalog_product_index_price_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_idx` DISABLE KEYS */; INSERT INTO `catalog_product_index_price_idx` VALUES (1,0,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(1,1,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(1,2,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(1,3,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(2,0,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(2,1,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(2,2,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(2,3,1,2,'15.0000','15.0000','15.0000','15.0000',NULL,NULL),(3,0,1,2,'30.0000','20.0000','20.0000','20.0000',NULL,NULL),(3,1,1,2,'30.0000','20.0000','20.0000','20.0000',NULL,NULL),(3,2,1,2,'30.0000','20.0000','20.0000','20.0000',NULL,NULL),(3,3,1,2,'30.0000','20.0000','20.0000','20.0000',NULL,NULL),(4,0,1,2,'35.0000','29.9900','29.9900','29.9900',NULL,NULL),(4,1,1,2,'35.0000','29.9900','29.9900','29.9900',NULL,NULL),(4,2,1,2,'35.0000','29.9900','29.9900','29.9900',NULL,NULL),(4,3,1,2,'35.0000','29.9900','29.9900','29.9900',NULL,NULL),(5,0,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(5,1,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(5,2,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(5,3,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(6,0,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(6,1,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(6,2,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(6,3,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(7,0,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(7,1,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(7,2,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(7,3,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(8,0,1,2,'45.0000','35.0000','35.0000','35.0000',NULL,NULL),(8,1,1,2,'45.0000','35.0000','35.0000','35.0000',NULL,NULL),(8,2,1,2,'45.0000','35.0000','35.0000','35.0000',NULL,NULL),(8,3,1,2,'45.0000','35.0000','35.0000','35.0000',NULL,NULL),(9,0,1,2,'25.9900','25.9900','25.9900','25.9900',NULL,NULL),(9,1,1,2,'25.9900','25.9900','25.9900','25.9900',NULL,NULL),(9,2,1,2,'25.9900','25.9900','25.9900','25.9900',NULL,NULL),(9,3,1,2,'25.9900','25.9900','25.9900','25.9900',NULL,NULL),(10,0,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(10,1,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(10,2,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(10,3,1,2,'45.0000','45.0000','45.0000','45.0000',NULL,NULL),(11,0,1,2,'30.0000','30.0000','30.0000','30.0000',NULL,NULL),(11,1,1,2,'30.0000','30.0000','30.0000','30.0000',NULL,NULL),(11,2,1,2,'30.0000','30.0000','30.0000','30.0000',NULL,NULL),(11,3,1,2,'30.0000','30.0000','30.0000','30.0000',NULL,NULL),(12,0,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(12,1,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(12,2,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(12,3,1,2,'20.0000','20.0000','20.0000','20.0000',NULL,NULL),(13,0,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(13,1,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(13,2,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(13,3,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(14,0,1,2,'15.0000','10.0000','10.0000','10.0000',NULL,NULL),(14,1,1,2,'15.0000','10.0000','10.0000','10.0000',NULL,NULL),(14,2,1,2,'15.0000','10.0000','10.0000','10.0000',NULL,NULL),(14,3,1,2,'15.0000','10.0000','10.0000','10.0000',NULL,NULL),(15,0,1,2,'17.9900','17.9900','17.9900','17.9900',NULL,NULL),(15,1,1,2,'17.9900','17.9900','17.9900','17.9900',NULL,NULL),(15,2,1,2,'17.9900','17.9900','17.9900','17.9900',NULL,NULL),(15,3,1,2,'17.9900','17.9900','17.9900','17.9900',NULL,NULL),(16,0,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(16,1,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(16,2,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(16,3,1,2,'25.0000','25.0000','25.0000','25.0000',NULL,NULL),(17,0,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(17,1,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(17,2,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(17,3,1,2,'35.0000','35.0000','35.0000','35.0000',NULL,NULL),(18,0,1,2,'26.9900','26.9900','26.9900','26.9900',NULL,NULL),(18,1,1,2,'26.9900','26.9900','26.9900','26.9900',NULL,NULL),(18,2,1,2,'26.9900','26.9900','26.9900','26.9900',NULL,NULL),(18,3,1,2,'26.9900','26.9900','26.9900','26.9900',NULL,NULL),(19,0,1,2,'27.9900','27.9900','27.9900','27.9900',NULL,NULL),(19,1,1,2,'27.9900','27.9900','27.9900','27.9900',NULL,NULL),(19,2,1,2,'27.9900','27.9900','27.9900','27.9900',NULL,NULL),(19,3,1,2,'27.9900','27.9900','27.9900','27.9900',NULL,NULL),(20,0,1,2,'35.0000','29.0000','29.0000','29.0000',NULL,NULL),(20,1,1,2,'35.0000','29.0000','29.0000','29.0000',NULL,NULL),(20,2,1,2,'35.0000','29.0000','29.0000','29.0000',NULL,NULL),(20,3,1,2,'35.0000','29.0000','29.0000','29.0000',NULL,NULL); /*!40000 ALTER TABLE `catalog_product_index_price_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_opt_agr_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_opt_agr_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_opt_agr_idx` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option ID', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_opt_agr_idx` -- LOCK TABLES `catalog_product_index_price_opt_agr_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_opt_agr_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_opt_agr_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_opt_agr_tmp` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option ID', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Temp Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_opt_agr_tmp` -- LOCK TABLES `catalog_product_index_price_opt_agr_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_opt_agr_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_opt_idx` -- DROP TABLE IF EXISTS `catalog_product_index_price_opt_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_opt_idx` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_opt_idx` -- LOCK TABLES `catalog_product_index_price_opt_idx` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_opt_idx` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_opt_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_opt_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_opt_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_opt_tmp` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Temp Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_opt_tmp` -- LOCK TABLES `catalog_product_index_price_opt_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_opt_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_opt_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price_tmp` -- DROP TABLE IF EXISTS `catalog_product_index_price_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_price_tmp` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `tax_class_id` smallint(5) unsigned default '0' COMMENT 'Tax Class ID', `price` decimal(12,4) default NULL COMMENT 'Price', `final_price` decimal(12,4) default NULL COMMENT 'Final Price', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', `max_price` decimal(12,4) default NULL COMMENT 'Max Price', `tier_price` decimal(12,4) default NULL COMMENT 'Tier Price', `group_price` decimal(12,4) default NULL COMMENT 'Group price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_TMP_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_TMP_WEBSITE_ID` (`website_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_PRICE_TMP_MIN_PRICE` (`min_price`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Temp Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_price_tmp` -- LOCK TABLES `catalog_product_index_price_tmp` WRITE; /*!40000 ALTER TABLE `catalog_product_index_price_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_price_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_tier_price` -- DROP TABLE IF EXISTS `catalog_product_index_tier_price`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_tier_price` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `min_price` decimal(12,4) default NULL COMMENT 'Min Price', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_TIER_PRICE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_tier_price` -- LOCK TABLES `catalog_product_index_tier_price` WRITE; /*!40000 ALTER TABLE `catalog_product_index_tier_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_index_tier_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_website` -- DROP TABLE IF EXISTS `catalog_product_index_website`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_index_website` ( `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', `website_date` date default NULL COMMENT 'Website Date', `rate` float default '1' COMMENT 'Rate', PRIMARY KEY (`website_id`), KEY `IDX_CATALOG_PRODUCT_INDEX_WEBSITE_WEBSITE_DATE` (`website_date`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Website Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_index_website` -- LOCK TABLES `catalog_product_index_website` WRITE; /*!40000 ALTER TABLE `catalog_product_index_website` DISABLE KEYS */; INSERT INTO `catalog_product_index_website` VALUES (1,'2015-04-08',1); /*!40000 ALTER TABLE `catalog_product_index_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link` -- DROP TABLE IF EXISTS `catalog_product_link`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_link` ( `link_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Link ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `linked_product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Linked Product ID', `link_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Link Type ID', PRIMARY KEY (`link_id`), UNIQUE KEY `UNQ_CAT_PRD_LNK_LNK_TYPE_ID_PRD_ID_LNKED_PRD_ID` (`link_type_id`,`product_id`,`linked_product_id`), KEY `IDX_CATALOG_PRODUCT_LINK_PRODUCT_ID` (`product_id`), KEY `IDX_CATALOG_PRODUCT_LINK_LINKED_PRODUCT_ID` (`linked_product_id`), KEY `IDX_CATALOG_PRODUCT_LINK_LINK_TYPE_ID` (`link_type_id`) ) ENGINE=MyISAM AUTO_INCREMENT=249 DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Product Linkage Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_link` -- LOCK TABLES `catalog_product_link` WRITE; /*!40000 ALTER TABLE `catalog_product_link` DISABLE KEYS */; INSERT INTO `catalog_product_link` VALUES (215,1,3,1),(216,1,4,1),(217,1,5,1),(218,1,6,1),(219,1,7,1),(220,1,13,1),(1,2,1,1),(229,2,8,1),(230,2,9,1),(231,2,10,1),(232,2,19,1),(233,2,20,1),(4,3,1,1),(5,3,2,1),(240,3,17,1),(241,3,18,1),(10,4,1,1),(11,4,2,1),(12,4,3,1),(246,4,16,1),(19,5,1,1),(20,5,2,1),(21,5,3,1),(22,5,4,1),(31,6,2,1),(32,6,3,1),(33,6,4,1),(34,6,5,1),(43,7,1,1),(44,7,3,1),(45,7,4,1),(46,7,5,1),(55,8,2,1),(56,8,3,1),(57,8,4,1),(58,8,5,1),(67,9,3,1),(68,9,4,1),(69,9,5,1),(70,9,6,1),(79,10,3,1),(80,10,4,1),(81,10,5,1),(82,10,6,1),(91,11,7,1),(92,11,8,1),(93,11,9,1),(94,11,10,1),(103,12,4,1),(104,12,5,1),(105,12,9,1),(106,12,10,1),(115,13,6,1),(116,13,7,1),(117,13,8,1),(118,13,9,1),(119,13,12,1),(128,14,7,1),(129,14,8,1),(130,14,9,1),(131,14,10,1),(140,15,8,1),(141,15,9,1),(142,15,10,1),(143,15,11,1),(152,16,9,1),(153,16,10,1),(154,16,11,1),(155,16,12,1),(164,17,9,1),(165,17,10,1),(166,17,11,1),(167,17,12,1),(168,17,13,1),(178,18,12,1),(179,18,13,1),(180,18,16,1),(181,18,17,1),(190,19,1,1),(191,19,10,1),(192,19,11,1),(193,19,12,1),(194,19,13,1),(203,20,16,1),(204,20,17,1),(205,20,18,1),(206,20,19,1),(221,1,12,4),(222,1,13,4),(223,1,14,4),(224,1,15,4),(2,2,1,4),(234,2,18,4),(235,2,19,4),(236,2,20,4),(6,3,1,4),(7,3,2,4),(242,3,11,4),(243,3,12,4),(13,4,1,4),(14,4,2,4),(15,4,3,4),(247,4,12,4),(23,5,1,4),(24,5,2,4),(25,5,3,4),(26,5,4,4),(35,6,2,4),(36,6,3,4),(37,6,4,4),(38,6,5,4),(47,7,3,4),(48,7,4,4),(49,7,5,4),(50,7,6,4),(59,8,2,4),(60,8,3,4),(61,8,6,4),(62,8,7,4),(71,9,3,4),(72,9,4,4),(73,9,5,4),(74,9,6,4),(83,10,6,4),(84,10,7,4),(85,10,8,4),(86,10,9,4),(95,11,1,4),(96,11,2,4),(97,11,3,4),(98,11,4,4),(107,12,2,4),(108,12,9,4),(109,12,10,4),(110,12,11,4),(120,13,3,4),(121,13,10,4),(122,13,11,4),(123,13,12,4),(132,14,7,4),(133,14,8,4),(134,14,9,4),(135,14,10,4),(144,15,3,4),(145,15,4,4),(146,15,5,4),(147,15,6,4),(156,16,5,4),(157,16,6,4),(158,16,7,4),(159,16,8,4),(169,17,7,4),(170,17,8,4),(171,17,12,4),(172,17,13,4),(173,17,14,4),(182,18,3,4),(183,18,9,4),(184,18,13,4),(185,18,17,4),(195,19,15,4),(196,19,16,4),(197,19,17,4),(198,19,18,4),(207,20,16,4),(208,20,17,4),(209,20,18,4),(210,20,19,4),(225,1,3,5),(226,1,4,5),(227,1,5,5),(228,1,18,5),(3,2,1,5),(237,2,11,5),(238,2,12,5),(239,2,13,5),(8,3,1,5),(9,3,2,5),(244,3,8,5),(245,3,9,5),(16,4,1,5),(17,4,2,5),(18,4,3,5),(248,4,17,5),(27,5,1,5),(28,5,2,5),(29,5,3,5),(30,5,4,5),(39,6,1,5),(40,6,3,5),(41,6,4,5),(42,6,5,5),(51,7,3,5),(52,7,4,5),(53,7,5,5),(54,7,6,5),(63,8,1,5),(64,8,3,5),(65,8,4,5),(66,8,5,5),(75,9,3,5),(76,9,4,5),(77,9,5,5),(78,9,6,5),(87,10,1,5),(88,10,5,5),(89,10,6,5),(90,10,8,5),(99,11,3,5),(100,11,4,5),(101,11,5,5),(102,11,6,5),(111,12,4,5),(112,12,5,5),(113,12,6,5),(114,12,7,5),(124,13,2,5),(125,13,4,5),(126,13,5,5),(127,13,6,5),(136,14,6,5),(137,14,7,5),(138,14,8,5),(139,14,9,5),(148,15,11,5),(149,15,12,5),(150,15,13,5),(151,15,14,5),(160,16,4,5),(161,16,5,5),(162,16,6,5),(163,16,7,5),(174,17,4,5),(175,17,5,5),(176,17,15,5),(177,17,16,5),(186,18,2,5),(187,18,3,5),(188,18,11,5),(189,18,12,5),(199,19,11,5),(200,19,12,5),(201,19,13,5),(202,19,14,5),(211,20,11,5),(212,20,12,5),(213,20,13,5),(214,20,14,5); /*!40000 ALTER TABLE `catalog_product_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link_attribute` -- DROP TABLE IF EXISTS `catalog_product_link_attribute`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_link_attribute` ( `product_link_attribute_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Product Link Attribute ID', `link_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Link Type ID', `product_link_attribute_code` varchar(32) default NULL COMMENT 'Product Link Attribute Code', `data_type` varchar(32) default NULL COMMENT 'Data Type', PRIMARY KEY (`product_link_attribute_id`), KEY `IDX_CATALOG_PRODUCT_LINK_ATTRIBUTE_LINK_TYPE_ID` (`link_type_id`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Attribute Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_link_attribute` -- LOCK TABLES `catalog_product_link_attribute` WRITE; /*!40000 ALTER TABLE `catalog_product_link_attribute` DISABLE KEYS */; INSERT INTO `catalog_product_link_attribute` VALUES (1,1,'position','int'),(2,3,'position','int'),(3,3,'qty','decimal'),(4,4,'position','int'),(5,5,'position','int'); /*!40000 ALTER TABLE `catalog_product_link_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link_attribute_decimal` -- DROP TABLE IF EXISTS `catalog_product_link_attribute_decimal`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_link_attribute_decimal` ( `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID', `product_link_attribute_id` smallint(5) unsigned default NULL COMMENT 'Product Link Attribute ID', `link_id` int(10) unsigned NOT NULL COMMENT 'Link ID', `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_PRD_LNK_ATTR_DEC_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`), KEY `IDX_CAT_PRD_LNK_ATTR_DEC_PRD_LNK_ATTR_ID` (`product_link_attribute_id`), KEY `IDX_CATALOG_PRODUCT_LINK_ATTRIBUTE_DECIMAL_LINK_ID` (`link_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Decimal Attribute Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_link_attribute_decimal` -- LOCK TABLES `catalog_product_link_attribute_decimal` WRITE; /*!40000 ALTER TABLE `catalog_product_link_attribute_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_link_attribute_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link_attribute_int` -- DROP TABLE IF EXISTS `catalog_product_link_attribute_int`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_link_attribute_int` ( `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID', `product_link_attribute_id` smallint(5) unsigned default NULL COMMENT 'Product Link Attribute ID', `link_id` int(10) unsigned NOT NULL COMMENT 'Link ID', `value` int(11) NOT NULL default '0' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_PRD_LNK_ATTR_INT_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`), KEY `IDX_CATALOG_PRODUCT_LINK_ATTRIBUTE_INT_PRODUCT_LINK_ATTRIBUTE_ID` (`product_link_attribute_id`), KEY `IDX_CATALOG_PRODUCT_LINK_ATTRIBUTE_INT_LINK_ID` (`link_id`) ) ENGINE=MyISAM AUTO_INCREMENT=267 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Integer Attribute Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_link_attribute_int` -- LOCK TABLES `catalog_product_link_attribute_int` WRITE; /*!40000 ALTER TABLE `catalog_product_link_attribute_int` DISABLE KEYS */; INSERT INTO `catalog_product_link_attribute_int` VALUES (1,1,1,0),(2,4,2,0),(3,5,3,0),(4,1,4,0),(5,1,5,0),(6,4,6,0),(7,4,7,0),(8,5,8,0),(9,5,9,0),(10,1,10,0),(11,1,11,0),(12,1,12,0),(13,4,13,0),(14,4,14,0),(15,4,15,0),(16,5,16,0),(17,5,17,0),(18,5,18,0),(19,1,19,0),(20,1,20,0),(21,1,21,0),(22,1,22,0),(23,4,23,0),(24,4,24,0),(25,4,25,0),(26,4,26,0),(27,5,27,0),(28,5,28,0),(29,5,29,0),(30,5,30,0),(31,1,31,0),(32,1,32,0),(33,1,33,0),(34,1,34,0),(35,4,35,0),(36,4,36,0),(37,4,37,0),(38,4,38,0),(39,5,39,0),(40,5,40,0),(41,5,41,0),(42,5,42,0),(43,1,43,0),(44,1,44,0),(45,1,45,0),(46,1,46,0),(47,4,47,0),(48,4,48,0),(49,4,49,0),(50,4,50,0),(51,5,51,0),(52,5,52,0),(53,5,53,0),(54,5,54,0),(55,1,55,0),(56,1,56,0),(57,1,57,0),(58,1,58,0),(59,4,59,0),(60,4,60,0),(61,4,61,0),(62,4,62,0),(63,5,63,0),(64,5,64,0),(65,5,65,0),(66,5,66,0),(67,1,67,0),(68,1,68,0),(69,1,69,0),(70,1,70,0),(71,4,71,0),(72,4,72,0),(73,4,73,0),(74,4,74,0),(75,5,75,0),(76,5,76,0),(77,5,77,0),(78,5,78,0),(79,1,79,0),(80,1,80,0),(81,1,81,0),(82,1,82,0),(83,4,83,0),(84,4,84,0),(85,4,85,0),(86,4,86,0),(87,5,87,0),(88,5,88,0),(89,5,89,0),(90,5,90,0),(91,1,91,0),(92,1,92,0),(93,1,93,0),(94,1,94,0),(95,4,95,0),(96,4,96,0),(97,4,97,0),(98,4,98,0),(99,5,99,0),(100,5,100,0),(101,5,101,0),(102,5,102,0),(103,1,103,0),(104,1,104,0),(105,1,105,0),(106,1,106,0),(107,4,107,0),(108,4,108,0),(109,4,109,0),(110,4,110,0),(111,5,111,0),(112,5,112,0),(113,5,113,0),(114,5,114,0),(115,1,115,0),(116,1,116,0),(117,1,117,0),(118,1,118,0),(119,1,119,0),(120,4,120,0),(121,4,121,0),(122,4,122,0),(123,4,123,0),(124,5,124,0),(125,5,125,0),(126,5,126,0),(127,5,127,0),(128,1,128,0),(129,1,129,0),(130,1,130,0),(131,1,131,0),(132,4,132,0),(133,4,133,0),(134,4,134,0),(135,4,135,0),(136,5,136,0),(137,5,137,0),(138,5,138,0),(139,5,139,0),(140,1,140,0),(141,1,141,0),(142,1,142,0),(143,1,143,0),(144,4,144,0),(145,4,145,0),(146,4,146,0),(147,4,147,0),(148,5,148,0),(149,5,149,0),(150,5,150,0),(151,5,151,0),(152,1,152,0),(153,1,153,0),(154,1,154,0),(155,1,155,0),(156,4,156,0),(157,4,157,0),(158,4,158,0),(159,4,159,0),(160,5,160,0),(161,5,161,0),(162,5,162,0),(163,5,163,0),(164,1,164,0),(165,1,165,0),(166,1,166,0),(167,1,167,0),(168,1,168,0),(169,4,169,0),(170,4,170,0),(171,4,171,0),(172,4,172,0),(173,4,173,0),(174,5,174,0),(175,5,175,0),(176,5,176,0),(177,5,177,0),(178,1,178,0),(179,1,179,0),(180,1,180,0),(181,1,181,0),(182,4,182,0),(183,4,183,0),(184,4,184,0),(185,4,185,0),(186,5,186,0),(187,5,187,0),(188,5,188,0),(189,5,189,0),(190,1,190,0),(191,1,191,0),(192,1,192,0),(193,1,193,0),(194,1,194,0),(195,4,195,0),(196,4,196,0),(197,4,197,0),(198,4,198,0),(199,5,199,0),(200,5,200,0),(201,5,201,0),(202,5,202,0),(203,1,203,0),(204,1,204,0),(205,1,205,0),(206,1,206,0),(207,4,207,0),(208,4,208,0),(209,4,209,0),(210,4,210,0),(211,5,211,0),(212,5,212,0),(213,5,213,0),(214,5,214,0),(215,1,215,0),(216,1,216,0),(217,1,217,0),(218,1,218,0),(219,1,219,0),(220,1,220,0),(221,4,221,0),(222,4,222,0),(223,4,223,0),(224,4,224,0),(225,5,225,0),(226,5,226,0),(227,5,227,0),(228,5,228,0),(230,1,229,0),(231,1,230,0),(232,1,231,0),(233,1,232,0),(234,1,233,0),(236,4,234,0),(237,4,235,0),(238,4,236,0),(240,5,237,0),(241,5,238,0),(242,5,239,0),(245,1,240,0),(246,1,241,0),(249,4,242,0),(250,4,243,0),(253,5,244,0),(254,5,245,0),(258,1,246,0),(262,4,247,0),(266,5,248,0); /*!40000 ALTER TABLE `catalog_product_link_attribute_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link_attribute_varchar` -- DROP TABLE IF EXISTS `catalog_product_link_attribute_varchar`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_link_attribute_varchar` ( `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID', `product_link_attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Product Link Attribute ID', `link_id` int(10) unsigned NOT NULL COMMENT 'Link ID', `value` varchar(255) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_PRD_LNK_ATTR_VCHR_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`), KEY `IDX_CAT_PRD_LNK_ATTR_VCHR_PRD_LNK_ATTR_ID` (`product_link_attribute_id`), KEY `IDX_CATALOG_PRODUCT_LINK_ATTRIBUTE_VARCHAR_LINK_ID` (`link_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Varchar Attribute Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_link_attribute_varchar` -- LOCK TABLES `catalog_product_link_attribute_varchar` WRITE; /*!40000 ALTER TABLE `catalog_product_link_attribute_varchar` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_link_attribute_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_link_type` -- DROP TABLE IF EXISTS `catalog_product_link_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_link_type` ( `link_type_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Link Type ID', `code` varchar(32) default NULL COMMENT 'Code', PRIMARY KEY (`link_type_id`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Type Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_link_type` -- LOCK TABLES `catalog_product_link_type` WRITE; /*!40000 ALTER TABLE `catalog_product_link_type` DISABLE KEYS */; INSERT INTO `catalog_product_link_type` VALUES (1,'relation'),(3,'super'),(4,'up_sell'),(5,'cross_sell'); /*!40000 ALTER TABLE `catalog_product_link_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option` -- DROP TABLE IF EXISTS `catalog_product_option`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_option` ( `option_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `type` varchar(50) default NULL COMMENT 'Type', `is_require` smallint(6) NOT NULL default '1' COMMENT 'Is Required', `sku` varchar(64) default NULL COMMENT 'SKU', `max_characters` int(10) unsigned default NULL COMMENT 'Max Characters', `file_extension` varchar(50) default NULL COMMENT 'File Extension', `image_size_x` smallint(5) unsigned default NULL COMMENT 'Image Size X', `image_size_y` smallint(5) unsigned default NULL COMMENT 'Image Size Y', `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort Order', PRIMARY KEY (`option_id`), KEY `IDX_CATALOG_PRODUCT_OPTION_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_option` -- LOCK TABLES `catalog_product_option` WRITE; /*!40000 ALTER TABLE `catalog_product_option` DISABLE KEYS */; INSERT INTO `catalog_product_option` VALUES (1,1,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(2,2,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(3,2,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(4,1,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(5,3,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(6,3,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(7,4,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(8,4,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(9,5,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(10,5,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(11,6,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(12,6,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(13,7,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(14,7,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(15,8,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(16,8,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(17,9,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(18,9,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(19,10,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(20,11,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(21,11,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(22,12,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(23,12,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(24,13,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(25,13,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(26,14,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(27,14,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(28,15,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(29,15,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(30,16,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(31,16,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(32,17,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(33,17,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(34,18,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(35,18,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(36,19,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(37,19,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(38,20,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0),(39,20,'drop_down',1,NULL,NULL,NULL,NULL,NULL,0); /*!40000 ALTER TABLE `catalog_product_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option_price` -- DROP TABLE IF EXISTS `catalog_product_option_price`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_option_price` ( `option_price_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Price ID', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Price', `price_type` varchar(7) NOT NULL default 'fixed' COMMENT 'Price Type', PRIMARY KEY (`option_price_id`), UNIQUE KEY `UNQ_CATALOG_PRODUCT_OPTION_PRICE_OPTION_ID_STORE_ID` (`option_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_OPTION_PRICE_OPTION_ID` (`option_id`), KEY `IDX_CATALOG_PRODUCT_OPTION_PRICE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Price Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_option_price` -- LOCK TABLES `catalog_product_option_price` WRITE; /*!40000 ALTER TABLE `catalog_product_option_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_option_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option_title` -- DROP TABLE IF EXISTS `catalog_product_option_title`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_option_title` ( `option_title_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Title ID', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `title` varchar(255) default NULL COMMENT 'Title', PRIMARY KEY (`option_title_id`), UNIQUE KEY `UNQ_CATALOG_PRODUCT_OPTION_TITLE_OPTION_ID_STORE_ID` (`option_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_OPTION_TITLE_OPTION_ID` (`option_id`), KEY `IDX_CATALOG_PRODUCT_OPTION_TITLE_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Title Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_option_title` -- LOCK TABLES `catalog_product_option_title` WRITE; /*!40000 ALTER TABLE `catalog_product_option_title` DISABLE KEYS */; INSERT INTO `catalog_product_option_title` VALUES (1,1,0,'Type'),(2,2,0,'Cover'),(3,3,0,'Type'),(4,4,0,'Cover'),(5,5,0,'Payment'),(6,6,0,'Type'),(7,7,0,'Payment'),(8,8,0,'Type'),(9,9,0,'Cover'),(10,10,0,'Type'),(11,11,0,'Payment'),(12,12,0,'Type'),(13,13,0,'Cover'),(14,14,0,'Type'),(15,15,0,'Payment'),(16,16,0,'Type'),(17,17,0,'Cover'),(18,18,0,'Type'),(19,19,0,'Type'),(20,20,0,'Payment'),(21,21,0,'Type'),(22,22,0,'Cover'),(23,23,0,'Type'),(24,24,0,'Cover'),(25,25,0,'Type'),(26,26,0,'Payment'),(27,27,0,'Type'),(28,28,0,'Cover'),(29,29,0,'Type'),(30,30,0,'Payment'),(31,31,0,'Type'),(32,32,0,'Payment'),(33,33,0,'Type'),(34,34,0,'Cover'),(35,35,0,'Color'),(36,36,0,'Cover'),(37,37,0,'Type'),(38,38,0,'Payment'),(39,39,0,'Type'); /*!40000 ALTER TABLE `catalog_product_option_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option_type_price` -- DROP TABLE IF EXISTS `catalog_product_option_type_price`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_option_type_price` ( `option_type_price_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Type Price ID', `option_type_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Type ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Price', `price_type` varchar(7) NOT NULL default 'fixed' COMMENT 'Price Type', PRIMARY KEY (`option_type_price_id`), UNIQUE KEY `UNQ_CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION_TYPE_ID` (`option_type_id`), KEY `IDX_CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=106 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Price Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_option_type_price` -- LOCK TABLES `catalog_product_option_type_price` WRITE; /*!40000 ALTER TABLE `catalog_product_option_type_price` DISABLE KEYS */; INSERT INTO `catalog_product_option_type_price` VALUES (1,1,0,'0.0000','fixed'),(2,2,0,'0.0000','fixed'),(3,3,0,'0.0000','fixed'),(4,4,0,'0.0000','fixed'),(5,5,0,'0.0000','fixed'),(6,6,0,'0.0000','fixed'),(7,7,0,'0.0000','fixed'),(8,8,0,'0.0000','fixed'),(9,9,0,'0.0000','fixed'),(10,10,0,'0.0000','fixed'),(11,11,0,'0.0000','fixed'),(12,12,0,'0.0000','fixed'),(13,13,0,'0.0000','fixed'),(14,14,0,'0.0000','fixed'),(15,15,0,'0.0000','fixed'),(16,16,0,'0.0000','fixed'),(17,17,0,'0.0000','fixed'),(18,18,0,'0.0000','fixed'),(19,19,0,'0.0000','fixed'),(20,20,0,'0.0000','fixed'),(21,21,0,'0.0000','fixed'),(22,22,0,'0.0000','fixed'),(23,23,0,'0.0000','fixed'),(24,24,0,'0.0000','fixed'),(25,25,0,'0.0000','fixed'),(26,26,0,'0.0000','fixed'),(27,27,0,'0.0000','fixed'),(28,28,0,'0.0000','fixed'),(29,29,0,'0.0000','fixed'),(30,30,0,'0.0000','fixed'),(31,31,0,'0.0000','fixed'),(32,32,0,'0.0000','fixed'),(33,33,0,'0.0000','fixed'),(34,34,0,'0.0000','fixed'),(35,35,0,'0.0000','fixed'),(36,36,0,'0.0000','fixed'),(37,37,0,'0.0000','fixed'),(38,38,0,'0.0000','fixed'),(39,39,0,'0.0000','fixed'),(40,40,0,'0.0000','fixed'),(41,41,0,'0.0000','fixed'),(42,42,0,'0.0000','fixed'),(43,43,0,'0.0000','fixed'),(44,44,0,'0.0000','fixed'),(45,45,0,'0.0000','fixed'),(46,46,0,'0.0000','fixed'),(47,47,0,'0.0000','fixed'),(48,48,0,'0.0000','fixed'),(49,49,0,'0.0000','fixed'),(50,50,0,'0.0000','fixed'),(51,51,0,'0.0000','fixed'),(52,52,0,'0.0000','fixed'),(53,53,0,'0.0000','fixed'),(54,54,0,'0.0000','fixed'),(55,55,0,'0.0000','fixed'),(56,56,0,'0.0000','fixed'),(57,57,0,'0.0000','fixed'),(58,58,0,'0.0000','fixed'),(59,59,0,'0.0000','fixed'),(60,60,0,'0.0000','fixed'),(61,61,0,'0.0000','fixed'),(62,62,0,'0.0000','fixed'),(63,63,0,'0.0000','fixed'),(64,64,0,'0.0000','fixed'),(65,65,0,'0.0000','fixed'),(66,66,0,'0.0000','fixed'),(67,67,0,'0.0000','fixed'),(68,68,0,'0.0000','fixed'),(69,69,0,'0.0000','fixed'),(70,70,0,'0.0000','fixed'),(71,71,0,'0.0000','fixed'),(72,72,0,'0.0000','fixed'),(73,73,0,'0.0000','fixed'),(74,74,0,'0.0000','fixed'),(75,75,0,'0.0000','fixed'),(76,76,0,'0.0000','fixed'),(77,77,0,'0.0000','fixed'),(78,78,0,'0.0000','fixed'),(79,79,0,'0.0000','fixed'),(80,80,0,'0.0000','fixed'),(81,81,0,'0.0000','fixed'),(82,82,0,'0.0000','fixed'),(83,83,0,'0.0000','fixed'),(84,84,0,'0.0000','fixed'),(85,85,0,'0.0000','fixed'),(86,86,0,'0.0000','fixed'),(87,87,0,'0.0000','fixed'),(88,88,0,'0.0000','fixed'),(89,89,0,'0.0000','fixed'),(90,90,0,'0.0000','fixed'),(91,91,0,'0.0000','fixed'),(92,92,0,'0.0000','fixed'),(93,93,0,'0.0000','fixed'),(94,94,0,'0.0000','fixed'),(95,95,0,'0.0000','fixed'),(96,96,0,'0.0000','fixed'),(97,97,0,'0.0000','fixed'),(98,98,0,'0.0000','fixed'),(99,99,0,'0.0000','fixed'),(100,100,0,'0.0000','fixed'),(101,101,0,'0.0000','fixed'),(102,102,0,'0.0000','fixed'),(103,103,0,'0.0000','fixed'),(104,104,0,'0.0000','fixed'),(105,105,0,'0.0000','fixed'); /*!40000 ALTER TABLE `catalog_product_option_type_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option_type_title` -- DROP TABLE IF EXISTS `catalog_product_option_type_title`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_option_type_title` ( `option_type_title_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Type Title ID', `option_type_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Type ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `title` varchar(255) default NULL COMMENT 'Title', PRIMARY KEY (`option_type_title_id`), UNIQUE KEY `UNQ_CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`), KEY `IDX_CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION_TYPE_ID` (`option_type_id`), KEY `IDX_CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=106 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Title Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_option_type_title` -- LOCK TABLES `catalog_product_option_type_title` WRITE; /*!40000 ALTER TABLE `catalog_product_option_type_title` DISABLE KEYS */; INSERT INTO `catalog_product_option_type_title` VALUES (1,1,0,'eBook'),(2,2,0,'Book'),(3,3,0,'Hardcover'),(4,4,0,'Paperback'),(5,5,0,'eBook'),(6,6,0,'Book'),(7,7,0,'Magazine'),(8,8,0,'Hardcover'),(9,9,0,'Paperback'),(10,10,0,'Visa'),(11,11,0,'PayPal'),(12,12,0,'Gift card'),(13,13,0,'Coupon codes'),(14,14,0,'eBook'),(15,15,0,'Book'),(16,16,0,'Visa'),(17,17,0,'PayPal'),(18,18,0,'Gift cards'),(19,19,0,'Coupon codes'),(20,20,0,'eBook'),(21,21,0,'Book'),(22,22,0,'Magazine'),(23,23,0,'Hardcover'),(24,24,0,'Paperback'),(25,25,0,'eBook'),(26,26,0,'Book'),(27,27,0,'Magazine'),(28,28,0,'Visa'),(29,29,0,'PayPal'),(30,30,0,'Gift cards'),(31,31,0,'Coupon codes'),(32,32,0,'eBook'),(33,33,0,'Book'),(34,34,0,'Magazine'),(35,35,0,'Hardcover'),(36,36,0,'Paperback'),(37,37,0,'eBook'),(38,38,0,'Book'),(39,39,0,'Magazine'),(40,40,0,'Visa'),(41,41,0,'PayPal'),(42,42,0,'Gift cards'),(43,43,0,'Coupon codes'),(44,44,0,'eBook'),(45,45,0,'Book'),(46,46,0,'Hardcover'),(47,47,0,'Paperback'),(48,48,0,'eBook'),(49,49,0,'Book'),(50,50,0,'eBook'),(51,51,0,'Book'),(52,52,0,'Magazine'),(53,53,0,'Visa'),(54,54,0,'PayPal'),(55,55,0,'Gift cards'),(56,56,0,'Coupon codes'),(57,57,0,'eBook'),(58,58,0,'Book'),(59,59,0,'Magazine'),(60,60,0,'Hardcover'),(61,61,0,'Paperback'),(62,62,0,'eBook'),(63,63,0,'Book'),(64,64,0,'Hardcover'),(65,65,0,'Paperback'),(66,66,0,'eBook'),(67,67,0,'Book'),(68,68,0,'Visa'),(69,69,0,'PayPal'),(70,70,0,'Gift card'),(71,71,0,'Coupon codes'),(72,72,0,'eBook'),(73,73,0,'Book'),(74,74,0,'Hardcover'),(75,75,0,'Paperback'),(76,76,0,'eBook'),(77,77,0,'Book'),(78,78,0,'Magazine'),(79,79,0,'Visa'),(80,80,0,'PayPal'),(81,81,0,'Gift card'),(82,82,0,'Coupon codes'),(83,83,0,'eBook'),(84,84,0,'Book'),(85,85,0,'Visa'),(86,86,0,'PayPal'),(87,87,0,'Gift card'),(88,88,0,'Coupon codes'),(89,89,0,'eBook'),(90,90,0,'Book'),(91,91,0,'Hardcover'),(92,92,0,'Paperback'),(93,93,0,'eBook'),(94,94,0,'Book'),(95,95,0,'Hardcover'),(96,96,0,'Paperback'),(97,97,0,'eBook'),(98,98,0,'Book'),(99,99,0,'Magazine'),(100,100,0,'Visa'),(101,101,0,'PayPal'),(102,102,0,'Gift card'),(103,103,0,'Coupon codes'),(104,104,0,'eBook'),(105,105,0,'Book'); /*!40000 ALTER TABLE `catalog_product_option_type_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_option_type_value` -- DROP TABLE IF EXISTS `catalog_product_option_type_value`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_option_type_value` ( `option_type_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Type ID', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option ID', `sku` varchar(64) default NULL COMMENT 'SKU', `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort Order', PRIMARY KEY (`option_type_id`), KEY `IDX_CATALOG_PRODUCT_OPTION_TYPE_VALUE_OPTION_ID` (`option_id`) ) ENGINE=MyISAM AUTO_INCREMENT=106 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Value Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_option_type_value` -- LOCK TABLES `catalog_product_option_type_value` WRITE; /*!40000 ALTER TABLE `catalog_product_option_type_value` DISABLE KEYS */; INSERT INTO `catalog_product_option_type_value` VALUES (1,1,NULL,0),(2,1,NULL,1),(3,2,NULL,0),(4,2,NULL,1),(5,3,NULL,0),(6,3,NULL,1),(7,3,NULL,2),(8,4,NULL,0),(9,4,NULL,1),(10,5,NULL,0),(11,5,NULL,1),(12,5,NULL,2),(13,5,NULL,3),(14,6,NULL,0),(15,6,NULL,1),(16,7,NULL,0),(17,7,NULL,1),(18,7,NULL,2),(19,7,NULL,3),(20,8,NULL,0),(21,8,NULL,1),(22,8,NULL,2),(23,9,NULL,0),(24,9,NULL,1),(25,10,NULL,0),(26,10,NULL,1),(27,10,NULL,2),(28,11,NULL,0),(29,11,NULL,1),(30,11,NULL,2),(31,11,NULL,3),(32,12,NULL,0),(33,12,NULL,1),(34,12,NULL,2),(35,13,NULL,0),(36,13,NULL,1),(37,14,NULL,0),(38,14,NULL,1),(39,14,NULL,2),(40,15,NULL,0),(41,15,NULL,1),(42,15,NULL,2),(43,15,NULL,3),(44,16,NULL,0),(45,16,NULL,1),(46,17,NULL,0),(47,17,NULL,1),(48,18,NULL,0),(49,18,NULL,1),(50,19,NULL,0),(51,19,NULL,1),(52,19,NULL,2),(53,20,NULL,0),(54,20,NULL,1),(55,20,NULL,2),(56,20,NULL,3),(57,21,NULL,0),(58,21,NULL,1),(59,21,NULL,2),(60,22,NULL,0),(61,22,NULL,1),(62,23,NULL,0),(63,23,NULL,1),(64,24,NULL,0),(65,24,NULL,1),(66,25,NULL,0),(67,25,NULL,1),(68,26,NULL,0),(69,26,NULL,1),(70,26,NULL,2),(71,26,NULL,3),(72,27,NULL,0),(73,27,NULL,1),(74,28,NULL,0),(75,28,NULL,1),(76,29,NULL,0),(77,29,NULL,1),(78,29,NULL,2),(79,30,NULL,0),(80,30,NULL,1),(81,30,NULL,2),(82,30,NULL,3),(83,31,NULL,0),(84,31,NULL,1),(85,32,NULL,0),(86,32,NULL,1),(87,32,NULL,2),(88,32,NULL,3),(89,33,NULL,0),(90,33,NULL,1),(91,34,NULL,0),(92,34,NULL,1),(93,35,NULL,0),(94,35,NULL,1),(95,36,NULL,0),(96,36,NULL,1),(97,37,NULL,0),(98,37,NULL,1),(99,37,NULL,2),(100,38,NULL,0),(101,38,NULL,1),(102,38,NULL,2),(103,38,NULL,3),(104,39,NULL,0),(105,39,NULL,1); /*!40000 ALTER TABLE `catalog_product_option_type_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_relation` -- DROP TABLE IF EXISTS `catalog_product_relation`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_relation` ( `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID', `child_id` int(10) unsigned NOT NULL COMMENT 'Child ID', PRIMARY KEY (`parent_id`,`child_id`), KEY `IDX_CATALOG_PRODUCT_RELATION_CHILD_ID` (`child_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Relation Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_relation` -- LOCK TABLES `catalog_product_relation` WRITE; /*!40000 ALTER TABLE `catalog_product_relation` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_relation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_super_attribute` -- DROP TABLE IF EXISTS `catalog_product_super_attribute`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_super_attribute` ( `product_super_attribute_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Product Super Attribute ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute ID', `position` smallint(5) unsigned NOT NULL default '0' COMMENT 'Position', PRIMARY KEY (`product_super_attribute_id`), UNIQUE KEY `UNQ_CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRODUCT_ID_ATTRIBUTE_ID` (`product_id`,`attribute_id`), KEY `IDX_CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_super_attribute` -- LOCK TABLES `catalog_product_super_attribute` WRITE; /*!40000 ALTER TABLE `catalog_product_super_attribute` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_super_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_super_attribute_label` -- DROP TABLE IF EXISTS `catalog_product_super_attribute_label`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_super_attribute_label` ( `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID', `product_super_attribute_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product Super Attribute ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `use_default` smallint(5) unsigned default '0' COMMENT 'Use Default Value', `value` varchar(255) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_PRD_SPR_ATTR_LBL_PRD_SPR_ATTR_ID_STORE_ID` (`product_super_attribute_id`,`store_id`), KEY `IDX_CAT_PRD_SPR_ATTR_LBL_PRD_SPR_ATTR_ID` (`product_super_attribute_id`), KEY `IDX_CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Label Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_super_attribute_label` -- LOCK TABLES `catalog_product_super_attribute_label` WRITE; /*!40000 ALTER TABLE `catalog_product_super_attribute_label` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_super_attribute_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_super_attribute_pricing` -- DROP TABLE IF EXISTS `catalog_product_super_attribute_pricing`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_super_attribute_pricing` ( `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value ID', `product_super_attribute_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product Super Attribute ID', `value_index` varchar(255) default NULL COMMENT 'Value Index', `is_percent` smallint(5) unsigned default '0' COMMENT 'Is Percent', `pricing_value` decimal(12,4) default NULL COMMENT 'Pricing Value', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CAT_PRD_SPR_ATTR_PRICING_PRD_SPR_ATTR_ID_VAL_IDX_WS_ID` (`product_super_attribute_id`,`value_index`,`website_id`), KEY `IDX_CAT_PRD_SPR_ATTR_PRICING_PRD_SPR_ATTR_ID` (`product_super_attribute_id`), KEY `IDX_CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRICING_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Pricing Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_super_attribute_pricing` -- LOCK TABLES `catalog_product_super_attribute_pricing` WRITE; /*!40000 ALTER TABLE `catalog_product_super_attribute_pricing` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_super_attribute_pricing` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_super_link` -- DROP TABLE IF EXISTS `catalog_product_super_link`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_super_link` ( `link_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Link ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent ID', PRIMARY KEY (`link_id`), UNIQUE KEY `UNQ_CATALOG_PRODUCT_SUPER_LINK_PRODUCT_ID_PARENT_ID` (`product_id`,`parent_id`), KEY `IDX_CATALOG_PRODUCT_SUPER_LINK_PARENT_ID` (`parent_id`), KEY `IDX_CATALOG_PRODUCT_SUPER_LINK_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Link Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_super_link` -- LOCK TABLES `catalog_product_super_link` WRITE; /*!40000 ALTER TABLE `catalog_product_super_link` DISABLE KEYS */; /*!40000 ALTER TABLE `catalog_product_super_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_website` -- DROP TABLE IF EXISTS `catalog_product_website`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalog_product_website` ( `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID', PRIMARY KEY (`product_id`,`website_id`), KEY `IDX_CATALOG_PRODUCT_WEBSITE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Website Linkage Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalog_product_website` -- LOCK TABLES `catalog_product_website` WRITE; /*!40000 ALTER TABLE `catalog_product_website` DISABLE KEYS */; INSERT INTO `catalog_product_website` VALUES (1,1),(2,1),(3,1),(4,1),(5,1),(6,1),(7,1),(8,1),(9,1),(10,1),(11,1),(12,1),(13,1),(14,1),(15,1),(16,1),(17,1),(18,1),(19,1),(20,1); /*!40000 ALTER TABLE `catalog_product_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock` -- DROP TABLE IF EXISTS `cataloginventory_stock`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cataloginventory_stock` ( `stock_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Stock Id', `stock_name` varchar(255) default NULL COMMENT 'Stock Name', PRIMARY KEY (`stock_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `cataloginventory_stock` -- LOCK TABLES `cataloginventory_stock` WRITE; /*!40000 ALTER TABLE `cataloginventory_stock` DISABLE KEYS */; INSERT INTO `cataloginventory_stock` VALUES (1,'Default'); /*!40000 ALTER TABLE `cataloginventory_stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock_item` -- DROP TABLE IF EXISTS `cataloginventory_stock_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cataloginventory_stock_item` ( `item_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Item Id', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product Id', `stock_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Stock Id', `qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty', `min_qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Min Qty', `use_config_min_qty` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Min Qty', `is_qty_decimal` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Qty Decimal', `backorders` smallint(5) unsigned NOT NULL default '0' COMMENT 'Backorders', `use_config_backorders` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Backorders', `min_sale_qty` decimal(12,4) NOT NULL default '1.0000' COMMENT 'Min Sale Qty', `use_config_min_sale_qty` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Min Sale Qty', `max_sale_qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Max Sale Qty', `use_config_max_sale_qty` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Max Sale Qty', `is_in_stock` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is In Stock', `low_stock_date` timestamp NULL default NULL COMMENT 'Low Stock Date', `notify_stock_qty` decimal(12,4) default NULL COMMENT 'Notify Stock Qty', `use_config_notify_stock_qty` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Notify Stock Qty', `manage_stock` smallint(5) unsigned NOT NULL default '0' COMMENT 'Manage Stock', `use_config_manage_stock` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Manage Stock', `stock_status_changed_auto` smallint(5) unsigned NOT NULL default '0' COMMENT 'Stock Status Changed Automatically', `use_config_qty_increments` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Qty Increments', `qty_increments` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty Increments', `use_config_enable_qty_inc` smallint(5) unsigned NOT NULL default '1' COMMENT 'Use Config Enable Qty Increments', `enable_qty_increments` smallint(5) unsigned NOT NULL default '0' COMMENT 'Enable Qty Increments', `is_decimal_divided` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Divided into Multiple Boxes for Shipping', PRIMARY KEY (`item_id`), UNIQUE KEY `UNQ_CATALOGINVENTORY_STOCK_ITEM_PRODUCT_ID_STOCK_ID` (`product_id`,`stock_id`), KEY `IDX_CATALOGINVENTORY_STOCK_ITEM_PRODUCT_ID` (`product_id`), KEY `IDX_CATALOGINVENTORY_STOCK_ITEM_STOCK_ID` (`stock_id`) ) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Item'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `cataloginventory_stock_item` -- LOCK TABLES `cataloginventory_stock_item` WRITE; /*!40000 ALTER TABLE `cataloginventory_stock_item` DISABLE KEYS */; INSERT INTO `cataloginventory_stock_item` VALUES (1,1,1,'600.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(2,2,1,'700.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(3,3,1,'800.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(4,4,1,'700.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(5,5,1,'800.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(6,6,1,'600.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(7,7,1,'400.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(8,8,1,'800.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(9,9,1,'700.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(10,10,1,'800.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(11,11,1,'700.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(12,12,1,'400.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(13,13,1,'500.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(14,14,1,'400.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(15,15,1,'500.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(16,16,1,'700.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(17,17,1,'600.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(18,18,1,'700.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(19,19,1,'500.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0),(20,20,1,'400.0000','0.0000',1,0,0,1,'1.0000',1,'0.0000',1,1,NULL,NULL,1,0,1,0,1,'0.0000',1,0,0); /*!40000 ALTER TABLE `cataloginventory_stock_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock_status` -- DROP TABLE IF EXISTS `cataloginventory_stock_status`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cataloginventory_stock_status` ( `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id', `qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty', `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status', PRIMARY KEY (`product_id`,`website_id`,`stock_id`), KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`), KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `cataloginventory_stock_status` -- LOCK TABLES `cataloginventory_stock_status` WRITE; /*!40000 ALTER TABLE `cataloginventory_stock_status` DISABLE KEYS */; INSERT INTO `cataloginventory_stock_status` VALUES (1,1,1,'600.0000',1),(2,1,1,'700.0000',1),(3,1,1,'800.0000',1),(4,1,1,'700.0000',1),(5,1,1,'800.0000',1),(6,1,1,'600.0000',1),(7,1,1,'400.0000',1),(8,1,1,'800.0000',1),(9,1,1,'700.0000',1),(10,1,1,'800.0000',1),(11,1,1,'700.0000',1),(12,1,1,'400.0000',1),(13,1,1,'500.0000',1),(14,1,1,'400.0000',1),(15,1,1,'500.0000',1),(16,1,1,'700.0000',1),(17,1,1,'600.0000',1),(18,1,1,'700.0000',1),(19,1,1,'500.0000',1),(20,1,1,'400.0000',1); /*!40000 ALTER TABLE `cataloginventory_stock_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock_status_idx` -- DROP TABLE IF EXISTS `cataloginventory_stock_status_idx`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cataloginventory_stock_status_idx` ( `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id', `qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty', `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status', PRIMARY KEY (`product_id`,`website_id`,`stock_id`), KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_IDX_STOCK_ID` (`stock_id`), KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_IDX_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Idx'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `cataloginventory_stock_status_idx` -- LOCK TABLES `cataloginventory_stock_status_idx` WRITE; /*!40000 ALTER TABLE `cataloginventory_stock_status_idx` DISABLE KEYS */; INSERT INTO `cataloginventory_stock_status_idx` VALUES (1,1,1,'600.0000',1),(2,1,1,'700.0000',1),(3,1,1,'800.0000',1),(4,1,1,'700.0000',1),(5,1,1,'800.0000',1),(6,1,1,'600.0000',1),(7,1,1,'400.0000',1),(8,1,1,'800.0000',1),(9,1,1,'700.0000',1),(10,1,1,'800.0000',1),(11,1,1,'700.0000',1),(12,1,1,'400.0000',1),(13,1,1,'500.0000',1),(14,1,1,'400.0000',1),(15,1,1,'500.0000',1),(16,1,1,'700.0000',1),(17,1,1,'600.0000',1),(18,1,1,'700.0000',1),(19,1,1,'500.0000',1),(20,1,1,'400.0000',1); /*!40000 ALTER TABLE `cataloginventory_stock_status_idx` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock_status_tmp` -- DROP TABLE IF EXISTS `cataloginventory_stock_status_tmp`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cataloginventory_stock_status_tmp` ( `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `stock_id` smallint(5) unsigned NOT NULL COMMENT 'Stock Id', `qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty', `stock_status` smallint(5) unsigned NOT NULL COMMENT 'Stock Status', PRIMARY KEY (`product_id`,`website_id`,`stock_id`), KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_TMP_STOCK_ID` (`stock_id`), KEY `IDX_CATALOGINVENTORY_STOCK_STATUS_TMP_WEBSITE_ID` (`website_id`) ) ENGINE=MEMORY DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Tmp'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `cataloginventory_stock_status_tmp` -- LOCK TABLES `cataloginventory_stock_status_tmp` WRITE; /*!40000 ALTER TABLE `cataloginventory_stock_status_tmp` DISABLE KEYS */; /*!40000 ALTER TABLE `cataloginventory_stock_status_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule` -- DROP TABLE IF EXISTS `catalogrule`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalogrule` ( `rule_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rule Id', `name` varchar(255) default NULL COMMENT 'Name', `description` text COMMENT 'Description', `from_date` date default NULL COMMENT 'From Date', `to_date` date default NULL COMMENT 'To Date', `is_active` smallint(6) NOT NULL default '0' COMMENT 'Is Active', `conditions_serialized` mediumtext COMMENT 'Conditions Serialized', `actions_serialized` mediumtext COMMENT 'Actions Serialized', `stop_rules_processing` smallint(6) NOT NULL default '1' COMMENT 'Stop Rules Processing', `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort Order', `simple_action` varchar(32) default NULL COMMENT 'Simple Action', `discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount', `sub_is_enable` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Rule Enable For Subitems', `sub_simple_action` varchar(32) default NULL COMMENT 'Simple Action For Subitems', `sub_discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount For Subitems', PRIMARY KEY (`rule_id`), KEY `IDX_CATALOGRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='CatalogRule'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalogrule` -- LOCK TABLES `catalogrule` WRITE; /*!40000 ALTER TABLE `catalogrule` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_affected_product` -- DROP TABLE IF EXISTS `catalogrule_affected_product`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalogrule_affected_product` ( `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id', PRIMARY KEY (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='CatalogRule Affected Product'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalogrule_affected_product` -- LOCK TABLES `catalogrule_affected_product` WRITE; /*!40000 ALTER TABLE `catalogrule_affected_product` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_affected_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_customer_group` -- DROP TABLE IF EXISTS `catalogrule_customer_group`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalogrule_customer_group` ( `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', PRIMARY KEY (`rule_id`,`customer_group_id`), KEY `IDX_CATALOGRULE_CUSTOMER_GROUP_RULE_ID` (`rule_id`), KEY `IDX_CATALOGRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Rules To Customer Groups Relations'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalogrule_customer_group` -- LOCK TABLES `catalogrule_customer_group` WRITE; /*!40000 ALTER TABLE `catalogrule_customer_group` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_customer_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_group_website` -- DROP TABLE IF EXISTS `catalogrule_group_website`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalogrule_group_website` ( `rule_id` int(10) unsigned NOT NULL default '0' COMMENT 'Rule Id', `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group Id', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website Id', PRIMARY KEY (`rule_id`,`customer_group_id`,`website_id`), KEY `IDX_CATALOGRULE_GROUP_WEBSITE_RULE_ID` (`rule_id`), KEY `IDX_CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `IDX_CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='CatalogRule Group Website'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalogrule_group_website` -- LOCK TABLES `catalogrule_group_website` WRITE; /*!40000 ALTER TABLE `catalogrule_group_website` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_group_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_product` -- DROP TABLE IF EXISTS `catalogrule_product`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalogrule_product` ( `rule_product_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rule Product Id', `rule_id` int(10) unsigned NOT NULL default '0' COMMENT 'Rule Id', `from_time` int(10) unsigned NOT NULL default '0' COMMENT 'From Time', `to_time` int(10) unsigned NOT NULL default '0' COMMENT 'To time', `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group Id', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product Id', `action_operator` varchar(10) default 'to_fixed' COMMENT 'Action Operator', `action_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Action Amount', `action_stop` smallint(6) NOT NULL default '0' COMMENT 'Action Stop', `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort Order', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `sub_simple_action` varchar(32) default NULL COMMENT 'Simple Action For Subitems', `sub_discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount For Subitems', PRIMARY KEY (`rule_product_id`), UNIQUE KEY `EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`), KEY `IDX_CATALOGRULE_PRODUCT_RULE_ID` (`rule_id`), KEY `IDX_CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `IDX_CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`), KEY `IDX_CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`), KEY `IDX_CATALOGRULE_PRODUCT_TO_TIME` (`to_time`), KEY `IDX_CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalogrule_product` -- LOCK TABLES `catalogrule_product` WRITE; /*!40000 ALTER TABLE `catalogrule_product` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_product_price` -- DROP TABLE IF EXISTS `catalogrule_product_price`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalogrule_product_price` ( `rule_product_price_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rule Product PriceId', `rule_date` date NOT NULL COMMENT 'Rule Date', `customer_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Group Id', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product Id', `rule_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Rule Price', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `latest_start_date` date default NULL COMMENT 'Latest StartDate', `earliest_end_date` date default NULL COMMENT 'Earliest EndDate', PRIMARY KEY (`rule_product_price_id`), UNIQUE KEY `UNQ_CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`), KEY `IDX_CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `IDX_CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`), KEY `IDX_CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product Price'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalogrule_product_price` -- LOCK TABLES `catalogrule_product_price` WRITE; /*!40000 ALTER TABLE `catalogrule_product_price` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_product_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogrule_website` -- DROP TABLE IF EXISTS `catalogrule_website`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalogrule_website` ( `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', PRIMARY KEY (`rule_id`,`website_id`), KEY `IDX_CATALOGRULE_WEBSITE_RULE_ID` (`rule_id`), KEY `IDX_CATALOGRULE_WEBSITE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog Rules To Websites Relations'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalogrule_website` -- LOCK TABLES `catalogrule_website` WRITE; /*!40000 ALTER TABLE `catalogrule_website` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogrule_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogsearch_fulltext` -- DROP TABLE IF EXISTS `catalogsearch_fulltext`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalogsearch_fulltext` ( `fulltext_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity ID', `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', `data_index` longtext COMMENT 'Data index', PRIMARY KEY (`fulltext_id`), UNIQUE KEY `UNQ_CATALOGSEARCH_FULLTEXT_PRODUCT_ID_STORE_ID` (`product_id`,`store_id`), FULLTEXT KEY `FTI_CATALOGSEARCH_FULLTEXT_DATA_INDEX` (`data_index`) ) ENGINE=MyISAM AUTO_INCREMENT=445 DEFAULT CHARSET=utf8 COMMENT='Catalog search result table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalogsearch_fulltext` -- LOCK TABLES `catalogsearch_fulltext` WRITE; /*!40000 ALTER TABLE `catalogsearch_fulltext` DISABLE KEYS */; INSERT INTO `catalogsearch_fulltext` VALUES (381,18,1,'#18|Oxford University|Taxable Goods|The Sugar Queen|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|26.99|1'),(299,19,1,'#19|Wiley|Taxable Goods|The Wes Anderson Collection The Grand Budapest Hotel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|27.99|1'),(382,18,2,'#18|Oxford University|Taxable Goods|The Sugar Queen|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|26.99|1'),(319,19,2,'#19|Wiley|Taxable Goods|The Wes Anderson Collection The Grand Budapest Hotel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|27.99|1'),(383,18,3,'#18|Oxford University|Taxable Goods|The Sugar Queen|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|26.99|1'),(339,19,3,'#19|Wiley|Taxable Goods|The Wes Anderson Collection The Grand Budapest Hotel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|27.99|1'),(384,18,4,'#18|Oxford University|Taxable Goods|The Sugar Queen|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|26.99|1'),(359,19,4,'#19|Wiley|Taxable Goods|The Wes Anderson Collection The Grand Budapest Hotel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|27.99|1'),(417,17,1,'#17|Informa|Taxable Goods|The Rosie Project A Nove|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(418,17,2,'#17|Informa|Taxable Goods|The Rosie Project A Nove|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(419,17,3,'#17|Informa|Taxable Goods|The Rosie Project A Nove|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(420,17,4,'#17|Informa|Taxable Goods|The Rosie Project A Nove|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(393,16,1,'#16|Reader’s Digest|Taxable Goods|The Pecan Man|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(394,16,2,'#16|Reader’s Digest|Taxable Goods|The Pecan Man|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(395,16,3,'#16|Reader’s Digest|Taxable Goods|The Pecan Man|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(396,16,4,'#16|Reader’s Digest|Taxable Goods|The Pecan Man|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(385,14,1,'#14|Esquire|Taxable Goods|The Farmer and the Clown|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|15|1'),(295,15,1,'#15|Pearson|Taxable Goods|The Middle School Rules of Brian Urlacher|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|17.99|1'),(386,14,2,'#14|Esquire|Taxable Goods|The Farmer and the Clown|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|15|1'),(315,15,2,'#15|Pearson|Taxable Goods|The Middle School Rules of Brian Urlacher|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|17.99|1'),(387,14,3,'#14|Esquire|Taxable Goods|The Farmer and the Clown|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|15|1'),(335,15,3,'#15|Pearson|Taxable Goods|The Middle School Rules of Brian Urlacher|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|17.99|1'),(388,14,4,'#14|Esquire|Taxable Goods|The Farmer and the Clown|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|15|1'),(355,15,4,'#15|Pearson|Taxable Goods|The Middle School Rules of Brian Urlacher|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|17.99|1'),(441,13,1,'#13|Time|Taxable Goods|The Children\'s Crusade A Novel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(442,13,2,'#13|Time|Taxable Goods|The Children\'s Crusade A Novel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(443,13,3,'#13|Time|Taxable Goods|The Children\'s Crusade A Novel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(444,13,4,'#13|Time|Taxable Goods|The Children\'s Crusade A Novel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(401,12,1,'#12|National Geographic|Taxable Goods|Stellaluna|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|20|1'),(402,12,2,'#12|National Geographic|Taxable Goods|Stellaluna|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|20|1'),(403,12,3,'#12|National Geographic|Taxable Goods|Stellaluna|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|20|1'),(404,12,4,'#12|National Geographic|Taxable Goods|Stellaluna|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|20|1'),(389,11,1,'#11|Harper Collins|Taxable Goods|Photographers\' Sketchbooks|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|30|1'),(390,11,2,'#11|Harper Collins|Taxable Goods|Photographers\' Sketchbooks|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|30|1'),(391,11,3,'#11|Harper Collins|Taxable Goods|Photographers\' Sketchbooks|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|30|1'),(392,11,4,'#11|Harper Collins|Taxable Goods|Photographers\' Sketchbooks|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|30|1'),(413,10,1,'#10|Reed Elsevier|Taxable Goods|Magnum Contact Sheets|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(414,10,2,'#10|Reed Elsevier|Taxable Goods|Magnum Contact Sheets|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(415,10,3,'#10|Reed Elsevier|Taxable Goods|Magnum Contact Sheets|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(416,10,4,'#10|Reed Elsevier|Taxable Goods|Magnum Contact Sheets|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(437,9,1,'#9|Wiley|Taxable Goods|Lost Lake A Novel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25.99|1'),(438,9,2,'#9|Wiley|Taxable Goods|Lost Lake A Novel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25.99|1'),(439,9,3,'#9|Wiley|Taxable Goods|Lost Lake A Novel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25.99|1'),(440,9,4,'#9|Wiley|Taxable Goods|Lost Lake A Novel|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25.99|1'),(421,7,1,'#7|Informa|Taxable Goods|Locomotive (Caldecott Medal Book)|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(288,8,1,'#8|Oxford University|Taxable Goods|Lose the Clutter, Lose the Weight|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(422,7,2,'#7|Informa|Taxable Goods|Locomotive (Caldecott Medal Book)|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(308,8,2,'#8|Oxford University|Taxable Goods|Lose the Clutter, Lose the Weight|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(423,7,3,'#7|Informa|Taxable Goods|Locomotive (Caldecott Medal Book)|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(328,8,3,'#8|Oxford University|Taxable Goods|Lose the Clutter, Lose the Weight|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(424,7,4,'#7|Informa|Taxable Goods|Locomotive (Caldecott Medal Book)|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|25|1'),(348,8,4,'#8|Oxford University|Taxable Goods|Lose the Clutter, Lose the Weight|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(433,5,1,'#5|Pearson|Taxable Goods|Get What\'s Yours The Secrets to Maxing Out Your Social Security|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(409,6,1,'#6|Reader’s Digest|Taxable Goods|Hollywood Frame by Frame|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(434,5,2,'#5|Pearson|Taxable Goods|Get What\'s Yours The Secrets to Maxing Out Your Social Security|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(410,6,2,'#6|Reader’s Digest|Taxable Goods|Hollywood Frame by Frame|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(435,5,3,'#5|Pearson|Taxable Goods|Get What\'s Yours The Secrets to Maxing Out Your Social Security|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(411,6,3,'#6|Reader’s Digest|Taxable Goods|Hollywood Frame by Frame|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(436,5,4,'#5|Pearson|Taxable Goods|Get What\'s Yours The Secrets to Maxing Out Your Social Security|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|45|1'),(412,6,4,'#6|Reader’s Digest|Taxable Goods|Hollywood Frame by Frame|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(361,4,1,'#4|Esquire|Taxable Goods|Criterion Designs|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(362,4,2,'#4|Esquire|Taxable Goods|Criterion Designs|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(363,4,3,'#4|Esquire|Taxable Goods|Criterion Designs|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(364,4,4,'#4|Esquire|Taxable Goods|Criterion Designs|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(283,3,1,'#3|Time|Taxable Goods|Being Mortal Medicine and What Matters in the End|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|30|1'),(303,3,2,'#3|Time|Taxable Goods|Being Mortal Medicine and What Matters in the End|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|30|1'),(323,3,3,'#3|Time|Taxable Goods|Being Mortal Medicine and What Matters in the End|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|30|1'),(343,3,4,'#3|Time|Taxable Goods|Being Mortal Medicine and What Matters in the End|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|30|1'),(429,2,1,'#2|National Geographic|Taxable Goods|Apples and Pumpkins|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|15|1'),(430,2,2,'#2|National Geographic|Taxable Goods|Apples and Pumpkins|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|15|1'),(431,2,3,'#2|National Geographic|Taxable Goods|Apples and Pumpkins|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|15|1'),(432,2,4,'#2|National Geographic|Taxable Goods|Apples and Pumpkins|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|15|1'),(425,1,1,'#1|Harper Collins|Taxable Goods|After Ever Happy|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|20|1'),(426,1,2,'#1|Harper Collins|Taxable Goods|After Ever Happy|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|20|1'),(427,1,3,'#1|Harper Collins|Taxable Goods|After Ever Happy|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|20|1'),(428,1,4,'#1|Harper Collins|Taxable Goods|After Ever Happy|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|20|1'),(397,20,1,'#20|Reed Elsevier|Taxable Goods|The Wes Anderson Collection|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(398,20,2,'#20|Reed Elsevier|Taxable Goods|The Wes Anderson Collection|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(399,20,3,'#20|Reed Elsevier|Taxable Goods|The Wes Anderson Collection|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'),(400,20,4,'#20|Reed Elsevier|Taxable Goods|The Wes Anderson Collection|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring. But those times are long gone and we live in 21st century, and the most revolutionary thing that had happened is that books have lost their natural view. Books became more available. On-line book stores can offer you a great assortment of books. Can you imagine a world of knowledge without limits? You can get everything you want and all you have to do is just visit our store. We have tremendous variety of products; here you can find the world famous bestsellers and the books of unknown authors. Actually we do understand that our activity is very important for many of you and we will never let you down. Our business is very noble and it has many traditions. That is why we have such a great number of devoted clients all over the country. It is a great pleasure to give people the knowledge and the power of the intelligence. We all must remember that our forefathers didn’t have such unlimited abilities as we have. The diversity of our products is unbelievable because we have a vast book collection - all genres and styles! Our company guarantees the quality of our goods because we care about our clients. If you have some questions about our products, terms and other features, you can address our superb 24/7 support system.|Well, reading books as a hobby was always a noble, pleasant and very useful kind of activity. It gives knowledge, exerts on the process of development of your personality. For a long period of time books were very rare and because of such confines only some “esoteric” people could afford them. And you know what? Books always have some notes of mysticism. Just remember that special atmosphere of solitude in the library or in the old book-store, it seemed that imponderable scent of rational identity is in the air... The unique smell of old and new pages, soft cover and so on. Yeah, they are worth our admiring.|35|1'); /*!40000 ALTER TABLE `catalogsearch_fulltext` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogsearch_query` -- DROP TABLE IF EXISTS `catalogsearch_query`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalogsearch_query` ( `query_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Query ID', `query_text` varchar(255) default NULL COMMENT 'Query text', `num_results` int(10) unsigned NOT NULL default '0' COMMENT 'Num results', `popularity` int(10) unsigned NOT NULL default '0' COMMENT 'Popularity', `redirect` varchar(255) default NULL COMMENT 'Redirect', `synonym_for` varchar(255) default NULL COMMENT 'Synonym for', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `display_in_terms` smallint(6) NOT NULL default '1' COMMENT 'Display in terms', `is_active` smallint(6) default '1' COMMENT 'Active status', `is_processed` smallint(6) default '0' COMMENT 'Processed status', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Updated at', PRIMARY KEY (`query_id`), KEY `IDX_CATALOGSEARCH_QUERY_QUERY_TEXT_STORE_ID_POPULARITY` (`query_text`,`store_id`,`popularity`), KEY `IDX_CATALOGSEARCH_QUERY_STORE_ID` (`store_id`), KEY `IDX_CATALOGSEARCH_QUERY_SYNONYM_FOR` (`synonym_for`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog search query table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalogsearch_query` -- LOCK TABLES `catalogsearch_query` WRITE; /*!40000 ALTER TABLE `catalogsearch_query` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogsearch_query` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogsearch_result` -- DROP TABLE IF EXISTS `catalogsearch_result`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `catalogsearch_result` ( `query_id` int(10) unsigned NOT NULL COMMENT 'Query ID', `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID', `relevance` decimal(20,4) NOT NULL default '0.0000' COMMENT 'Relevance', PRIMARY KEY (`query_id`,`product_id`), KEY `IDX_CATALOGSEARCH_RESULT_QUERY_ID` (`query_id`), KEY `IDX_CATALOGSEARCH_RESULT_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Catalog search result table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `catalogsearch_result` -- LOCK TABLES `catalogsearch_result` WRITE; /*!40000 ALTER TABLE `catalogsearch_result` DISABLE KEYS */; /*!40000 ALTER TABLE `catalogsearch_result` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `checkout_agreement` -- DROP TABLE IF EXISTS `checkout_agreement`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `checkout_agreement` ( `agreement_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Agreement Id', `name` varchar(255) default NULL COMMENT 'Name', `content` text COMMENT 'Content', `content_height` varchar(25) default NULL COMMENT 'Content Height', `checkbox_text` text COMMENT 'Checkbox Text', `is_active` smallint(6) NOT NULL default '0' COMMENT 'Is Active', `is_html` smallint(6) NOT NULL default '0' COMMENT 'Is Html', PRIMARY KEY (`agreement_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `checkout_agreement` -- LOCK TABLES `checkout_agreement` WRITE; /*!40000 ALTER TABLE `checkout_agreement` DISABLE KEYS */; /*!40000 ALTER TABLE `checkout_agreement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `checkout_agreement_store` -- DROP TABLE IF EXISTS `checkout_agreement_store`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `checkout_agreement_store` ( `agreement_id` int(10) unsigned NOT NULL COMMENT 'Agreement Id', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id', PRIMARY KEY (`agreement_id`,`store_id`), KEY `FK_CHECKOUT_AGREEMENT_STORE_STORE_ID_CORE_STORE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement Store'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `checkout_agreement_store` -- LOCK TABLES `checkout_agreement_store` WRITE; /*!40000 ALTER TABLE `checkout_agreement_store` DISABLE KEYS */; /*!40000 ALTER TABLE `checkout_agreement_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_block` -- DROP TABLE IF EXISTS `cms_block`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cms_block` ( `block_id` smallint(6) NOT NULL auto_increment COMMENT 'Block ID', `title` varchar(255) NOT NULL COMMENT 'Block Title', `identifier` varchar(255) NOT NULL COMMENT 'Block String Identifier', `content` mediumtext COMMENT 'Block Content', `creation_time` timestamp NULL default NULL COMMENT 'Block Creation Time', `update_time` timestamp NULL default NULL COMMENT 'Block Modification Time', `is_active` smallint(6) NOT NULL default '1' COMMENT 'Is Block Active', PRIMARY KEY (`block_id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COMMENT='CMS Block Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `cms_block` -- LOCK TABLES `cms_block` WRITE; /*!40000 ALTER TABLE `cms_block` DISABLE KEYS */; INSERT INTO `cms_block` VALUES (1,'Footer Links','footer_links','<ul>\r\n<li><a href=\"{{store direct_url=\"about\"}}\">About Us</a></li>\r\n<li><a href=\"{{store direct_url=\"customer-service\"}}\">Customer Service</a></li>\r\n<li><a href=\"{{store direct_url=\"template-settings\"}}\">Template Settings</a></li>\r\n<li class=\"last privacy\"><a href=\"{{store direct_url=\"privacy-policy-cookie-restriction-mode\"}}\">Privacy Policy</a></li>\r\n</ul>','2015-02-08 22:15:00','2015-04-10 12:29:10',1),(3,'Cookie restriction notice','cookie_restriction_notice_block','<p>This website requires cookies to provide all of its features. For more information on what data is contained in the cookies, please see our <a href=\"{{store direct_url=\"privacy-policy-cookie-restriction-mode\"}}\">Privacy Policy page</a>. To accept cookies from this site, please click the Allow button below.</p>','2015-02-08 22:15:04','2015-02-08 22:15:04',1),(4,'Footer Links','footer_links','<ul>\r\n<li><a href=\"{{store direct_url=\"about\"}}\">Wir über uns</a></li>\r\n<li><a href=\"{{store direct_url=\"customer-service\"}}\">Kundenservice</a></li>\r\n<li class=\"last privacy\"><a href=\"{{store direct_url=\"privacy-policy-cookie-restriction-mode\"}}\">Datenschutz</a></li>\r\n</ul>','2015-02-09 00:47:43','2015-04-06 19:20:29',1),(5,'Footer Links','footer_links','<ul>\r\n<li><a href=\"{{store direct_url=\"about\"}}\">Acerca de nosotros</a></li>\r\n<li><a href=\"{{store direct_url=\"customer-service\"}}\">Servicio al Cliente</a></li>\r\n<li class=\"last privacy\"><a href=\"{{store direct_url=\"privacy-policy-cookie-restriction-mode\"}}\">Política de Privacidad</a></li>\r\n</ul>\r\n','2015-02-09 00:48:23','2015-04-06 19:20:41',1),(6,'Footer Links','footer_links','<ul>\r\n<li><a href=\"{{store direct_url=\"about\"}}\">О компании</a></li>\r\n<li><a href=\"{{store direct_url=\"customer-service\"}}\">Обслуживание клиентов</a></li>\r\n<li class=\"last privacy\"><a href=\"{{store direct_url=\"privacy-policy-cookie-restriction-mode\"}}\">Политика конфиденциальности</a></li>\r\n</ul>\r\n','2015-02-09 00:50:11','2015-04-06 19:20:56',1),(7,'Footer List','footer_list','<div class=\"footer-col\">\r\n <h4>Why buy from us</h4>\r\n <div class=\"footer-col-content\">\r\n <ul>\r\n <li><a href=\"#\">Shipping & Returns</a></li>\r\n <li><a href=\"#\">Secure Shopping</a></li>\r\n <li><a href=\"#\">International Shipping</a></li>\r\n <li><a href=\"#\">Affiliates</a></li>\r\n <li><a href=\"#\">Group Sales</a></li>\r\n </ul>\r\n </div>\r\n</div>\r\n<div class=\"footer-col\">\r\n<h4>My account</h4>\r\n <div class=\"footer-col-content\">\r\n <ul>\r\n <li><a href=\"{{store url=\'customer/account/login/\'}}\">Sign In</a></li>\r\n <li><a href=\"{{store url=\'checkout/cart/\'}}\">View Cart</a></li>\r\n <li><a href=\"{{store url=\'wishlist/\'}}\">My Wishlist</a></li>\r\n <li><a href=\"#\">Track My Order</a></li>\r\n <li><a href=\"#\">Help</a></li>\r\n </ul>\r\n </div>\r\n</div>\r\n','2015-02-09 00:52:32','2015-04-10 12:40:11',1),(8,'Footer List','footer_list','<div class=\"footer-col\">\r\n <h4>Warum bei uns kaufen</h4>\r\n <div class=\"footer-col-content\">\r\n <ul>\r\n <li><a href=\"#\">Liefer-und Versandkosten</a></li>\r\n <li><a href=\"#\">Sicheres Einkaufen</a></li>\r\n <li><a href=\"#\">Internationaler Versand</a></li>\r\n <li><a href=\"#\">Affiliates</a></li>\r\n <li><a href=\"#\">Group Sales</a></li>\r\n </ul>\r\n </div>\r\n</div>\r\n<div class=\"footer-col\">\r\n<h4>Mein konto</h4>\r\n <div class=\"footer-col-content\">\r\n <ul>\r\n <li><a href=\"{{store url=\'customer/account/login/\'}}\">Anmelden</a></li>\r\n <li><a href=\"{{store url=\'checkout/cart/\'}}\">Warenkorb anzeigen</a></li>\r\n <li><a href=\"{{store url=\'wishlist/\'}}\">Mein Wunschzettel</a></li>\r\n <li><a href=\"#\">Meine Bestellung verfolgen</a></li>\r\n <li><a href=\"#\">Hilfe</a></li>\r\n </ul>\r\n </div>\r\n</div>\r\n','2015-02-09 00:54:03','2015-04-10 13:34:27',1),(9,'Footer List','footer_list','<div class=\"footer-col\">\r\n <h4>?Por que comprar ?</h4>\r\n <div class=\"footer-col-content\">\r\n <ul>\r\n <li><a href=\"#\">Envios y Devoluciones</a></li>\r\n <li><a href=\"#\">Compras Seguras</a></li>\r\n <li><a href=\"#\">Envio internacional</a></li>\r\n <li><a href=\"#\">Afiliados</a></li>\r\n <li><a href=\"#\">Ventas de Grupo</a></li>\r\n </ul>\r\n </div>\r\n</div>\r\n<div class=\"footer-col\">\r\n<h4>Mi cuenta</h4>\r\n <div class=\"footer-col-content\">\r\n <ul>\r\n <li><a href=\"{{store url=\'customer/account/login/\'}}\">Inicia sesion</a></li>\r\n <li><a href=\"{{store url=\'checkout/cart/\'}}\">Ver Carrito</a></li>\r\n <li><a href=\"{{store url=\'wishlist/\'}}\">Mi lista de deseos</a></li>\r\n <li><a href=\"#\">Estado de mi pedido</a></li>\r\n <li><a href=\"#\">Ayuda</a></li>\r\n </ul>\r\n </div>\r\n</div>\r\n','2015-02-09 00:55:31','2015-04-10 13:34:38',1),(10,'Footer List','footer_list','<div class=\"footer-col\">\r\n <h4>Почему стоит купить</h4>\r\n <div class=\"footer-col-content\">\r\n <ul>\r\n <li><a href=\"#\">Доставка и возврат</a></li>\r\n <li><a href=\"#\">Безопасные покупки</a></li>\r\n <li><a href=\"#\">Международные перевозки</a></li>\r\n <li><a href=\"#\">Партнеры</a></li>\r\n <li><a href=\"#\">Группа продаж</a></li>\r\n </ul>\r\n </div>\r\n</div>\r\n<div class=\"footer-col\">\r\n<h4>Мой акаунт</h4>\r\n <div class=\"footer-col-content\">\r\n <ul>\r\n <li><a href=\"{{store url=\'customer/account/login/\'}}\">Войти</a></li>\r\n <li><a href=\"{{store url=\'checkout/cart/\'}}\">Просмотр корзины</a></li>\r\n <li><a href=\"{{store url=\'wishlist/\'}}\">Мои предпочтения</a></li>\r\n <li><a href=\"#\">Мой заказ</a></li>\r\n <li><a href=\"#\">Помощь</a></li>\r\n </ul>\r\n </div>\r\n</div>\r\n','2015-02-09 00:56:13','2015-04-10 13:34:50',1),(11,'Contact Block','contact_block','<h2>Address</h2>\r\n<ul>\r\n<li><h3>Address 1:</h3>\r\n<p>The Company Name Inc. 9870 St Vincent Place,Glasgow, DC 45 </p>\r\n</li>\r\n<li><h3>Telephone:</h3>\r\n<p>+1 (234) 567-8901<br/>\r\n+1 (234) 567-8902 </p>\r\n</li>\r\n<li class=\"last\"><h3>Address 2:</h3>\r\n<p>The Company Name Inc. 9870 St Vincent Place,Glasgow, DC 45 </p>\r\n</li>\r\n</ul>\r\n','2015-02-09 00:58:43','2015-02-09 00:58:43',1),(12,'Header info','header-info','<div class=\"header-info\">\r\n <i class=\"material-design-phone370\"></i>\r\n <span>800-2345-6789; 800-2345-6788</span>\r\n</div>','2015-03-31 12:30:51','2015-04-13 12:23:19',1),(13,'Slider','slider','<script src=\"{{skin url=\'js/camera.js\'}}\"> </script>\r\n<script>\r\n jQuery(function(){\r\n jQuery(\'#camera_wrap\').camera({\r\n alignmen: \'topCenter\',\r\n height: \'65,51724137931034%\',\r\n minHeight: \'100px\',\r\n loader : false,\r\n navigation: false,\r\n fx: \'simpleFade\',\r\n navigationHover:false, \r\n thumbnails: false,\r\n playPause: false,\r\n pagination:true,\r\n onStartLoading: function() {\r\n },\r\n onEndTransition: function() {\r\n jQuery(\'.camera_caption\').removeClass(\'animated\');\r\n jQuery(\'.camera_caption\').addClass(\'animated\'); \r\n }\r\n });\r\n });\r\n</script>\r\n<div class=\"slider_wrapper\">\r\n <div class=\"camera_wrap\" id=\"camera_wrap\">\r\n <div data-src=\"{{skin url=\'images/camera/slides/slide1.jpg\'}}\">\r\n <div class=\"camera_caption zoomIn\">\r\n <h4>Sale</h4>\r\n <span>50% off</span>\r\n <a href=\"{{store url=\'magazines.html\'}}\" class=\"m-btn\">Shop now!</a>\r\n </div>\r\n </div>\r\n <div data-src=\"{{skin url=\'images/camera/slides/slide2.jpg\'}}\">\r\n <div class=\"camera_caption zoomIn\">\r\n <h4>New</h4>\r\n <span>arrivals</span>\r\n <a href=\"{{store url=\'comics.html\'}}\" class=\"m-btn\">Shop now!</a>\r\n </div>\r\n </div>\r\n <div data-src=\"{{skin url=\'images/camera/slides/slide3.jpg\'}}\">\r\n <div class=\"camera_caption zoomIn\">\r\n <h4>Free</h4>\r\n <span>Shipping</span>\r\n <a href=\"{{store url=\'calendars.html\'}}\" class=\"m-btn\">Shop now!</a>\r\n </div>\r\n </div>\r\n </div>\r\n</div>','2015-04-08 12:50:23','2015-04-08 13:56:04',1),(14,'Social buttons block','social-buttons-block','<div class=\"social-buttons-block\">\r\n <ul>\r\n <li><a href=\"#\" target=\"_blank\" class=\"fa fa-facebook\"></i></a></li>\r\n <li><a href=\"#\" target=\"_blank\" class=\"fa fa-twitter\"></i></a></li>\r\n <li><a href=\"#\" target=\"_blank\" class=\"fa fa-google-plus\"></i></a></li>\r\n <li><a href=\"#\" target=\"_blank\" class=\"fa fa-youtube\"></i></a></li>\r\n </ul>\r\n</div>','2015-04-10 12:58:30','2015-04-10 13:02:05',1); /*!40000 ALTER TABLE `cms_block` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_block_store` -- DROP TABLE IF EXISTS `cms_block_store`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cms_block_store` ( `block_id` smallint(6) NOT NULL COMMENT 'Block ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`block_id`,`store_id`), KEY `IDX_CMS_BLOCK_STORE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='CMS Block To Store Linkage Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `cms_block_store` -- LOCK TABLES `cms_block_store` WRITE; /*!40000 ALTER TABLE `cms_block_store` DISABLE KEYS */; INSERT INTO `cms_block_store` VALUES (1,0),(3,0),(4,2),(5,3),(6,4),(7,0),(8,2),(9,3),(10,4),(11,0),(12,0),(13,0),(14,0); /*!40000 ALTER TABLE `cms_block_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_page` -- DROP TABLE IF EXISTS `cms_page`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cms_page` ( `page_id` smallint(6) NOT NULL auto_increment COMMENT 'Page ID', `title` varchar(255) default NULL COMMENT 'Page Title', `root_template` varchar(255) default NULL COMMENT 'Page Template', `meta_keywords` text COMMENT 'Page Meta Keywords', `meta_description` text COMMENT 'Page Meta Description', `identifier` varchar(100) default NULL COMMENT 'Page String Identifier', `content_heading` varchar(255) default NULL COMMENT 'Page Content Heading', `content` mediumtext COMMENT 'Page Content', `creation_time` timestamp NULL default NULL COMMENT 'Page Creation Time', `update_time` timestamp NULL default NULL COMMENT 'Page Modification Time', `is_active` smallint(6) NOT NULL default '1' COMMENT 'Is Page Active', `sort_order` smallint(6) NOT NULL default '0' COMMENT 'Page Sort Order', `layout_update_xml` text COMMENT 'Page Layout Update Content', `custom_theme` varchar(100) default NULL COMMENT 'Page Custom Theme', `custom_root_template` varchar(255) default NULL COMMENT 'Page Custom Template', `custom_layout_update_xml` text COMMENT 'Page Custom Layout Update Content', `custom_theme_from` date default NULL COMMENT 'Page Custom Theme Active From Date', `custom_theme_to` date default NULL COMMENT 'Page Custom Theme Active To Date', PRIMARY KEY (`page_id`), KEY `IDX_CMS_PAGE_IDENTIFIER` (`identifier`) ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='CMS Page Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `cms_page` -- LOCK TABLES `cms_page` WRITE; /*!40000 ALTER TABLE `cms_page` DISABLE KEYS */; INSERT INTO `cms_page` VALUES (1,'404 Not Found 1','two_columns_left','Page keywords','Page description','no-route',NULL,'<div class=\"page-title\"><h1>Whoops, our bad...</h1></div>\r\n<dl>\r\n <dt>The page you requested was not found, and we have a fine guess why.</dt>\r\n <dd>\r\n <ul class=\"disc\">\r\n <li>If you typed the URL directly, please make sure the spelling is correct.</li>\r\n <li>If you clicked on a link to get here, the link is outdated.</li>\r\n </ul>\r\n </dd>\r\n</dl>\r\n<dl>\r\n <dt>What can you do?</dt>\r\n <dd>Have no fear, help is near! There are many ways you can get back on track with Magento Store.</dd>\r\n <dd>\r\n <ul class=\"disc\">\r\n <li><a href=\"#\" onclick=\"history.go(-1); return false;\">Go back</a> to the previous page.</li>\r\n <li>Use the search bar at the top of the page to search for your products.</li>\r\n <li>Follow these links to get you back on track!<br /><a href=\"{{store url=\"\"}}\">Store Home</a>\r\n <span class=\"separator\">|</span> <a href=\"{{store url=\"customer/account\"}}\">My Account</a></li>\r\n </ul>\r\n </dd>\r\n</dl>\r\n','2015-02-08 22:15:00','2015-02-09 00:44:12',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(2,'Books Store','two_columns_left',NULL,NULL,'home',NULL,'<div class=\"clear\"></div>','2015-02-08 22:15:00','2015-04-06 19:09:41',1,0,'<!--<reference name=\"content\">\r\n <block type=\"catalog/product_new\" name=\"home.catalog.product.new\" alias=\"product_new\" template=\"catalog/product/new.phtml\" after=\"cms_page\">\r\n <action method=\"addPriceBlockType\">\r\n <type>bundle</type>\r\n <block>bundle/catalog_product_price</block>\r\n <template>bundle/catalog/product/price.phtml</template>\r\n </action>\r\n </block>\r\n <block type=\"reports/product_viewed\" name=\"home.reports.product.viewed\" alias=\"product_viewed\" template=\"reports/home_product_viewed.phtml\" after=\"product_new\">\r\n <action method=\"addPriceBlockType\">\r\n <type>bundle</type>\r\n <block>bundle/catalog_product_price</block>\r\n <template>bundle/catalog/product/price.phtml</template>\r\n </action>\r\n </block>\r\n <block type=\"reports/product_compared\" name=\"home.reports.product.compared\" template=\"reports/home_product_compared.phtml\" after=\"product_viewed\">\r\n <action method=\"addPriceBlockType\">\r\n <type>bundle</type>\r\n <block>bundle/catalog_product_price</block>\r\n <template>bundle/catalog/product/price.phtml</template>\r\n </action>\r\n </block>\r\n </reference>\r\n <reference name=\"right\">\r\n <action method=\"unsetChild\"><alias>right.reports.product.viewed</alias></action>\r\n <action method=\"unsetChild\"><alias>right.reports.product.compared</alias></action>\r\n </reference>-->',NULL,NULL,NULL,NULL,NULL),(3,'About Us','two_columns_left',NULL,NULL,'about',NULL,'<div class=\"page-head\">\r\n<h2>About Magento Demo Store</h2>\r\n</div>\r\n<div class=\"about-padd\">\r\n<div class=\"wrapper\">\r\n<div class=\"about-col-1\">\r\n<h3>et dolore magna aliqua</h3>\r\n<p>Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.</p>\r\n<span></span>\r\n</div>\r\n<div class=\"about-col-2\">\r\n<h3>Ut enim ad minim ven</h3>\r\n<p>Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.</p>\r\n<span></span>\r\n</div>\r\n<div class=\"about-col-3\">\r\n<h3>quis nostrud exercitation </h3>\r\n<p>Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.</p>\r\n</div>\r\n</div></div>\r\n<div class=\"about-padd-2\">\r\n<div class=\"wrapper\">\r\n<div class=\"about-col-4\">\r\n<h4>d tempor incididunt ut </h4>\r\n<p>Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.</p>\r\n<ul>\r\n<li>Lorem ipsum dolor sit amet</li>\r\n<li>Conse ctetur adipisicing elit sed</li>\r\n<li>Do eiusmod tempor </li>\r\n<li>Incididunt ut labore et dolore</li>\r\n</ul>\r\n<p>\r\nLorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore\r\n</p>\r\n</div>\r\n<div class=\"about-col-5\">\r\n<h4>labore et dolore magna aliqua</h4>\r\n<p>Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.</p>\r\n<ul>\r\n<li>Lorem ipsum dolor sit amet</li>\r\n<li>Conse ctetur adipisicing elit sed</li>\r\n<li>Do eiusmod tempor </li>\r\n<li>Incididunt ut labore et dolore</li>\r\n</ul>\r\n<p>\r\nLorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore\r\n</p>\r\n</div>\r\n<div class=\"about-col-6\">\r\n<h4>Ut enim ad minim ven</h4>\r\n<p>Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.</p>\r\n<ul>\r\n<li>Lorem ipsum dolor sit amet</li>\r\n<li>Conse ctetur adipisicing elit sed</li>\r\n<li>Do eiusmod tempor </li>\r\n<li>Incididunt ut labore et dolore</li>\r\n</ul>\r\n<p>\r\nLorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore\r\n</p>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"about-col-7\">\r\n<h4>tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim ven</h4>\r\n<p>\r\nLorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore\r\n</p>\r\n</div>\r\n','2015-02-08 22:15:01','2015-04-06 19:10:01',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(4,'Customer Service','two_columns_left',NULL,NULL,'customer-service',NULL,'<div class=\"page-title\">\r\n <h1>Customer Service</h1>\r\n</div>\r\n<ul class=\"custom-servis-ul\">\r\n<li class=\"item-1\">\r\n<h3>Shipping & Delivery</h3>\r\n<p>\r\nLorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.\r\n</p>\r\n<p>\r\nconse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.\r\n</p>\r\n</li>\r\n<li class=\"item-2\">\r\n<h3>Privacy & Security</h3>\r\n<p>\r\nLorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident. Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed doeiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate.\r\n</p>\r\n</li>\r\n<li class=\"item-3\">\r\n<h3>Returns & Replacements</h3>\r\n<p>\r\nLorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.\r\n</p>\r\n<ul>\r\n<li>Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor</li>\r\n<li>incididunt ut labore et dolore magna aliqua. </li>\r\n<li>Ut enim ad minim veniam, quis nostrud exercitation ullamco</li>\r\n</ul>\r\n</li>\r\n<li class=\"item-4\">\r\n<h3>Ordering</h3>\r\n<p>\r\nLorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident. Lorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.\r\n</p>\r\n</li>\r\n<li class=\"item-5\">\r\n<h3>Payment, Pricing & Promotions</h3>\r\n<p>\r\nLorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.\r\n</p>\r\n</li>\r\n<li class=\"item-6\">\r\n<h3>Viewing Orders</h3>\r\n<p>\r\nLorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.\r\n</p>\r\n</li>\r\n<li class=\"item-7\">\r\n<h3>Updating Account Information</h3>\r\n<p>\r\nLorem ipsum dolor sit amet conse ctetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident.\r\n</p>\r\n</li>\r\n</ul>\r\n','2015-02-08 22:15:01','2015-04-06 19:10:12',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(5,'Enable Cookies','two_columns_left',NULL,NULL,'enable-cookies',NULL,'<div class=\"std\">\r\n <ul class=\"messages\">\r\n <li class=\"notice-msg\">\r\n <ul>\r\n <li>Please enable cookies in your web browser to continue.</li>\r\n </ul>\r\n </li>\r\n </ul>\r\n <div class=\"page-title\">\r\n <h1><a name=\"top\"></a>What are Cookies?</h1>\r\n </div>\r\n <p>Cookies are short pieces of data that are sent to your computer when you visit a website.\r\n On later visits, this data is then returned to that website. Cookies allow us to recognize you automatically\r\n whenever you visit our site so that we can personalize your experience and provide you with better service.\r\n We also use cookies (and similar browser data, such as Flash cookies) for fraud prevention and other purposes.\r\n If your web browser is set to refuse cookies from our website, you will not be able to complete a purchase\r\n or take advantage of certain features of our website, such as storing items in your Shopping Cart or\r\n receiving personalized recommendations. As a result, we strongly encourage you to configure your web\r\n browser to accept cookies from our website.</p>\r\n <h2 class=\"subtitle\">Enabling Cookies</h2>\r\n <ul class=\"disc\">\r\n <li><a href=\"#ie7\">Internet Explorer 7.x</a></li>\r\n <li><a href=\"#ie6\">Internet Explorer 6.x</a></li>\r\n <li><a href=\"#firefox\">Mozilla/Firefox</a></li>\r\n <li><a href=\"#opera\">Opera 7.x</a></li>\r\n </ul>\r\n <h3><a name=\"ie7\"></a>Internet Explorer 7.x</h3>\r\n <ol>\r\n <li>\r\n <p>Start Internet Explorer</p>\r\n </li>\r\n <li>\r\n <p>Under the <strong>Tools</strong> menu, click <strong>Internet Options</strong></p>\r\n <p><img src=\"{{skin url=\"images/cookies/ie7-1.gif\"}}\" alt=\"\" /></p>\r\n </li>\r\n <li>\r\n <p>Click the <strong>Privacy</strong> tab</p>\r\n <p><img src=\"{{skin url=\"images/cookies/ie7-2.gif\"}}\" alt=\"\" /></p>\r\n </li>\r\n <li>\r\n <p>Click the <strong>Advanced</strong> button</p>\r\n <p><img src=\"{{skin url=\"images/cookies/ie7-3.gif\"}}\" alt=\"\" /></p>\r\n </li>\r\n <li>\r\n <p>Put a check mark in the box for <strong>Override Automatic Cookie Handling</strong>,\r\n put another check mark in the <strong>Always accept session cookies </strong>box</p>\r\n <p><img src=\"{{skin url=\"images/cookies/ie7-4.gif\"}}\" alt=\"\" /></p>\r\n </li>\r\n <li>\r\n <p>Click <strong>OK</strong></p>\r\n <p><img src=\"{{skin url=\"images/cookies/ie7-5.gif\"}}\" alt=\"\" /></p>\r\n </li>\r\n <li>\r\n <p>Click <strong>OK</strong></p>\r\n <p><img src=\"{{skin url=\"images/cookies/ie7-6.gif\"}}\" alt=\"\" /></p>\r\n </li>\r\n <li>\r\n <p>Restart Internet Explore</p>\r\n </li>\r\n </ol>\r\n <p class=\"a-top\"><a href=\"#top\">Back to Top</a></p>\r\n <h3><a name=\"ie6\"></a>Internet Explorer 6.x</h3>\r\n <ol>\r\n <li>\r\n <p>Select <strong>Internet Options</strong> from the Tools menu</p>\r\n <p><img src=\"{{skin url=\"images/cookies/ie6-1.gif\"}}\" alt=\"\" /></p>\r\n </li>\r\n <li>\r\n <p>Click on the <strong>Privacy</strong> tab</p>\r\n </li>\r\n <li>\r\n <p>Click the <strong>Default</strong> button (or manually slide the bar down to <strong>Medium</strong>)\r\n under <strong>Settings</strong>. Click <strong>OK</strong></p>\r\n <p><img src=\"{{skin url=\"images/cookies/ie6-2.gif\"}}\" alt=\"\" /></p>\r\n </li>\r\n </ol>\r\n <p class=\"a-top\"><a href=\"#top\">Back to Top</a></p>\r\n <h3><a name=\"firefox\"></a>Mozilla/Firefox</h3>\r\n <ol>\r\n <li>\r\n <p>Click on the <strong>Tools</strong>-menu in Mozilla</p>\r\n </li>\r\n <li>\r\n <p>Click on the <strong>Options...</strong> item in the menu - a new window open</p>\r\n </li>\r\n <li>\r\n <p>Click on the <strong>Privacy</strong> selection in the left part of the window. (See image below)</p>\r\n <p><img src=\"{{skin url=\"images/cookies/firefox.png\"}}\" alt=\"\" /></p>\r\n </li>\r\n <li>\r\n <p>Expand the <strong>Cookies</strong> section</p>\r\n </li>\r\n <li>\r\n <p>Check the <strong>Enable cookies</strong> and <strong>Accept cookies normally</strong> checkboxes</p>\r\n </li>\r\n <li>\r\n <p>Save changes by clicking <strong>Ok</strong>.</p>\r\n </li>\r\n </ol>\r\n <p class=\"a-top\"><a href=\"#top\">Back to Top</a></p>\r\n <h3><a name=\"opera\"></a>Opera 7.x</h3>\r\n <ol>\r\n <li>\r\n <p>Click on the <strong>Tools</strong> menu in Opera</p>\r\n </li>\r\n <li>\r\n <p>Click on the <strong>Preferences...</strong> item in the menu - a new window open</p>\r\n </li>\r\n <li>\r\n <p>Click on the <strong>Privacy</strong> selection near the bottom left of the window. (See image below)</p>\r\n <p><img src=\"{{skin url=\"images/cookies/opera.png\"}}\" alt=\"\" /></p>\r\n </li>\r\n <li>\r\n <p>The <strong>Enable cookies</strong> checkbox must be checked, and <strong>Accept all cookies</strong>\r\n should be selected in the "<strong>Normal cookies</strong>" drop-down</p>\r\n </li>\r\n <li>\r\n <p>Save changes by clicking <strong>Ok</strong></p>\r\n </li>\r\n </ol>\r\n <p class=\"a-top\"><a href=\"#top\">Back to Top</a></p>\r\n</div>\r\n','2015-02-08 22:15:02','2015-04-06 19:10:24',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(6,'Privacy Policy','two_columns_left',NULL,NULL,'privacy-policy-cookie-restriction-mode','Privacy Policy','<p style=\"color: #ff0000; font-weight: bold; font-size: 13px\">\r\n Please replace this text with you Privacy Policy.\r\n Please add any additional cookies your website uses below (e.g., Google Analytics)\r\n</p>\r\n<p>\r\n This privacy policy sets out how {{config path=\"general/store_information/name\"}} uses and protects any information\r\n that you give {{config path=\"general/store_information/name\"}} when you use this website.\r\n {{config path=\"general/store_information/name\"}} is committed to ensuring that your privacy is protected.\r\n Should we ask you to provide certain information by which you can be identified when using this website,\r\n then you can be assured that it will only be used in accordance with this privacy statement.\r\n {{config path=\"general/store_information/name\"}} may change this policy from time to time by updating this page.\r\n You should check this page from time to time to ensure that you are happy with any changes.\r\n</p>\r\n<h2>What we collect</h2>\r\n<p>We may collect the following information:</p>\r\n<ul>\r\n <li>name</li>\r\n <li>contact information including email address</li>\r\n <li>demographic information such as postcode, preferences and interests</li>\r\n <li>other information relevant to customer surveys and/or offers</li>\r\n</ul>\r\n<p>\r\n For the exhaustive list of cookies we collect see the <a href=\"#list\">List of cookies we collect</a> section.\r\n</p>\r\n<h2>What we do with the information we gather</h2>\r\n<p>\r\n We require this information to understand your needs and provide you with a better service,\r\n and in particular for the following reasons:\r\n</p>\r\n<ul>\r\n <li>Internal record keeping.</li>\r\n <li>We may use the information to improve our products and services.</li>\r\n <li>\r\n We may periodically send promotional emails about new products, special offers or other information which we\r\n think you may find interesting using the email address which you have provided.\r\n </li>\r\n <li>\r\n From time to time, we may also use your information to contact you for market research purposes.\r\n We may contact you by email, phone, fax or mail. We may use the information to customise the website\r\n according to your interests.\r\n </li>\r\n</ul>\r\n<h2>Security</h2>\r\n<p>\r\n We are committed to ensuring that your information is secure. In order to prevent unauthorised access or disclosure,\r\n we have put in place suitable physical, electronic and managerial procedures to safeguard and secure\r\n the information we collect online.\r\n</p>\r\n<h2>How we use cookies</h2>\r\n<p>\r\n A cookie is a small file which asks permission to be placed on your computer\'s hard drive.\r\n Once you agree, the file is added and the cookie helps analyse web traffic or lets you know when you visit\r\n a particular site. Cookies allow web applications to respond to you as an individual. The web application\r\n can tailor its operations to your needs, likes and dislikes by gathering and remembering information about\r\n your preferences.\r\n</p>\r\n<p>\r\n We use traffic log cookies to identify which pages are being used. This helps us analyse data about web page traffic\r\n and improve our website in order to tailor it to customer needs. We only use this information for statistical\r\n analysis purposes and then the data is removed from the system.\r\n</p>\r\n<p>\r\n Overall, cookies help us provide you with a better website, by enabling us to monitor which pages you find useful\r\n and which you do not. A cookie in no way gives us access to your computer or any information about you,\r\n other than the data you choose to share with us. You can choose to accept or decline cookies.\r\n Most web browsers automatically accept cookies, but you can usually modify your browser setting\r\n to decline cookies if you prefer. This may prevent you from taking full advantage of the website.\r\n</p>\r\n<h2>Links to other websites</h2>\r\n<p>\r\n Our website may contain links to other websites of interest. However, once you have used these links\r\n to leave our site, you should note that we do not have any control over that other website.\r\n Therefore, we cannot be responsible for the protection and privacy of any information which you provide whilst\r\n visiting such sites and such sites are not governed by this privacy statement.\r\n You should exercise caution and look at the privacy statement applicable to the website in question.\r\n</p>\r\n<h2>Controlling your personal information</h2>\r\n<p>You may choose to restrict the collection or use of your personal information in the following ways:</p>\r\n<ul>\r\n <li>\r\n whenever you are asked to fill in a form on the website, look for the box that you can click to indicate\r\n that you do not want the information to be used by anybody for direct marketing purposes\r\n </li>\r\n <li>\r\n if you have previously agreed to us using your personal information for direct marketing purposes,\r\n you may change your mind at any time by writing to or emailing us at\r\n {{config path=\"trans_email/ident_general/email\"}}\r\n </li>\r\n</ul>\r\n<p>\r\n We will not sell, distribute or lease your personal information to third parties unless we have your permission\r\n or are required by law to do so. We may use your personal information to send you promotional information\r\n about third parties which we think you may find interesting if you tell us that you wish this to happen.\r\n</p>\r\n<p>\r\n You may request details of personal information which we hold about you under the Data Protection Act 1998.\r\n A small fee will be payable. If you would like a copy of the information held on you please write to\r\n {{config path=\"general/store_information/address\"}}.\r\n</p>\r\n<p>\r\n If you believe that any information we are holding on you is incorrect or incomplete,\r\n please write to or email us as soon as possible, at the above address.\r\n We will promptly correct any information found to be incorrect.\r\n</p>\r\n<h2><a name=\"list\"></a>List of cookies we collect</h2>\r\n<p>The table below lists the cookies we collect and what information they store.</p>\r\n<table class=\"data-table\">\r\n <thead>\r\n <tr>\r\n <th>COOKIE name</th>\r\n <th>COOKIE Description</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr>\r\n <th>CART</th>\r\n <td>The association with your shopping cart.</td>\r\n </tr>\r\n <tr>\r\n <th>CATEGORY_INFO</th>\r\n <td>Stores the category info on the page, that allows to display pages more quickly.</td>\r\n </tr>\r\n <tr>\r\n <th>COMPARE</th>\r\n <td>The items that you have in the Compare Products list.</td>\r\n </tr>\r\n <tr>\r\n <th>CURRENCY</th>\r\n <td>Your preferred currency</td>\r\n </tr>\r\n <tr>\r\n <th>CUSTOMER</th>\r\n <td>An encrypted version of your customer id with the store.</td>\r\n </tr>\r\n <tr>\r\n <th>CUSTOMER_AUTH</th>\r\n <td>An indicator if you are currently logged into the store.</td>\r\n </tr>\r\n <tr>\r\n <th>CUSTOMER_INFO</th>\r\n <td>An encrypted version of the customer group you belong to.</td>\r\n </tr>\r\n <tr>\r\n <th>CUSTOMER_SEGMENT_IDS</th>\r\n <td>Stores the Customer Segment ID</td>\r\n </tr>\r\n <tr>\r\n <th>EXTERNAL_NO_CACHE</th>\r\n <td>A flag, which indicates whether caching is disabled or not.</td>\r\n </tr>\r\n <tr>\r\n <th>FRONTEND</th>\r\n <td>You sesssion ID on the server.</td>\r\n </tr>\r\n <tr>\r\n <th>GUEST-VIEW</th>\r\n <td>Allows guests to edit their orders.</td>\r\n </tr>\r\n <tr>\r\n <th>LAST_CATEGORY</th>\r\n <td>The last category you visited.</td>\r\n </tr>\r\n <tr>\r\n <th>LAST_PRODUCT</th>\r\n <td>The most recent product you have viewed.</td>\r\n </tr>\r\n <tr>\r\n <th>NEWMESSAGE</th>\r\n <td>Indicates whether a new message has been received.</td>\r\n </tr>\r\n <tr>\r\n <th>NO_CACHE</th>\r\n <td>Indicates whether it is allowed to use cache.</td>\r\n </tr>\r\n <tr>\r\n <th>PERSISTENT_SHOPPING_CART</th>\r\n <td>A link to information about your cart and viewing history if you have asked the site.</td>\r\n </tr>\r\n <tr>\r\n <th>POLL</th>\r\n <td>The ID of any polls you have recently voted in.</td>\r\n </tr>\r\n <tr>\r\n <th>POLLN</th>\r\n <td>Information on what polls you have voted on.</td>\r\n </tr>\r\n <tr>\r\n <th>RECENTLYCOMPARED</th>\r\n <td>The items that you have recently compared. </td>\r\n </tr>\r\n <tr>\r\n <th>STF</th>\r\n <td>Information on products you have emailed to friends.</td>\r\n </tr>\r\n <tr>\r\n <th>STORE</th>\r\n <td>The store view or language you have selected.</td>\r\n </tr>\r\n <tr>\r\n <th>USER_ALLOWED_SAVE_COOKIE</th>\r\n <td>Indicates whether a customer allowed to use cookies.</td>\r\n </tr>\r\n <tr>\r\n <th>VIEWED_PRODUCT_IDS</th>\r\n <td>The products that you have recently viewed.</td>\r\n </tr>\r\n <tr>\r\n <th>WISHLIST</th>\r\n <td>An encrypted list of products added to your Wishlist.</td>\r\n </tr>\r\n <tr>\r\n <th>WISHLIST_CNT</th>\r\n <td>The number of items in your Wishlist.</td>\r\n </tr>\r\n </tbody>\r\n</table>','2015-02-08 22:15:03','2015-04-06 19:10:35',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(7,'Template Settings','two_columns_left',NULL,NULL,'template-settings',NULL,'<div class=\"page-title\">\r\n <h1>Template Settings</h1>\r\n</div>\r\n <h3><em>1. Home pages configurationn</em></h3>\r\n <table class=\"data-table data-table-indent\">\r\n <thead>\r\n <tr>\r\n <th>#</th>\r\n <th>Page Name</th> \r\n <th>Page HTML (Content tab)</th>\r\n <th>Page XML (Design tab)</th>\r\n <th>Layout</th>\r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr>\r\n <td>1.</td>\r\n <td>Home Page</td> \r\n <td>sources\\demo\\pages\\home_page.phtml</td>\r\n <td>sources\\demo\\pages\\home_page.xml</td>\r\n <td>1 columns</td> \r\n </tr>\r\n <tr>\r\n <td>2.</td>\r\n <td>About Us</td> \r\n <td>sources\\demo\\pages\\about_us.phtml</td>\r\n <td>NA</td>\r\n <td>1 columns</td> \r\n </tr>\r\n <tr>\r\n <td>3.</td>\r\n <td>Customer Service</td> \r\n <td>sources\\demo\\pages\\customer_service.phtml</td>\r\n <td>NA</td>\r\n <td>1 columns</td> \r\n </tr>\r\n <tr>\r\n <td>4.</td>\r\n <td>Privacy Policy</td> \r\n <td>sources\\demo\\pages\\privacy_policy.phtml</td>\r\n <td>NA</td>\r\n <td>1 columns</td> \r\n </tr>\r\n <tr>\r\n <td>5.</td>\r\n <td>Enable Cookies</td> \r\n <td>enable_cookies.phtml</td>\r\n <td>NA</td>\r\n <td>1 columns</td> \r\n </tr>\r\n <tr>\r\n <td>6.</td>\r\n <td>Page 404</td> \r\n <td>no-route.phtml</td>\r\n <td>NA</td>\r\n <td>2 columns left</td> \r\n </tr>\r\n </tbody>\r\n </table>\r\n\r\n<h3><em>2. Static blocks configuration</em></h3>\r\n\r\n<table class=\"data-table data-table-indent\">\r\n <thead>\r\n <tr>\r\n <th>#</th>\r\n <th>Block Name</th>\r\n <th>Block Title</th>\r\n <th>Identifier</th>\r\n <th>Content</th> \r\n </tr>\r\n </thead>\r\n <tbody>\r\n <tr>\r\n <td>1.</td>\r\n <td>Footer Links</td>\r\n <td>Footer Links</td>\r\n <td>footer_links</td>\r\n <td>sources\\demo\\static_blocks\\footer_links.phtml</td>\r\n </tr>\r\n <tr>\r\n <td>2.</td>\r\n <td>Footer List </td>\r\n <td>Footer List </td>\r\n <td>footer_list</td>\r\n <td>sources\\demo\\static_blocks\\footer_list.phtml</td>\r\n </tr>\r\n <tr>\r\n <td>3.</td>\r\n <td>Contact block</td>\r\n <td>Contact block</td>\r\n <td>contact_block</td>\r\n <td>sources\\demo\\static_blocks\\contact_block.phtml</td>\r\n </tr>\r\n <tr>\r\n <td>4.</td>\r\n <td>Cookie restriction notice</td>\r\n <td>Cookie restriction notice</td>\r\n <td>cookie_restriction_notice_block</td>\r\n <td>sources\\demo\\static_blocks\\cookie_restriction_notice_block.phtml</td>\r\n </tr>\r\n <tr>\r\n <td>5.</td>\r\n <td>Slider</td>\r\n <td>Slider</td>\r\n <td>slider</td>\r\n <td>sources\\demo\\static_blocks\\slider.phtml</td>\r\n </tr> \r\n <tr>\r\n <td>6.</td>\r\n <td>Header info</td>\r\n <td>Header info</td>\r\n <td>header-info</td>\r\n <td>sources\\demo\\static_blocks\\header-info.phtml</td>\r\n </tr> \r\n <tr>\r\n <td>7.</td>\r\n <td>Social buttons block</td>\r\n <td>Social buttons block</td>\r\n <td>social-buttons-block</td>\r\n <td>sources\\demo\\static_blocks\\social-buttons-block.phtml</td>\r\n </tr>\r\n </tbody>\r\n</table>','2015-04-10 13:34:04','2015-04-10 13:34:04',1,0,NULL,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `cms_page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_page_store` -- DROP TABLE IF EXISTS `cms_page_store`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cms_page_store` ( `page_id` smallint(6) NOT NULL COMMENT 'Page ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`page_id`,`store_id`), KEY `IDX_CMS_PAGE_STORE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='CMS Page To Store Linkage Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `cms_page_store` -- LOCK TABLES `cms_page_store` WRITE; /*!40000 ALTER TABLE `cms_page_store` DISABLE KEYS */; INSERT INTO `cms_page_store` VALUES (1,0),(2,0),(3,0),(4,0),(5,0),(6,0),(7,0); /*!40000 ALTER TABLE `cms_page_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_cache` -- DROP TABLE IF EXISTS `core_cache`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_cache` ( `id` varchar(200) NOT NULL COMMENT 'Cache Id', `data` mediumblob COMMENT 'Cache Data', `create_time` int(11) default NULL COMMENT 'Cache Creation Time', `update_time` int(11) default NULL COMMENT 'Time of Cache Updating', `expire_time` int(11) default NULL COMMENT 'Cache Expiration Time', PRIMARY KEY (`id`), KEY `IDX_CORE_CACHE_EXPIRE_TIME` (`expire_time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Caches'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_cache` -- LOCK TABLES `core_cache` WRITE; /*!40000 ALTER TABLE `core_cache` DISABLE KEYS */; /*!40000 ALTER TABLE `core_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_cache_option` -- DROP TABLE IF EXISTS `core_cache_option`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_cache_option` ( `code` varchar(32) NOT NULL COMMENT 'Code', `value` smallint(6) default NULL COMMENT 'Value', PRIMARY KEY (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cache Options'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_cache_option` -- LOCK TABLES `core_cache_option` WRITE; /*!40000 ALTER TABLE `core_cache_option` DISABLE KEYS */; INSERT INTO `core_cache_option` VALUES ('block_html',0),('collections',0),('config',0),('config_api',0),('config_api2',0),('eav',0),('layout',0),('translate',0); /*!40000 ALTER TABLE `core_cache_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_cache_tag` -- DROP TABLE IF EXISTS `core_cache_tag`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_cache_tag` ( `tag` varchar(100) NOT NULL COMMENT 'Tag', `cache_id` varchar(200) NOT NULL COMMENT 'Cache Id', PRIMARY KEY (`tag`,`cache_id`), KEY `IDX_CORE_CACHE_TAG_CACHE_ID` (`cache_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tag Caches'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_cache_tag` -- LOCK TABLES `core_cache_tag` WRITE; /*!40000 ALTER TABLE `core_cache_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `core_cache_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_config_data` -- DROP TABLE IF EXISTS `core_config_data`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_config_data` ( `config_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Config Id', `scope` varchar(8) NOT NULL default 'default' COMMENT 'Config Scope', `scope_id` int(11) NOT NULL default '0' COMMENT 'Config Scope Id', `path` varchar(255) NOT NULL default 'general' COMMENT 'Config Path', `value` text COMMENT 'Config Value', PRIMARY KEY (`config_id`), UNIQUE KEY `UNQ_CORE_CONFIG_DATA_SCOPE_SCOPE_ID_PATH` (`scope`,`scope_id`,`path`) ) ENGINE=MyISAM AUTO_INCREMENT=362 DEFAULT CHARSET=utf8 COMMENT='Config Data'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_config_data` -- LOCK TABLES `core_config_data` WRITE; /*!40000 ALTER TABLE `core_config_data` DISABLE KEYS */; INSERT INTO `core_config_data` VALUES (1,'default',0,'general/region/display_all','1'),(2,'default',0,'general/region/state_required','AT,CA,CH,DE,EE,ES,FI,FR,LT,LV,RO,US'),(3,'default',0,'catalog/category/root_id','2'),(4,'default',0,'payment/paypal_express/skip_order_review_step','1'),(5,'default',0,'payment/payflow_link/mobile_optimized','1'),(6,'default',0,'payment/payflow_advanced/mobile_optimized','1'),(7,'default',0,'payment/hosted_pro/mobile_optimized','1'),(8,'default',0,'web/seo/use_rewrites','1'),(9,'default',0,'admin/dashboard/enable_charts','1'),(10,'default',0,'web/unsecure/base_url','http://192.168.9.48/2015/March/25812_book-store_707/'),(11,'default',0,'web/secure/base_url','http://192.168.9.48/2015/March/25812_book-store_707/'),(12,'default',0,'general/locale/code','en_US'),(13,'default',0,'general/locale/timezone','America/Los_Angeles'),(14,'default',0,'currency/options/base','USD'),(15,'default',0,'currency/options/default','USD'),(16,'default',0,'currency/options/allow','GBP,EUR,USD'),(17,'default',0,'web/url/use_store','0'),(18,'default',0,'web/url/redirect_to_base','1'),(19,'default',0,'web/unsecure/base_link_url','{{unsecure_base_url}}'),(20,'default',0,'web/unsecure/base_skin_url','{{unsecure_base_url}}skin/'),(21,'default',0,'web/unsecure/base_media_url','{{unsecure_base_url}}media/'),(22,'default',0,'web/unsecure/base_js_url','{{unsecure_base_url}}js/'),(23,'default',0,'web/secure/base_link_url','{{secure_base_url}}'),(24,'default',0,'web/secure/base_skin_url','{{secure_base_url}}skin/'),(25,'default',0,'web/secure/base_media_url','{{secure_base_url}}media/'),(26,'default',0,'web/secure/base_js_url','{{secure_base_url}}js/'),(27,'default',0,'web/secure/use_in_frontend','0'),(28,'default',0,'web/secure/use_in_adminhtml','0'),(29,'default',0,'web/secure/offloader_header','SSL_OFFLOADED'),(30,'default',0,'web/default/front','cms'),(31,'default',0,'web/default/cms_home_page','home'),(32,'default',0,'web/default/no_route','cms/index/noRoute'),(33,'default',0,'web/default/cms_no_route','no-route'),(34,'default',0,'web/default/cms_no_cookies','enable-cookies'),(35,'default',0,'web/default/show_cms_breadcrumbs','1'),(36,'default',0,'web/polls/poll_check_by_ip','0'),(37,'default',0,'web/cookie/cookie_lifetime','36000'),(38,'default',0,'web/cookie/cookie_path',NULL),(39,'default',0,'web/cookie/cookie_domain',NULL),(40,'default',0,'web/cookie/cookie_httponly','1'),(41,'default',0,'web/cookie/cookie_restriction','0'),(42,'default',0,'web/session/use_remote_addr','0'),(43,'default',0,'web/session/use_http_via','0'),(44,'default',0,'web/session/use_http_x_forwarded_for','0'),(45,'default',0,'web/session/use_http_user_agent','0'),(46,'default',0,'web/session/use_frontend_sid','1'),(47,'default',0,'web/browser_capabilities/cookies','1'),(48,'default',0,'web/browser_capabilities/javascript','1'),(49,'default',0,'design/package/name','default'),(50,'default',0,'design/package/ua_regexp','a:0:{}'),(51,'default',0,'design/theme/locale',NULL),(52,'default',0,'design/theme/template','theme707'),(53,'default',0,'design/theme/template_ua_regexp','a:0:{}'),(54,'default',0,'design/theme/skin','theme707'),(55,'default',0,'design/theme/skin_ua_regexp','a:0:{}'),(56,'default',0,'design/theme/layout',NULL),(57,'default',0,'design/theme/layout_ua_regexp','a:0:{}'),(58,'default',0,'design/theme/default',NULL),(59,'default',0,'design/theme/default_ua_regexp','a:0:{}'),(60,'default',0,'design/head/default_title','Magento Commerce'),(61,'default',0,'design/head/title_prefix',NULL),(62,'default',0,'design/head/title_suffix',NULL),(63,'default',0,'design/head/default_description','Default Description'),(64,'default',0,'design/head/default_keywords','Magento, Varien, E-commerce'),(65,'default',0,'design/head/default_robots','INDEX,FOLLOW'),(66,'default',0,'design/head/includes',NULL),(67,'default',0,'design/head/demonotice','0'),(68,'default',0,'design/header/logo_src','images/logo.png'),(69,'default',0,'design/header/logo_alt','Magento Commerce'),(70,'default',0,'design/header/logo_src_small','images/logo.png'),(71,'default',0,'design/header/welcome','Welcome to our online store!'),(72,'default',0,'design/footer/copyright','© <script type=\"text/javascript\">var mdate = new Date(); document.write(mdate.getFullYear());</script> Magento Demo Store. All Rights Reserved.'),(73,'default',0,'design/footer/absolute_footer',NULL),(74,'default',0,'design/watermark/image_size',NULL),(75,'default',0,'design/watermark/image_imageOpacity',NULL),(76,'default',0,'design/watermark/image_position','stretch'),(77,'default',0,'design/watermark/small_image_size',NULL),(78,'default',0,'design/watermark/small_image_imageOpacity',NULL),(79,'default',0,'design/watermark/small_image_position','stretch'),(80,'default',0,'design/watermark/thumbnail_size',NULL),(81,'default',0,'design/watermark/thumbnail_imageOpacity',NULL),(82,'default',0,'design/watermark/thumbnail_position','stretch'),(83,'default',0,'design/pagination/pagination_frame','5'),(84,'default',0,'design/pagination/pagination_frame_skip',NULL),(85,'default',0,'design/pagination/anchor_text_for_previous',NULL),(86,'default',0,'design/pagination/anchor_text_for_next',NULL),(87,'default',0,'design/email/logo_alt',NULL),(88,'default',0,'design/email/logo_width',NULL),(89,'default',0,'design/email/logo_height',NULL),(90,'default',0,'design/email/header','design_email_header'),(91,'default',0,'design/email/footer','design_email_footer'),(92,'default',0,'design/email/css_non_inline','email-non-inline.css'),(93,'stores',2,'design/theme/locale','de_DE'),(94,'stores',2,'design/header/welcome','Willkommen Sie zu unserem Online-Shop!'),(95,'stores',2,'design/footer/copyright','© <script type=\"text/javascript\">var mdate = new Date(); document.write(mdate.getFullYear());</script> Magento Demo Store. Alle Rechte vorbehalten.'),(96,'stores',3,'design/theme/locale','es_ES'),(97,'stores',3,'design/header/welcome','¡Bienvenidos a nuestra tienda en línea!'),(98,'stores',3,'design/footer/copyright','© <script type=\"text/javascript\">var mdate = new Date(); document.write(mdate.getFullYear());</script> Tienda Demo de Magento. Todos los derechos reservados\r\n'),(99,'stores',4,'design/theme/locale','ru_RU'),(100,'stores',4,'design/header/welcome','Добро пожаловать в наш интернет-магазин!'),(101,'stores',4,'design/footer/copyright','© <script type=\"text/javascript\">var mdate = new Date(); document.write(mdate.getFullYear());</script> Magento Онлайн Магазин. Все права защищены.\r\n'),(102,'default',0,'cms/wysiwyg/enabled','hidden'),(103,'default',0,'cms/wysiwyg/use_static_urls_in_catalog','0'),(104,'default',0,'cataloginventory/options/can_back_in_stock','1'),(105,'default',0,'cataloginventory/options/can_subtract','1'),(106,'default',0,'cataloginventory/options/show_out_of_stock','1'),(107,'default',0,'cataloginventory/options/stock_threshold_qty','1000000'),(108,'default',0,'cataloginventory/options/display_product_stock_status','1'),(109,'default',0,'cataloginventory/item_options/manage_stock','1'),(110,'default',0,'cataloginventory/item_options/backorders','0'),(111,'default',0,'cataloginventory/item_options/max_sale_qty','10000'),(112,'default',0,'cataloginventory/item_options/min_qty','0'),(113,'default',0,'cataloginventory/item_options/min_sale_qty','1'),(114,'default',0,'cataloginventory/item_options/notify_stock_qty','1'),(115,'default',0,'cataloginventory/item_options/enable_qty_increments','0'),(116,'default',0,'cataloginventory/item_options/auto_return','0'),(117,'stores',2,'general/country/default','DE'),(118,'stores',2,'general/country/allow','DE'),(119,'stores',3,'general/country/default','ES'),(120,'stores',3,'general/country/allow','ES'),(121,'stores',4,'general/country/default','RU'),(122,'stores',4,'general/country/allow','RU'),(123,'default',0,'catalog/cloudzoom/enabled','1'),(124,'default',0,'catalog/cloudzoom/position','right'),(125,'default',0,'catalog/cloudzoom/show_title','1'),(126,'default',0,'catalog/cloudzoom/title_opacity','50'),(127,'default',0,'catalog/cloudzoom/lens_opacity','50'),(128,'default',0,'catalog/cloudzoom/zoom_width',NULL),(129,'default',0,'catalog/cloudzoom/zoom_height',NULL),(130,'default',0,'catalog/cloudzoom/big_image_width','600'),(131,'default',0,'catalog/cloudzoom/big_image_height','600'),(132,'default',0,'catalog/cloudzoom/tint_color',NULL),(133,'default',0,'catalog/cloudzoom/tint_opacity','50'),(134,'default',0,'catalog/frontend/list_mode','grid-list'),(135,'default',0,'catalog/frontend/grid_per_page_values','12,24,36'),(136,'default',0,'catalog/frontend/grid_per_page','12'),(137,'default',0,'catalog/frontend/list_per_page_values','5,10,15,20,25'),(138,'default',0,'catalog/frontend/list_per_page','10'),(139,'default',0,'catalog/frontend/list_allow_all','0'),(140,'default',0,'catalog/frontend/default_sort_by','position'),(141,'default',0,'catalog/frontend/flat_catalog_category','0'),(142,'default',0,'catalog/frontend/flat_catalog_product','0'),(143,'default',0,'catalog/frontend/parse_url_directives','1'),(144,'default',0,'catalog/review/allow_guest','1'),(145,'default',0,'catalog/sitemap/tree_mode','1'),(146,'default',0,'catalog/sitemap/lines_perpage','30'),(147,'default',0,'catalog/product_image/base_width','1800'),(148,'default',0,'catalog/product_image/small_width','210'),(149,'default',0,'catalog/productalert/allow_price','0'),(150,'default',0,'catalog/productalert/email_price_template','catalog_productalert_email_price_template'),(151,'default',0,'catalog/productalert/allow_stock','0'),(152,'default',0,'catalog/productalert/email_stock_template','catalog_productalert_email_stock_template'),(153,'default',0,'catalog/productalert/email_identity','general'),(154,'default',0,'catalog/productalert_cron/frequency','D'),(155,'default',0,'crontab/jobs/catalog_product_alert/schedule/cron_expr','0 0 * * *'),(156,'default',0,'crontab/jobs/catalog_product_alert/run/model','productalert/observer::process'),(157,'default',0,'catalog/productalert_cron/time','00,00,00'),(158,'default',0,'catalog/productalert_cron/error_email',NULL),(159,'default',0,'catalog/productalert_cron/error_email_identity','general'),(160,'default',0,'catalog/productalert_cron/error_email_template','catalog_productalert_cron_error_email_template'),(161,'default',0,'catalog/recently_products/scope','website'),(162,'default',0,'catalog/recently_products/viewed_count','5'),(163,'default',0,'catalog/recently_products/compared_count','5'),(164,'default',0,'catalog/price/scope','0'),(165,'default',0,'catalog/layered_navigation/display_product_count','1'),(166,'default',0,'catalog/layered_navigation/price_range_calculation','auto'),(167,'default',0,'catalog/navigation/max_depth','0'),(168,'default',0,'catalog/seo/site_map','1'),(169,'default',0,'catalog/seo/search_terms','1'),(170,'default',0,'catalog/seo/product_url_suffix','.html'),(171,'default',0,'catalog/seo/category_url_suffix','.html'),(172,'default',0,'catalog/seo/product_use_categories','0'),(173,'default',0,'catalog/seo/save_rewrites_history','1'),(174,'default',0,'catalog/seo/title_separator','-'),(175,'default',0,'catalog/seo/category_canonical_tag','1'),(176,'default',0,'catalog/seo/product_canonical_tag','1'),(177,'default',0,'catalog/search/min_query_length','1'),(178,'default',0,'catalog/search/max_query_length','128'),(179,'default',0,'catalog/search/max_query_words','10'),(180,'default',0,'catalog/search/search_type','1'),(181,'default',0,'catalog/search/use_layered_navigation_count','2000'),(182,'default',0,'catalog/downloadable/order_item_status','9'),(183,'default',0,'catalog/downloadable/downloads_number','0'),(184,'default',0,'catalog/downloadable/shareable','0'),(185,'default',0,'catalog/downloadable/samples_title','Samples'),(186,'default',0,'catalog/downloadable/links_title','Links'),(187,'default',0,'catalog/downloadable/links_target_new_window','1'),(188,'default',0,'catalog/downloadable/content_disposition','inline'),(189,'default',0,'catalog/downloadable/disable_guest_checkout','1'),(190,'default',0,'catalog/custom_options/use_calendar','0'),(191,'default',0,'catalog/custom_options/date_fields_order','m,d,y'),(192,'default',0,'catalog/custom_options/time_format','12h'),(193,'default',0,'catalog/custom_options/year_range',','),(203,'stores',2,'general/locale/code','de_DE'),(204,'stores',3,'general/locale/code','es_ES'),(205,'stores',4,'general/locale/code','ru_RU'),(206,'default',0,'currency/webservicex/timeout','100'),(207,'default',0,'currency/import/enabled','0'),(208,'default',0,'currency/import/service','webservicex'),(209,'default',0,'crontab/jobs/currency_rates_update/schedule/cron_expr','0 0 * * *'),(210,'default',0,'currency/import/time','00,00,00'),(211,'default',0,'currency/import/frequency','D'),(212,'default',0,'currency/import/error_email',NULL),(213,'default',0,'currency/import/error_email_identity','general'),(214,'default',0,'currency/import/error_email_template','currency_import_error_email_template'),(215,'default',0,'blog/blog/enabled','1'),(216,'default',0,'blog/blog/route',NULL),(217,'default',0,'blog/blog/title','Blog'),(218,'default',0,'blog/blog/keywords',NULL),(219,'default',0,'blog/blog/description',NULL),(220,'default',0,'blog/blog/layout','page/2columns-left.phtml'),(221,'default',0,'blog/blog/dateformat','full'),(222,'default',0,'blog/blog/blogcrumbs','1'),(223,'default',0,'blog/blog/readmore',NULL),(224,'default',0,'blog/blog/useshortcontent','1'),(225,'default',0,'blog/blog/parse_cms','1'),(226,'default',0,'blog/blog/perpage',NULL),(227,'default',0,'blog/blog/categories_urls','1'),(228,'default',0,'blog/blog/bookmarkslist','0'),(229,'default',0,'blog/blog/bookmarkspost','0'),(230,'default',0,'blog/blog/sorter','DESC'),(231,'default',0,'blog/menu/left','0'),(232,'default',0,'blog/menu/right','0'),(233,'default',0,'blog/menu/footer','1'),(234,'default',0,'blog/menu/top','1'),(235,'default',0,'blog/menu/recent',NULL),(236,'default',0,'blog/menu/category','1'),(237,'default',0,'blog/menu/tagcloud_size','10'),(238,'default',0,'blog/comments/enabled','1'),(239,'default',0,'blog/comments/login','0'),(240,'default',0,'blog/comments/approval','0'),(241,'default',0,'blog/comments/loginauto','0'),(242,'default',0,'blog/comments/recipient_email',NULL),(243,'default',0,'blog/comments/sender_email_identity','general'),(244,'default',0,'blog/comments/email_template','blog_comments_email_template'),(245,'default',0,'blog/comments/page_count','10'),(246,'default',0,'blog/recaptcha/enabled','0'),(247,'default',0,'blog/recaptcha/publickey',NULL),(248,'default',0,'blog/recaptcha/privatekey',NULL),(249,'default',0,'blog/rss/enable','0'),(250,'default',0,'blog/rss/image',NULL),(251,'default',0,'blog/rss/posts',NULL),(252,'default',0,'ajaxsearch/settings/enabled','0'),(253,'default',0,'ajaxsearch/settings/search_by_att','0'),(254,'default',0,'ajaxsearch/settings/width','400'),(255,'default',0,'ajaxsearch/settings/border_color','#FFFFFFF'),(256,'default',0,'ajaxsearch/settings/border_width','1'),(257,'default',0,'ajaxsearch/settings/hover_bg','#fafbff'),(258,'default',0,'ajaxsearch/settings/title_bg','#0e0200'),(259,'default',0,'ajaxsearch/settings/title_color','#e9f5ff'),(260,'default',0,'ajaxsearch/settings/highlight_color','#ff0000'),(261,'default',0,'ajaxsearch/settings/highlight_size','12'),(262,'default',0,'ajaxsearch/settings/min_char','3'),(263,'default',0,'ajaxsearch/settings/time_request','500'),(264,'default',0,'ajaxsearch/settings/noti_no_result','No results found.'),(265,'default',0,'ajaxsearch/settings/noti_color','#545454'),(266,'default',0,'ajaxsearch/searchbycategory/enable','1'),(267,'default',0,'ajaxsearch/searchbycategory/choosenumbersofcategory','2'),(268,'default',0,'ajaxsearch/searchbycategory/backgroundcategory','#ffffff'),(269,'default',0,'ajaxsearch/searchbycategory/backgroundcategoryhover','#fafafa'),(270,'default',0,'ajaxsearch/searchbycategory/colorstateactive','#000000'),(271,'default',0,'ajaxsearch/searchbycategory/backgroundheader','#000000'),(272,'default',0,'ajaxsearch/suggest/enable','0'),(273,'default',0,'ajaxsearch/suggest/suggest_color','#8e0900'),(274,'default',0,'ajaxsearch/suggest/count_color','#9b0c0e'),(275,'default',0,'ajaxsearch/suggest/hover_color','#ff816e'),(276,'default',0,'ajaxsearch/preview/enable','1'),(277,'default',0,'ajaxsearch/preview/number_product','10'),(278,'default',0,'ajaxsearch/preview/show_image','1'),(279,'default',0,'ajaxsearch/preview/show_name','1'),(280,'default',0,'ajaxsearch/preview/show_cat','1'),(281,'default',0,'ajaxsearch/preview/show_attribute','1'),(282,'default',0,'ajaxsearch/preview/show_description','1'),(283,'default',0,'ajaxsearch/preview/show_price','1'),(284,'default',0,'ajaxsearch/preview/show_rating','1'),(285,'default',0,'ajaxsearch/preview/show_countreviews','1'),(286,'default',0,'ajaxsearch/preview/show_viewall','0'),(287,'default',0,'ajaxsearch/preview/num_char_att','30'),(288,'default',0,'ajaxsearch/preview/num_char_description','200'),(289,'default',0,'ajaxsearch/preview/pro_title_color','#333333'),(290,'default',0,'ajaxsearch/preview/pro_cat_color','#679100'),(291,'default',0,'ajaxsearch/preview/pro_countreviews_color','#e24000'),(292,'default',0,'ajaxsearch/preview/pro_cat_hover_color','#fc00cd'),(293,'default',0,'ajaxsearch/preview/pro_price_color','#959595'),(294,'default',0,'ajaxsearch/preview/pro_old_price_color','#959595'),(295,'default',0,'ajaxsearch/preview/pro_description_color','#000000'),(296,'default',0,'ajaxsearch/preview/image_width','60'),(297,'default',0,'ajaxsearch/preview/image_height','60'),(298,'default',0,'ajaxsearch/preview/image_border_width','1'),(299,'default',0,'ajaxsearch/preview/image_border_color','#bbbbbb'),(300,'default',0,'ajaxsearch/preview/sort_by','0'),(301,'default',0,'ajaxsearch/preview/order','1'),(302,'default',0,'ajaxsearch/category/enable','0'),(303,'default',0,'ajaxsearch/category/cat_title_color','#414141'),(304,'default',0,'ajaxsearch/category/cat_description_color','#545454'),(305,'default',0,'ajaxsearch/page/enable','0'),(306,'default',0,'ajaxsearch/page/page_title_color','#414141'),(307,'default',0,'ajaxsearch/page/page_description_color','#545454'),(308,'default',0,'megamenu/mainmenu/enabled','0'),(309,'default',0,'megamenu/mainmenu/home','0'),(310,'default',0,'megamenu/mainmenu/home_color',NULL),(311,'default',0,'megamenu/mainmenu/home_background',NULL),(312,'default',0,'megamenu/mainmenu/width_menu','950'),(313,'default',0,'megamenu/mainmenu/width_thumbnail_category','24'),(314,'default',0,'megamenu/mainmenu/height_thumbnail_category','29'),(315,'default',0,'googlemap/embed/active','0'),(316,'default',0,'googlemap/embed/api_key',NULL),(317,'default',0,'googlemap/embed/coordinates','40.5770119,-73.969366'),(318,'default',0,'googlemap/embed/sensor','true'),(319,'default',0,'googlemap/embed/zoom',NULL),(320,'default',0,'googlemap/embed/type','ROADMAP'),(321,'default',0,'googlemap/embed/width','100%'),(322,'default',0,'googlemap/embed/height','200px'),(323,'default',0,'googlemap/embed/styles','[{\"featureType\":\"administrative.land_parcel\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"landscape.man_made\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"poi\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"simplified\"},{\"lightness\":20}]},{\"featureType\":\"road.highway\",\"elementType\":\"geometry\",\"stylers\":[{\"hue\":\"#f49935\"}]},{\"featureType\":\"road.highway\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"simplified\"}]},{\"featureType\":\"road.arterial\",\"elementType\":\"geometry\",\"stylers\":[{\"hue\":\"#fad959\"}]},{\"featureType\":\"road.arterial\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"road.local\",\"elementType\":\"geometry\",\"stylers\":[{\"visibility\":\"simplified\"}]},{\"featureType\":\"road.local\",\"elementType\":\"labels\",\"stylers\":[{\"visibility\":\"simplified\"}]},{\"featureType\":\"transit\",\"elementType\":\"all\",\"stylers\":[{\"visibility\":\"off\"}]},{\"featureType\":\"water\",\"elementType\":\"all\",\"stylers\":[{\"hue\":\"#a1cdfc\"},{\"saturation\":30},{\"lightness\":49}]}]'),(324,'default',0,'googlemap/embed/ui','true'),(325,'default',0,'googlemap/embed/scrollwheel','true'),(326,'default',0,'googlemap/embed/draggable','true'),(327,'default',0,'googlemap/embed/marker','true'),(328,'default',0,'googlemap/embed/marker_coordinates',NULL),(329,'default',0,'googlemap/embed/marker_title',NULL),(330,'default',0,'googlemap/embed/marker_image',NULL),(331,'default',0,'googlemap/embed/infowindow',NULL),(332,'default',0,'googlemap/contacts/active','1'),(333,'default',0,'googlemap/contacts/api_key',NULL),(334,'default',0,'googlemap/contacts/coordinates','40.5770119,-73.969366'),(335,'default',0,'googlemap/contacts/sensor','true'),(336,'default',0,'googlemap/contacts/zoom','8'),(337,'default',0,'googlemap/contacts/type','ROADMAP'),(338,'default',0,'googlemap/contacts/width','100%'),(339,'default',0,'googlemap/contacts/height','400px'),(340,'default',0,'googlemap/contacts/styles',NULL),(341,'default',0,'googlemap/contacts/ui','true'),(342,'default',0,'googlemap/contacts/marker','true'),(343,'default',0,'googlemap/contacts/marker_coordinates',NULL),(344,'default',0,'googlemap/contacts/marker_title',NULL),(345,'default',0,'googlemap/contacts/marker_image',NULL),(346,'default',0,'googlemap/contacts/infowindow',NULL),(347,'default',0,'productlistgallery/list/active','1'),(348,'default',0,'productlistgallery/list/image_width','228'),(349,'default',0,'productlistgallery/list/image_height','228'),(350,'default',0,'productlistgallery/list/thumb_size','63'),(351,'default',0,'productlistgallery/grid/active','1'),(352,'default',0,'productlistgallery/grid/image_width','210'),(353,'default',0,'productlistgallery/grid/image_height','210'),(354,'default',0,'productlistgallery/grid/thumb_size','46'),(355,'default',0,'productlistgallery/home_list/active','1'),(356,'default',0,'productlistgallery/home_list/image_width','228'),(357,'default',0,'productlistgallery/home_list/thumb_size','63'),(358,'default',0,'productlistgallery/home_grid/active','1'),(359,'default',0,'productlistgallery/home_grid/image_width','270'),(360,'default',0,'productlistgallery/home_grid/thumb_size','46'),(361,'default',0,'newsletterpopup/general/active','1'); /*!40000 ALTER TABLE `core_config_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_email_queue` -- DROP TABLE IF EXISTS `core_email_queue`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_email_queue` ( `message_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Message Id', `entity_id` int(10) unsigned default NULL COMMENT 'Entity ID', `entity_type` varchar(128) default NULL COMMENT 'Entity Type', `event_type` varchar(128) default NULL COMMENT 'Event Type', `message_body_hash` varchar(64) NOT NULL COMMENT 'Message Body Hash', `message_body` mediumtext NOT NULL COMMENT 'Message Body', `message_parameters` text NOT NULL COMMENT 'Message Parameters', `created_at` timestamp NULL default NULL COMMENT 'Creation Time', `processed_at` timestamp NULL default NULL COMMENT 'Finish Time', PRIMARY KEY (`message_id`), KEY `0ADECE62FD629241C147389ADF20706E` (`entity_id`,`entity_type`,`event_type`,`message_body_hash`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Email Queue'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_email_queue` -- LOCK TABLES `core_email_queue` WRITE; /*!40000 ALTER TABLE `core_email_queue` DISABLE KEYS */; /*!40000 ALTER TABLE `core_email_queue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_email_queue_recipients` -- DROP TABLE IF EXISTS `core_email_queue_recipients`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_email_queue_recipients` ( `recipient_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Recipient Id', `message_id` int(10) unsigned NOT NULL COMMENT 'Message ID', `recipient_email` varchar(128) NOT NULL COMMENT 'Recipient Email', `recipient_name` varchar(255) NOT NULL COMMENT 'Recipient Name', `email_type` smallint(6) NOT NULL default '0' COMMENT 'Email Type', PRIMARY KEY (`recipient_id`), UNIQUE KEY `19BDB9C5FE4BD685FCF992A71E976CD0` (`message_id`,`recipient_email`,`email_type`), KEY `IDX_CORE_EMAIL_QUEUE_RECIPIENTS_RECIPIENT_EMAIL` (`recipient_email`), KEY `IDX_CORE_EMAIL_QUEUE_RECIPIENTS_EMAIL_TYPE` (`email_type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Email Queue'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_email_queue_recipients` -- LOCK TABLES `core_email_queue_recipients` WRITE; /*!40000 ALTER TABLE `core_email_queue_recipients` DISABLE KEYS */; /*!40000 ALTER TABLE `core_email_queue_recipients` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_email_template` -- DROP TABLE IF EXISTS `core_email_template`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_email_template` ( `template_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Template Id', `template_code` varchar(150) NOT NULL COMMENT 'Template Name', `template_text` text NOT NULL COMMENT 'Template Content', `template_styles` text COMMENT 'Templste Styles', `template_type` int(10) unsigned default NULL COMMENT 'Template Type', `template_subject` varchar(200) NOT NULL COMMENT 'Template Subject', `template_sender_name` varchar(200) default NULL COMMENT 'Template Sender Name', `template_sender_email` varchar(200) default NULL COMMENT 'Template Sender Email', `added_at` timestamp NULL default NULL COMMENT 'Date of Template Creation', `modified_at` timestamp NULL default NULL COMMENT 'Date of Template Modification', `orig_template_code` varchar(200) default NULL COMMENT 'Original Template Code', `orig_template_variables` text COMMENT 'Original Template Variables', PRIMARY KEY (`template_id`), UNIQUE KEY `UNQ_CORE_EMAIL_TEMPLATE_TEMPLATE_CODE` (`template_code`), KEY `IDX_CORE_EMAIL_TEMPLATE_ADDED_AT` (`added_at`), KEY `IDX_CORE_EMAIL_TEMPLATE_MODIFIED_AT` (`modified_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Email Templates'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_email_template` -- LOCK TABLES `core_email_template` WRITE; /*!40000 ALTER TABLE `core_email_template` DISABLE KEYS */; /*!40000 ALTER TABLE `core_email_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_flag` -- DROP TABLE IF EXISTS `core_flag`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_flag` ( `flag_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Flag Id', `flag_code` varchar(255) NOT NULL COMMENT 'Flag Code', `state` smallint(5) unsigned NOT NULL default '0' COMMENT 'Flag State', `flag_data` text COMMENT 'Flag Data', `last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP COMMENT 'Date of Last Flag Update', PRIMARY KEY (`flag_id`), KEY `IDX_CORE_FLAG_LAST_UPDATE` (`last_update`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Flag'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_flag` -- LOCK TABLES `core_flag` WRITE; /*!40000 ALTER TABLE `core_flag` DISABLE KEYS */; INSERT INTO `core_flag` VALUES (1,'admin_notification_survey',0,'a:1:{s:13:\"survey_viewed\";b:1;}','2015-03-30 18:32:53'),(2,'catalog_product_flat',0,'a:2:{s:8:\"is_built\";b:1;s:16:\"is_store_built_1\";b:1;}','2015-02-08 22:27:18'); /*!40000 ALTER TABLE `core_flag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_layout_link` -- DROP TABLE IF EXISTS `core_layout_link`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_layout_link` ( `layout_link_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Link Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `area` varchar(64) default NULL COMMENT 'Area', `package` varchar(64) default NULL COMMENT 'Package', `theme` varchar(64) default NULL COMMENT 'Theme', `layout_update_id` int(10) unsigned NOT NULL default '0' COMMENT 'Layout Update Id', PRIMARY KEY (`layout_link_id`), UNIQUE KEY `UNQ_CORE_LAYOUT_LINK_STORE_ID_PACKAGE_THEME_LAYOUT_UPDATE_ID` (`store_id`,`package`,`theme`,`layout_update_id`), KEY `IDX_CORE_LAYOUT_LINK_LAYOUT_UPDATE_ID` (`layout_update_id`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Layout Link'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_layout_link` -- LOCK TABLES `core_layout_link` WRITE; /*!40000 ALTER TABLE `core_layout_link` DISABLE KEYS */; INSERT INTO `core_layout_link` VALUES (4,0,'frontend','default','theme707',4),(5,0,'frontend','default','theme707',5),(7,0,'frontend','default','theme707',7),(8,0,'frontend','default','theme707',8); /*!40000 ALTER TABLE `core_layout_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_layout_update` -- DROP TABLE IF EXISTS `core_layout_update`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_layout_update` ( `layout_update_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Layout Update Id', `handle` varchar(255) default NULL COMMENT 'Handle', `xml` text COMMENT 'Xml', `sort_order` smallint(6) NOT NULL default '0' COMMENT 'Sort Order', PRIMARY KEY (`layout_update_id`), KEY `IDX_CORE_LAYOUT_UPDATE_HANDLE` (`handle`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Layout Updates'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_layout_update` -- LOCK TABLES `core_layout_update` WRITE; /*!40000 ALTER TABLE `core_layout_update` DISABLE KEYS */; INSERT INTO `core_layout_update` VALUES (4,'cms_index_index','<reference name=\"left\"><block type=\"catalogsale/widget_list\" name=\"68dea9c895d09482dc154e5f50e60b1a\" template=\"catalog/product/widget/sale/sale_default_list.phtml\"><action method=\"setData\"><name>products_count</name><value>5</value></action></block></reference>',0),(5,'cms_index_index','<reference name=\"content\"><block type=\"cms/widget_block\" name=\"2a7451b775093633a590ccce109da623\" template=\"cms/widget/static_block/default.phtml\"><action method=\"setData\"><name>block_id</name><value>13</value></action></block></reference>',0),(7,'cms_index_index','<reference name=\"content\"><block type=\"catalog/product_widget_new\" name=\"5033bd2cff252331abb1268e10b28064\" template=\"catalog/product/widget/new/content/new_grid.phtml\"><action method=\"setData\"><name>display_type</name><value>new_products</value></action><action method=\"setData\"><name>show_pager</name><value>0</value></action><action method=\"setData\"><name>products_count</name><value>10</value></action></block></reference>',1),(8,'cms_index_index','<reference name=\"aw_blog_footer\"><block type=\"blog/last\" name=\"8afd1e02880578ac10afce4598a3f894\"><action method=\"setData\"><name>blocks_count</name><value>2</value></action><action method=\"setData\"><name>categories</name><value>1</value></action></block></reference>',3); /*!40000 ALTER TABLE `core_layout_update` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_resource` -- DROP TABLE IF EXISTS `core_resource`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_resource` ( `code` varchar(50) NOT NULL COMMENT 'Resource Code', `version` varchar(50) default NULL COMMENT 'Resource Version', `data_version` varchar(50) default NULL COMMENT 'Data Version', PRIMARY KEY (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Resources'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_resource` -- LOCK TABLES `core_resource` WRITE; /*!40000 ALTER TABLE `core_resource` DISABLE KEYS */; INSERT INTO `core_resource` VALUES ('adminnotification_setup','1.6.0.0','1.6.0.0'),('admin_setup','1.6.1.1','1.6.1.1'),('api2_setup','1.0.0.0','1.0.0.0'),('api_setup','1.6.0.1','1.6.0.1'),('backup_setup','1.6.0.0','1.6.0.0'),('blog_setup','1.3.3','1.3.3'),('bundle_setup','1.6.0.0.1','1.6.0.0.1'),('captcha_setup','1.7.0.0.0','1.7.0.0.0'),('catalogindex_setup','1.6.0.0','1.6.0.0'),('cataloginventory_setup','1.6.0.0.2','1.6.0.0.2'),('catalogrule_setup','1.6.0.3','1.6.0.3'),('catalogsearch_setup','1.8.2.0','1.8.2.0'),('catalog_setup','1.6.0.0.19','1.6.0.0.19'),('checkout_setup','1.6.0.0','1.6.0.0'),('cms_setup','1.6.0.0.2','1.6.0.0.2'),('compiler_setup','1.6.0.0','1.6.0.0'),('contacts_setup','1.6.0.0','1.6.0.0'),('core_setup','1.6.0.6','1.6.0.6'),('cron_setup','1.6.0.0','1.6.0.0'),('customer_setup','1.6.2.0.3','1.6.2.0.3'),('dataflow_setup','1.6.0.0','1.6.0.0'),('directory_setup','1.6.0.2','1.6.0.2'),('downloadable_setup','1.6.0.0.2','1.6.0.0.2'),('eav_setup','1.6.0.1','1.6.0.1'),('giftmessage_setup','1.6.0.0','1.6.0.0'),('googleanalytics_setup','1.6.0.0','1.6.0.0'),('importexport_setup','1.6.0.2','1.6.0.2'),('index_setup','1.6.0.0','1.6.0.0'),('log_setup','1.6.1.0','1.6.1.0'),('megamenu_setup','0.1.0','0.1.0'),('moneybookers_setup','1.6.0.0','1.6.0.0'),('newsletter_setup','1.6.0.2','1.6.0.2'),('oauth_setup','1.0.0.0','1.0.0.0'),('paygate_setup','1.6.0.0','1.6.0.0'),('payment_setup','1.6.0.0','1.6.0.0'),('paypaluk_setup','1.6.0.0','1.6.0.0'),('paypal_setup','1.6.0.6','1.6.0.6'),('persistent_setup','1.0.0.0','1.0.0.0'),('poll_setup','1.6.0.0','1.6.0.0'),('productalert_setup','1.6.0.0','1.6.0.0'),('rating_setup','1.6.0.0','1.6.0.0'),('reports_setup','1.6.0.0.1','1.6.0.0.1'),('review_setup','1.6.0.0','1.6.0.0'),('salesrule_setup','1.6.0.3','1.6.0.3'),('sales_setup','1.6.0.8','1.6.0.8'),('sendfriend_setup','1.6.0.0','1.6.0.0'),('sharingtool_setup','1.0.1','1.0.1'),('shipping_setup','1.6.0.0','1.6.0.0'),('sitemap_setup','1.6.0.0','1.6.0.0'),('sociallogin_setup','2.1.4','2.1.4'),('tag_setup','1.6.0.0','1.6.0.0'),('tax_setup','1.6.0.4','1.6.0.4'),('usa_setup','1.6.0.3','1.6.0.3'),('weee_setup','1.6.0.0','1.6.0.0'),('widget_setup','1.6.0.0','1.6.0.0'),('wishlist_setup','1.6.0.0','1.6.0.0'); /*!40000 ALTER TABLE `core_resource` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_session` -- DROP TABLE IF EXISTS `core_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_session` ( `session_id` varchar(255) NOT NULL COMMENT 'Session Id', `session_expires` int(10) unsigned NOT NULL default '0' COMMENT 'Date of Session Expiration', `session_data` mediumblob NOT NULL COMMENT 'Session Data', PRIMARY KEY (`session_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Database Sessions Storage'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_session` -- LOCK TABLES `core_session` WRITE; /*!40000 ALTER TABLE `core_session` DISABLE KEYS */; /*!40000 ALTER TABLE `core_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_store` -- DROP TABLE IF EXISTS `core_store`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_store` ( `store_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Store Id', `code` varchar(32) default NULL COMMENT 'Code', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website Id', `group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Group Id', `name` varchar(255) NOT NULL COMMENT 'Store Name', `sort_order` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Sort Order', `is_active` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Activity', PRIMARY KEY (`store_id`), UNIQUE KEY `UNQ_CORE_STORE_CODE` (`code`), KEY `IDX_CORE_STORE_WEBSITE_ID` (`website_id`), KEY `IDX_CORE_STORE_IS_ACTIVE_SORT_ORDER` (`is_active`,`sort_order`), KEY `IDX_CORE_STORE_GROUP_ID` (`group_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Stores'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_store` -- LOCK TABLES `core_store` WRITE; /*!40000 ALTER TABLE `core_store` DISABLE KEYS */; INSERT INTO `core_store` VALUES (0,'admin',0,0,'Admin',0,1),(1,'english',1,1,'English',0,1),(2,'german',1,1,'German',1,1),(3,'spanish',1,1,'Spanish',2,1),(4,'russian',1,1,'Russian',3,1); /*!40000 ALTER TABLE `core_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_store_group` -- DROP TABLE IF EXISTS `core_store_group`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_store_group` ( `group_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Group Id', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website Id', `name` varchar(255) NOT NULL COMMENT 'Store Group Name', `root_category_id` int(10) unsigned NOT NULL default '0' COMMENT 'Root Category Id', `default_store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Default Store Id', PRIMARY KEY (`group_id`), KEY `IDX_CORE_STORE_GROUP_WEBSITE_ID` (`website_id`), KEY `IDX_CORE_STORE_GROUP_DEFAULT_STORE_ID` (`default_store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Store Groups'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_store_group` -- LOCK TABLES `core_store_group` WRITE; /*!40000 ALTER TABLE `core_store_group` DISABLE KEYS */; INSERT INTO `core_store_group` VALUES (0,0,'Default',0,0),(1,1,'Main Website Store',2,1); /*!40000 ALTER TABLE `core_store_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_translate` -- DROP TABLE IF EXISTS `core_translate`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_translate` ( `key_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Key Id of Translation', `string` varchar(255) NOT NULL default 'Translate String' COMMENT 'Translation String', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `translate` varchar(255) default NULL COMMENT 'Translate', `locale` varchar(20) NOT NULL default 'en_US' COMMENT 'Locale', `crc_string` bigint(20) NOT NULL default '1591228201' COMMENT 'Translation String CRC32 Hash', PRIMARY KEY (`key_id`), UNIQUE KEY `UNQ_CORE_TRANSLATE_STORE_ID_LOCALE_CRC_STRING_STRING` (`store_id`,`locale`,`crc_string`,`string`), KEY `IDX_CORE_TRANSLATE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Translations'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_translate` -- LOCK TABLES `core_translate` WRITE; /*!40000 ALTER TABLE `core_translate` DISABLE KEYS */; /*!40000 ALTER TABLE `core_translate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_url_rewrite` -- DROP TABLE IF EXISTS `core_url_rewrite`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_url_rewrite` ( `url_rewrite_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rewrite Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `id_path` varchar(255) default NULL COMMENT 'Id Path', `request_path` varchar(255) default NULL COMMENT 'Request Path', `target_path` varchar(255) default NULL COMMENT 'Target Path', `is_system` smallint(5) unsigned default '1' COMMENT 'Defines is Rewrite System', `options` varchar(255) default NULL COMMENT 'Options', `description` varchar(255) default NULL COMMENT 'Deascription', `category_id` int(10) unsigned default NULL COMMENT 'Category Id', `product_id` int(10) unsigned default NULL COMMENT 'Product Id', PRIMARY KEY (`url_rewrite_id`), UNIQUE KEY `UNQ_CORE_URL_REWRITE_REQUEST_PATH_STORE_ID` (`request_path`,`store_id`), UNIQUE KEY `UNQ_CORE_URL_REWRITE_ID_PATH_IS_SYSTEM_STORE_ID` (`id_path`,`is_system`,`store_id`), KEY `IDX_CORE_URL_REWRITE_TARGET_PATH_STORE_ID` (`target_path`,`store_id`), KEY `IDX_CORE_URL_REWRITE_ID_PATH` (`id_path`), KEY `IDX_CORE_URL_REWRITE_STORE_ID` (`store_id`), KEY `FK_CORE_URL_REWRITE_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` (`category_id`), KEY `FK_CORE_URL_REWRITE_PRODUCT_ID_CATALOG_CATEGORY_ENTITY_ENTITY_ID` (`product_id`) ) ENGINE=MyISAM AUTO_INCREMENT=1520 DEFAULT CHARSET=utf8 COMMENT='Url Rewrites'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_url_rewrite` -- LOCK TABLES `core_url_rewrite` WRITE; /*!40000 ALTER TABLE `core_url_rewrite` DISABLE KEYS */; INSERT INTO `core_url_rewrite` VALUES (1,1,'category/3','books.html','catalog/category/view/id/3',1,NULL,NULL,3,NULL),(2,2,'category/3','books.html','catalog/category/view/id/3',1,NULL,NULL,3,NULL),(3,3,'category/3','books.html','catalog/category/view/id/3',1,NULL,NULL,3,NULL),(4,4,'category/3','books.html','catalog/category/view/id/3',1,NULL,NULL,3,NULL),(5,1,'category/4','books/children-s-books.html','catalog/category/view/id/4',1,NULL,NULL,4,NULL),(6,2,'category/4','books/children-s-books.html','catalog/category/view/id/4',1,NULL,NULL,4,NULL),(7,3,'category/4','books/children-s-books.html','catalog/category/view/id/4',1,NULL,NULL,4,NULL),(8,4,'category/4','books/children-s-books.html','catalog/category/view/id/4',1,NULL,NULL,4,NULL),(9,1,'category/5','books/science-fiction.html','catalog/category/view/id/5',1,NULL,NULL,5,NULL),(10,2,'category/5','books/science-fiction.html','catalog/category/view/id/5',1,NULL,NULL,5,NULL),(11,3,'category/5','books/science-fiction.html','catalog/category/view/id/5',1,NULL,NULL,5,NULL),(12,4,'category/5','books/science-fiction.html','catalog/category/view/id/5',1,NULL,NULL,5,NULL),(13,1,'category/6','books/detective-stories.html','catalog/category/view/id/6',1,NULL,NULL,6,NULL),(14,2,'category/6','books/detective-stories.html','catalog/category/view/id/6',1,NULL,NULL,6,NULL),(15,3,'category/6','books/detective-stories.html','catalog/category/view/id/6',1,NULL,NULL,6,NULL),(16,4,'category/6','books/detective-stories.html','catalog/category/view/id/6',1,NULL,NULL,6,NULL),(17,1,'category/7','books/romance.html','catalog/category/view/id/7',1,NULL,NULL,7,NULL),(18,2,'category/7','books/romance.html','catalog/category/view/id/7',1,NULL,NULL,7,NULL),(19,3,'category/7','books/romance.html','catalog/category/view/id/7',1,NULL,NULL,7,NULL),(20,4,'category/7','books/romance.html','catalog/category/view/id/7',1,NULL,NULL,7,NULL),(21,1,'category/8','books/belles-lettres.html','catalog/category/view/id/8',1,NULL,NULL,8,NULL),(22,2,'category/8','books/belles-lettres.html','catalog/category/view/id/8',1,NULL,NULL,8,NULL),(23,3,'category/8','books/belles-lettres.html','catalog/category/view/id/8',1,NULL,NULL,8,NULL),(24,4,'category/8','books/belles-lettres.html','catalog/category/view/id/8',1,NULL,NULL,8,NULL),(25,1,'category/9','books/poetry.html','catalog/category/view/id/9',1,NULL,NULL,9,NULL),(26,2,'category/9','books/poetry.html','catalog/category/view/id/9',1,NULL,NULL,9,NULL),(27,3,'category/9','books/poetry.html','catalog/category/view/id/9',1,NULL,NULL,9,NULL),(28,4,'category/9','books/poetry.html','catalog/category/view/id/9',1,NULL,NULL,9,NULL),(29,1,'category/10','books/classic.html','catalog/category/view/id/10',1,NULL,NULL,10,NULL),(30,2,'category/10','books/classic.html','catalog/category/view/id/10',1,NULL,NULL,10,NULL),(31,3,'category/10','books/classic.html','catalog/category/view/id/10',1,NULL,NULL,10,NULL),(32,4,'category/10','books/classic.html','catalog/category/view/id/10',1,NULL,NULL,10,NULL),(33,1,'category/11','magazines.html','catalog/category/view/id/11',1,NULL,NULL,11,NULL),(34,2,'category/11','magazines.html','catalog/category/view/id/11',1,NULL,NULL,11,NULL),(35,3,'category/11','magazines.html','catalog/category/view/id/11',1,NULL,NULL,11,NULL),(36,4,'category/11','magazines.html','catalog/category/view/id/11',1,NULL,NULL,11,NULL),(37,1,'category/12','comics.html','catalog/category/view/id/12',1,NULL,NULL,12,NULL),(38,2,'category/12','comics.html','catalog/category/view/id/12',1,NULL,NULL,12,NULL),(39,3,'category/12','comics.html','catalog/category/view/id/12',1,NULL,NULL,12,NULL),(40,4,'category/12','comics.html','catalog/category/view/id/12',1,NULL,NULL,12,NULL),(41,1,'category/13','cd-dvd.html','catalog/category/view/id/13',1,NULL,NULL,13,NULL),(42,2,'category/13','cd-dvd.html','catalog/category/view/id/13',1,NULL,NULL,13,NULL),(43,3,'category/13','cd-dvd.html','catalog/category/view/id/13',1,NULL,NULL,13,NULL),(44,4,'category/13','cd-dvd.html','catalog/category/view/id/13',1,NULL,NULL,13,NULL),(45,1,'category/14','cards.html','catalog/category/view/id/14',1,NULL,NULL,14,NULL),(46,2,'category/14','cards.html','catalog/category/view/id/14',1,NULL,NULL,14,NULL),(47,3,'category/14','cards.html','catalog/category/view/id/14',1,NULL,NULL,14,NULL),(48,4,'category/14','cards.html','catalog/category/view/id/14',1,NULL,NULL,14,NULL),(49,1,'category/15','calendars.html','catalog/category/view/id/15',1,NULL,NULL,15,NULL),(50,2,'category/15','calendars.html','catalog/category/view/id/15',1,NULL,NULL,15,NULL),(51,3,'category/15','calendars.html','catalog/category/view/id/15',1,NULL,NULL,15,NULL),(52,4,'category/15','calendars.html','catalog/category/view/id/15',1,NULL,NULL,15,NULL),(53,1,'category/16','blanks.html','catalog/category/view/id/16',1,NULL,NULL,16,NULL),(54,2,'category/16','blanks.html','catalog/category/view/id/16',1,NULL,NULL,16,NULL),(55,3,'category/16','blanks.html','catalog/category/view/id/16',1,NULL,NULL,16,NULL),(56,4,'category/16','blanks.html','catalog/category/view/id/16',1,NULL,NULL,16,NULL),(57,1,'category/17','rarity.html','catalog/category/view/id/17',1,NULL,NULL,17,NULL),(58,2,'category/17','rarity.html','catalog/category/view/id/17',1,NULL,NULL,17,NULL),(59,3,'category/17','rarity.html','catalog/category/view/id/17',1,NULL,NULL,17,NULL),(60,4,'category/17','rarity.html','catalog/category/view/id/17',1,NULL,NULL,17,NULL),(61,1,'category/18','antiques.html','catalog/category/view/id/18',1,NULL,NULL,18,NULL),(62,2,'category/18','antiques.html','catalog/category/view/id/18',1,NULL,NULL,18,NULL),(63,3,'category/18','antiques.html','catalog/category/view/id/18',1,NULL,NULL,18,NULL),(64,4,'category/18','antiques.html','catalog/category/view/id/18',1,NULL,NULL,18,NULL),(65,1,'category/19','writing-materials.html','catalog/category/view/id/19',1,NULL,NULL,19,NULL),(66,2,'category/19','writing-materials.html','catalog/category/view/id/19',1,NULL,NULL,19,NULL),(67,3,'category/19','writing-materials.html','catalog/category/view/id/19',1,NULL,NULL,19,NULL),(68,4,'category/19','writing-materials.html','catalog/category/view/id/19',1,NULL,NULL,19,NULL),(69,1,'category/20','posters.html','catalog/category/view/id/20',1,NULL,NULL,20,NULL),(70,2,'category/20','posters.html','catalog/category/view/id/20',1,NULL,NULL,20,NULL),(71,3,'category/20','posters.html','catalog/category/view/id/20',1,NULL,NULL,20,NULL),(72,4,'category/20','posters.html','catalog/category/view/id/20',1,NULL,NULL,20,NULL),(73,1,'category/21','visiting-cards.html','catalog/category/view/id/21',1,NULL,NULL,21,NULL),(74,2,'category/21','visiting-cards.html','catalog/category/view/id/21',1,NULL,NULL,21,NULL),(75,3,'category/21','visiting-cards.html','catalog/category/view/id/21',1,NULL,NULL,21,NULL),(76,4,'category/21','visiting-cards.html','catalog/category/view/id/21',1,NULL,NULL,21,NULL),(77,1,'product/1/3','books/after-ever-happy.html','catalog/product/view/id/1/category/3',1,NULL,NULL,3,1),(78,1,'product/1/4','books/children-s-books/after-ever-happy.html','catalog/product/view/id/1/category/4',1,NULL,NULL,4,1),(79,1,'product/1/5','books/science-fiction/after-ever-happy.html','catalog/product/view/id/1/category/5',1,NULL,NULL,5,1),(80,1,'product/1/6','books/detective-stories/after-ever-happy.html','catalog/product/view/id/1/category/6',1,NULL,NULL,6,1),(81,1,'product/1/7','books/romance/after-ever-happy.html','catalog/product/view/id/1/category/7',1,NULL,NULL,7,1),(82,1,'product/1/8','books/belles-lettres/after-ever-happy.html','catalog/product/view/id/1/category/8',1,NULL,NULL,8,1),(83,1,'product/1/9','books/poetry/after-ever-happy.html','catalog/product/view/id/1/category/9',1,NULL,NULL,9,1),(84,1,'product/1/10','books/classic/after-ever-happy.html','catalog/product/view/id/1/category/10',1,NULL,NULL,10,1),(85,1,'product/1/11','magazines/after-ever-happy.html','catalog/product/view/id/1/category/11',1,NULL,NULL,11,1),(86,1,'product/1/12','comics/after-ever-happy.html','catalog/product/view/id/1/category/12',1,NULL,NULL,12,1),(87,1,'product/1','after-ever-happy.html','catalog/product/view/id/1',1,NULL,NULL,NULL,1),(88,2,'product/1/3','books/after-ever-happy.html','catalog/product/view/id/1/category/3',1,NULL,NULL,3,1),(89,2,'product/1/4','books/children-s-books/after-ever-happy.html','catalog/product/view/id/1/category/4',1,NULL,NULL,4,1),(90,2,'product/1/5','books/science-fiction/after-ever-happy.html','catalog/product/view/id/1/category/5',1,NULL,NULL,5,1),(91,2,'product/1/6','books/detective-stories/after-ever-happy.html','catalog/product/view/id/1/category/6',1,NULL,NULL,6,1),(92,2,'product/1/7','books/romance/after-ever-happy.html','catalog/product/view/id/1/category/7',1,NULL,NULL,7,1),(93,2,'product/1/8','books/belles-lettres/after-ever-happy.html','catalog/product/view/id/1/category/8',1,NULL,NULL,8,1),(94,2,'product/1/9','books/poetry/after-ever-happy.html','catalog/product/view/id/1/category/9',1,NULL,NULL,9,1),(95,2,'product/1/10','books/classic/after-ever-happy.html','catalog/product/view/id/1/category/10',1,NULL,NULL,10,1),(96,2,'product/1/11','magazines/after-ever-happy.html','catalog/product/view/id/1/category/11',1,NULL,NULL,11,1),(97,2,'product/1/12','comics/after-ever-happy.html','catalog/product/view/id/1/category/12',1,NULL,NULL,12,1),(98,2,'product/1','after-ever-happy.html','catalog/product/view/id/1',1,NULL,NULL,NULL,1),(99,3,'product/1/3','books/after-ever-happy.html','catalog/product/view/id/1/category/3',1,NULL,NULL,3,1),(100,3,'product/1/4','books/children-s-books/after-ever-happy.html','catalog/product/view/id/1/category/4',1,NULL,NULL,4,1),(101,3,'product/1/5','books/science-fiction/after-ever-happy.html','catalog/product/view/id/1/category/5',1,NULL,NULL,5,1),(102,3,'product/1/6','books/detective-stories/after-ever-happy.html','catalog/product/view/id/1/category/6',1,NULL,NULL,6,1),(103,3,'product/1/7','books/romance/after-ever-happy.html','catalog/product/view/id/1/category/7',1,NULL,NULL,7,1),(104,3,'product/1/8','books/belles-lettres/after-ever-happy.html','catalog/product/view/id/1/category/8',1,NULL,NULL,8,1),(105,3,'product/1/9','books/poetry/after-ever-happy.html','catalog/product/view/id/1/category/9',1,NULL,NULL,9,1),(106,3,'product/1/10','books/classic/after-ever-happy.html','catalog/product/view/id/1/category/10',1,NULL,NULL,10,1),(107,3,'product/1/11','magazines/after-ever-happy.html','catalog/product/view/id/1/category/11',1,NULL,NULL,11,1),(108,3,'product/1/12','comics/after-ever-happy.html','catalog/product/view/id/1/category/12',1,NULL,NULL,12,1),(109,3,'product/1','after-ever-happy.html','catalog/product/view/id/1',1,NULL,NULL,NULL,1),(110,4,'product/1/3','books/after-ever-happy.html','catalog/product/view/id/1/category/3',1,NULL,NULL,3,1),(111,4,'product/1/4','books/children-s-books/after-ever-happy.html','catalog/product/view/id/1/category/4',1,NULL,NULL,4,1),(112,4,'product/1/5','books/science-fiction/after-ever-happy.html','catalog/product/view/id/1/category/5',1,NULL,NULL,5,1),(113,4,'product/1/6','books/detective-stories/after-ever-happy.html','catalog/product/view/id/1/category/6',1,NULL,NULL,6,1),(114,4,'product/1/7','books/romance/after-ever-happy.html','catalog/product/view/id/1/category/7',1,NULL,NULL,7,1),(115,4,'product/1/8','books/belles-lettres/after-ever-happy.html','catalog/product/view/id/1/category/8',1,NULL,NULL,8,1),(116,4,'product/1/9','books/poetry/after-ever-happy.html','catalog/product/view/id/1/category/9',1,NULL,NULL,9,1),(117,4,'product/1/10','books/classic/after-ever-happy.html','catalog/product/view/id/1/category/10',1,NULL,NULL,10,1),(118,4,'product/1/11','magazines/after-ever-happy.html','catalog/product/view/id/1/category/11',1,NULL,NULL,11,1),(119,4,'product/1/12','comics/after-ever-happy.html','catalog/product/view/id/1/category/12',1,NULL,NULL,12,1),(120,4,'product/1','after-ever-happy.html','catalog/product/view/id/1',1,NULL,NULL,NULL,1),(121,1,'product/2/3','books/apples-and-pumpkins.html','catalog/product/view/id/2/category/3',1,NULL,NULL,3,2),(122,1,'product/2/4','books/children-s-books/apples-and-pumpkins.html','catalog/product/view/id/2/category/4',1,NULL,NULL,4,2),(123,1,'product/2/20','posters/apples-and-pumpkins.html','catalog/product/view/id/2/category/20',1,NULL,NULL,20,2),(124,1,'product/2/21','visiting-cards/apples-and-pumpkins.html','catalog/product/view/id/2/category/21',1,NULL,NULL,21,2),(125,1,'product/2','apples-and-pumpkins.html','catalog/product/view/id/2',1,NULL,NULL,NULL,2),(126,2,'product/2/3','books/apples-and-pumpkins.html','catalog/product/view/id/2/category/3',1,NULL,NULL,3,2),(127,2,'product/2/4','books/children-s-books/apples-and-pumpkins.html','catalog/product/view/id/2/category/4',1,NULL,NULL,4,2),(128,2,'product/2/20','posters/apples-and-pumpkins.html','catalog/product/view/id/2/category/20',1,NULL,NULL,20,2),(129,2,'product/2/21','visiting-cards/apples-and-pumpkins.html','catalog/product/view/id/2/category/21',1,NULL,NULL,21,2),(130,2,'product/2','apples-and-pumpkins.html','catalog/product/view/id/2',1,NULL,NULL,NULL,2),(131,3,'product/2/3','books/apples-and-pumpkins.html','catalog/product/view/id/2/category/3',1,NULL,NULL,3,2),(132,3,'product/2/4','books/children-s-books/apples-and-pumpkins.html','catalog/product/view/id/2/category/4',1,NULL,NULL,4,2),(133,3,'product/2/20','posters/apples-and-pumpkins.html','catalog/product/view/id/2/category/20',1,NULL,NULL,20,2),(134,3,'product/2/21','visiting-cards/apples-and-pumpkins.html','catalog/product/view/id/2/category/21',1,NULL,NULL,21,2),(135,3,'product/2','apples-and-pumpkins.html','catalog/product/view/id/2',1,NULL,NULL,NULL,2),(136,4,'product/2/3','books/apples-and-pumpkins.html','catalog/product/view/id/2/category/3',1,NULL,NULL,3,2),(137,4,'product/2/4','books/children-s-books/apples-and-pumpkins.html','catalog/product/view/id/2/category/4',1,NULL,NULL,4,2),(138,4,'product/2/20','posters/apples-and-pumpkins.html','catalog/product/view/id/2/category/20',1,NULL,NULL,20,2),(139,4,'product/2/21','visiting-cards/apples-and-pumpkins.html','catalog/product/view/id/2/category/21',1,NULL,NULL,21,2),(140,4,'product/2','apples-and-pumpkins.html','catalog/product/view/id/2',1,NULL,NULL,NULL,2),(141,1,'product/3/14','cards/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/14',1,NULL,NULL,14,3),(142,1,'product/3/17','rarity/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/17',1,NULL,NULL,17,3),(143,1,'product/3/18','antiques/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/18',1,NULL,NULL,18,3),(144,1,'product/3/19','writing-materials/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/19',1,NULL,NULL,19,3),(145,1,'product/3','being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3',1,NULL,NULL,NULL,3),(146,2,'product/3/14','cards/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/14',1,NULL,NULL,14,3),(147,2,'product/3/17','rarity/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/17',1,NULL,NULL,17,3),(148,2,'product/3/18','antiques/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/18',1,NULL,NULL,18,3),(149,2,'product/3/19','writing-materials/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/19',1,NULL,NULL,19,3),(150,2,'product/3','being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3',1,NULL,NULL,NULL,3),(151,3,'product/3/14','cards/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/14',1,NULL,NULL,14,3),(152,3,'product/3/17','rarity/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/17',1,NULL,NULL,17,3),(153,3,'product/3/18','antiques/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/18',1,NULL,NULL,18,3),(154,3,'product/3/19','writing-materials/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/19',1,NULL,NULL,19,3),(155,3,'product/3','being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3',1,NULL,NULL,NULL,3),(156,4,'product/3/14','cards/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/14',1,NULL,NULL,14,3),(157,4,'product/3/17','rarity/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/17',1,NULL,NULL,17,3),(158,4,'product/3/18','antiques/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/18',1,NULL,NULL,18,3),(159,4,'product/3/19','writing-materials/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/19',1,NULL,NULL,19,3),(160,4,'product/3','being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3',1,NULL,NULL,NULL,3),(161,1,'product/4/13','cd-dvd/criterion-designs.html','catalog/product/view/id/4/category/13',1,NULL,NULL,13,4),(162,1,'product/4/15','calendars/criterion-designs.html','catalog/product/view/id/4/category/15',1,NULL,NULL,15,4),(163,1,'product/4/16','blanks/criterion-designs.html','catalog/product/view/id/4/category/16',1,NULL,NULL,16,4),(164,1,'product/4','criterion-designs.html','catalog/product/view/id/4',1,NULL,NULL,NULL,4),(165,2,'product/4/13','cd-dvd/criterion-designs.html','catalog/product/view/id/4/category/13',1,NULL,NULL,13,4),(166,2,'product/4/15','calendars/criterion-designs.html','catalog/product/view/id/4/category/15',1,NULL,NULL,15,4),(167,2,'product/4/16','blanks/criterion-designs.html','catalog/product/view/id/4/category/16',1,NULL,NULL,16,4),(168,2,'product/4','criterion-designs.html','catalog/product/view/id/4',1,NULL,NULL,NULL,4),(169,3,'product/4/13','cd-dvd/criterion-designs.html','catalog/product/view/id/4/category/13',1,NULL,NULL,13,4),(170,3,'product/4/15','calendars/criterion-designs.html','catalog/product/view/id/4/category/15',1,NULL,NULL,15,4),(171,3,'product/4/16','blanks/criterion-designs.html','catalog/product/view/id/4/category/16',1,NULL,NULL,16,4),(172,3,'product/4','criterion-designs.html','catalog/product/view/id/4',1,NULL,NULL,NULL,4),(173,4,'product/4/13','cd-dvd/criterion-designs.html','catalog/product/view/id/4/category/13',1,NULL,NULL,13,4),(174,4,'product/4/15','calendars/criterion-designs.html','catalog/product/view/id/4/category/15',1,NULL,NULL,15,4),(175,4,'product/4/16','blanks/criterion-designs.html','catalog/product/view/id/4/category/16',1,NULL,NULL,16,4),(176,4,'product/4','criterion-designs.html','catalog/product/view/id/4',1,NULL,NULL,NULL,4),(177,1,'product/5/11','magazines/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/11',1,NULL,NULL,11,5),(178,1,'product/5/12','comics/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/12',1,NULL,NULL,12,5),(179,1,'product/5/13','cd-dvd/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/13',1,NULL,NULL,13,5),(180,1,'product/5/14','cards/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/14',1,NULL,NULL,14,5),(181,1,'product/5','get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5',1,NULL,NULL,NULL,5),(182,2,'product/5/11','magazines/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/11',1,NULL,NULL,11,5),(183,2,'product/5/12','comics/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/12',1,NULL,NULL,12,5),(184,2,'product/5/13','cd-dvd/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/13',1,NULL,NULL,13,5),(185,2,'product/5/14','cards/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/14',1,NULL,NULL,14,5),(186,2,'product/5','get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5',1,NULL,NULL,NULL,5),(187,3,'product/5/11','magazines/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/11',1,NULL,NULL,11,5),(188,3,'product/5/12','comics/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/12',1,NULL,NULL,12,5),(189,3,'product/5/13','cd-dvd/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/13',1,NULL,NULL,13,5),(190,3,'product/5/14','cards/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/14',1,NULL,NULL,14,5),(191,3,'product/5','get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5',1,NULL,NULL,NULL,5),(192,4,'product/5/11','magazines/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/11',1,NULL,NULL,11,5),(193,4,'product/5/12','comics/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/12',1,NULL,NULL,12,5),(194,4,'product/5/13','cd-dvd/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/13',1,NULL,NULL,13,5),(195,4,'product/5/14','cards/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/14',1,NULL,NULL,14,5),(196,4,'product/5','get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5',1,NULL,NULL,NULL,5),(197,1,'product/6/11','magazines/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/11',1,NULL,NULL,11,6),(198,1,'product/6/15','calendars/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/15',1,NULL,NULL,15,6),(199,1,'product/6/16','blanks/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/16',1,NULL,NULL,16,6),(200,1,'product/6/17','rarity/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/17',1,NULL,NULL,17,6),(201,1,'product/6/21','visiting-cards/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/21',1,NULL,NULL,21,6),(202,1,'product/6','hollywood-frame-by-frame.html','catalog/product/view/id/6',1,NULL,NULL,NULL,6),(203,2,'product/6/11','magazines/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/11',1,NULL,NULL,11,6),(204,2,'product/6/15','calendars/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/15',1,NULL,NULL,15,6),(205,2,'product/6/16','blanks/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/16',1,NULL,NULL,16,6),(206,2,'product/6/17','rarity/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/17',1,NULL,NULL,17,6),(207,2,'product/6/21','visiting-cards/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/21',1,NULL,NULL,21,6),(208,2,'product/6','hollywood-frame-by-frame.html','catalog/product/view/id/6',1,NULL,NULL,NULL,6),(209,3,'product/6/11','magazines/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/11',1,NULL,NULL,11,6),(210,3,'product/6/15','calendars/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/15',1,NULL,NULL,15,6),(211,3,'product/6/16','blanks/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/16',1,NULL,NULL,16,6),(212,3,'product/6/17','rarity/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/17',1,NULL,NULL,17,6),(213,3,'product/6/21','visiting-cards/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/21',1,NULL,NULL,21,6),(214,3,'product/6','hollywood-frame-by-frame.html','catalog/product/view/id/6',1,NULL,NULL,NULL,6),(215,4,'product/6/11','magazines/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/11',1,NULL,NULL,11,6),(216,4,'product/6/15','calendars/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/15',1,NULL,NULL,15,6),(217,4,'product/6/16','blanks/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/16',1,NULL,NULL,16,6),(218,4,'product/6/17','rarity/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/17',1,NULL,NULL,17,6),(219,4,'product/6/21','visiting-cards/hollywood-frame-by-frame.html','catalog/product/view/id/6/category/21',1,NULL,NULL,21,6),(220,4,'product/6','hollywood-frame-by-frame.html','catalog/product/view/id/6',1,NULL,NULL,NULL,6),(221,1,'product/7/18','antiques/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/18',1,NULL,NULL,18,7),(222,1,'product/7/19','writing-materials/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/19',1,NULL,NULL,19,7),(223,1,'product/7/20','posters/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/20',1,NULL,NULL,20,7),(224,1,'product/7','locomotive-caldecott-medal-book.html','catalog/product/view/id/7',1,NULL,NULL,NULL,7),(225,2,'product/7/18','antiques/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/18',1,NULL,NULL,18,7),(226,2,'product/7/19','writing-materials/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/19',1,NULL,NULL,19,7),(227,2,'product/7/20','posters/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/20',1,NULL,NULL,20,7),(228,2,'product/7','locomotive-caldecott-medal-book.html','catalog/product/view/id/7',1,NULL,NULL,NULL,7),(229,3,'product/7/18','antiques/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/18',1,NULL,NULL,18,7),(230,3,'product/7/19','writing-materials/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/19',1,NULL,NULL,19,7),(231,3,'product/7/20','posters/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/20',1,NULL,NULL,20,7),(232,3,'product/7','locomotive-caldecott-medal-book.html','catalog/product/view/id/7',1,NULL,NULL,NULL,7),(233,4,'product/7/18','antiques/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/18',1,NULL,NULL,18,7),(234,4,'product/7/19','writing-materials/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/19',1,NULL,NULL,19,7),(235,4,'product/7/20','posters/locomotive-caldecott-medal-book.html','catalog/product/view/id/7/category/20',1,NULL,NULL,20,7),(236,4,'product/7','locomotive-caldecott-medal-book.html','catalog/product/view/id/7',1,NULL,NULL,NULL,7),(237,1,'product/8/11','magazines/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/11',1,NULL,NULL,11,8),(238,1,'product/8/12','comics/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/12',1,NULL,NULL,12,8),(239,1,'product/8/13','cd-dvd/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/13',1,NULL,NULL,13,8),(240,1,'product/8/14','cards/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/14',1,NULL,NULL,14,8),(241,1,'product/8','lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8',1,NULL,NULL,NULL,8),(242,2,'product/8/11','magazines/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/11',1,NULL,NULL,11,8),(243,2,'product/8/12','comics/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/12',1,NULL,NULL,12,8),(244,2,'product/8/13','cd-dvd/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/13',1,NULL,NULL,13,8),(245,2,'product/8/14','cards/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/14',1,NULL,NULL,14,8),(246,2,'product/8','lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8',1,NULL,NULL,NULL,8),(247,3,'product/8/11','magazines/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/11',1,NULL,NULL,11,8),(248,3,'product/8/12','comics/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/12',1,NULL,NULL,12,8),(249,3,'product/8/13','cd-dvd/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/13',1,NULL,NULL,13,8),(250,3,'product/8/14','cards/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/14',1,NULL,NULL,14,8),(251,3,'product/8','lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8',1,NULL,NULL,NULL,8),(252,4,'product/8/11','magazines/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/11',1,NULL,NULL,11,8),(253,4,'product/8/12','comics/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/12',1,NULL,NULL,12,8),(254,4,'product/8/13','cd-dvd/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/13',1,NULL,NULL,13,8),(255,4,'product/8/14','cards/lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8/category/14',1,NULL,NULL,14,8),(256,4,'product/8','lose-the-clutter-lose-the-weight.html','catalog/product/view/id/8',1,NULL,NULL,NULL,8),(257,1,'product/9/3','books/lost-lake-a-novel.html','catalog/product/view/id/9/category/3',1,NULL,NULL,3,9),(258,1,'product/9/4','books/children-s-books/lost-lake-a-novel.html','catalog/product/view/id/9/category/4',1,NULL,NULL,4,9),(259,1,'product/9/5','books/science-fiction/lost-lake-a-novel.html','catalog/product/view/id/9/category/5',1,NULL,NULL,5,9),(260,1,'product/9/6','books/detective-stories/lost-lake-a-novel.html','catalog/product/view/id/9/category/6',1,NULL,NULL,6,9),(261,1,'product/9/7','books/romance/lost-lake-a-novel.html','catalog/product/view/id/9/category/7',1,NULL,NULL,7,9),(262,1,'product/9/8','books/belles-lettres/lost-lake-a-novel.html','catalog/product/view/id/9/category/8',1,NULL,NULL,8,9),(263,1,'product/9/9','books/poetry/lost-lake-a-novel.html','catalog/product/view/id/9/category/9',1,NULL,NULL,9,9),(264,1,'product/9/10','books/classic/lost-lake-a-novel.html','catalog/product/view/id/9/category/10',1,NULL,NULL,10,9),(265,1,'product/9/19','writing-materials/lost-lake-a-novel.html','catalog/product/view/id/9/category/19',1,NULL,NULL,19,9),(266,1,'product/9/20','posters/lost-lake-a-novel.html','catalog/product/view/id/9/category/20',1,NULL,NULL,20,9),(267,1,'product/9/21','visiting-cards/lost-lake-a-novel.html','catalog/product/view/id/9/category/21',1,NULL,NULL,21,9),(268,1,'product/9','lost-lake-a-novel.html','catalog/product/view/id/9',1,NULL,NULL,NULL,9),(269,2,'product/9/3','books/lost-lake-a-novel.html','catalog/product/view/id/9/category/3',1,NULL,NULL,3,9),(270,2,'product/9/4','books/children-s-books/lost-lake-a-novel.html','catalog/product/view/id/9/category/4',1,NULL,NULL,4,9),(271,2,'product/9/5','books/science-fiction/lost-lake-a-novel.html','catalog/product/view/id/9/category/5',1,NULL,NULL,5,9),(272,2,'product/9/6','books/detective-stories/lost-lake-a-novel.html','catalog/product/view/id/9/category/6',1,NULL,NULL,6,9),(273,2,'product/9/7','books/romance/lost-lake-a-novel.html','catalog/product/view/id/9/category/7',1,NULL,NULL,7,9),(274,2,'product/9/8','books/belles-lettres/lost-lake-a-novel.html','catalog/product/view/id/9/category/8',1,NULL,NULL,8,9),(275,2,'product/9/9','books/poetry/lost-lake-a-novel.html','catalog/product/view/id/9/category/9',1,NULL,NULL,9,9),(276,2,'product/9/10','books/classic/lost-lake-a-novel.html','catalog/product/view/id/9/category/10',1,NULL,NULL,10,9),(277,2,'product/9/19','writing-materials/lost-lake-a-novel.html','catalog/product/view/id/9/category/19',1,NULL,NULL,19,9),(278,2,'product/9/20','posters/lost-lake-a-novel.html','catalog/product/view/id/9/category/20',1,NULL,NULL,20,9),(279,2,'product/9/21','visiting-cards/lost-lake-a-novel.html','catalog/product/view/id/9/category/21',1,NULL,NULL,21,9),(280,2,'product/9','lost-lake-a-novel.html','catalog/product/view/id/9',1,NULL,NULL,NULL,9),(281,3,'product/9/3','books/lost-lake-a-novel.html','catalog/product/view/id/9/category/3',1,NULL,NULL,3,9),(282,3,'product/9/4','books/children-s-books/lost-lake-a-novel.html','catalog/product/view/id/9/category/4',1,NULL,NULL,4,9),(283,3,'product/9/5','books/science-fiction/lost-lake-a-novel.html','catalog/product/view/id/9/category/5',1,NULL,NULL,5,9),(284,3,'product/9/6','books/detective-stories/lost-lake-a-novel.html','catalog/product/view/id/9/category/6',1,NULL,NULL,6,9),(285,3,'product/9/7','books/romance/lost-lake-a-novel.html','catalog/product/view/id/9/category/7',1,NULL,NULL,7,9),(286,3,'product/9/8','books/belles-lettres/lost-lake-a-novel.html','catalog/product/view/id/9/category/8',1,NULL,NULL,8,9),(287,3,'product/9/9','books/poetry/lost-lake-a-novel.html','catalog/product/view/id/9/category/9',1,NULL,NULL,9,9),(288,3,'product/9/10','books/classic/lost-lake-a-novel.html','catalog/product/view/id/9/category/10',1,NULL,NULL,10,9),(289,3,'product/9/19','writing-materials/lost-lake-a-novel.html','catalog/product/view/id/9/category/19',1,NULL,NULL,19,9),(290,3,'product/9/20','posters/lost-lake-a-novel.html','catalog/product/view/id/9/category/20',1,NULL,NULL,20,9),(291,3,'product/9/21','visiting-cards/lost-lake-a-novel.html','catalog/product/view/id/9/category/21',1,NULL,NULL,21,9),(292,3,'product/9','lost-lake-a-novel.html','catalog/product/view/id/9',1,NULL,NULL,NULL,9),(293,4,'product/9/3','books/lost-lake-a-novel.html','catalog/product/view/id/9/category/3',1,NULL,NULL,3,9),(294,4,'product/9/4','books/children-s-books/lost-lake-a-novel.html','catalog/product/view/id/9/category/4',1,NULL,NULL,4,9),(295,4,'product/9/5','books/science-fiction/lost-lake-a-novel.html','catalog/product/view/id/9/category/5',1,NULL,NULL,5,9),(296,4,'product/9/6','books/detective-stories/lost-lake-a-novel.html','catalog/product/view/id/9/category/6',1,NULL,NULL,6,9),(297,4,'product/9/7','books/romance/lost-lake-a-novel.html','catalog/product/view/id/9/category/7',1,NULL,NULL,7,9),(298,4,'product/9/8','books/belles-lettres/lost-lake-a-novel.html','catalog/product/view/id/9/category/8',1,NULL,NULL,8,9),(299,4,'product/9/9','books/poetry/lost-lake-a-novel.html','catalog/product/view/id/9/category/9',1,NULL,NULL,9,9),(300,4,'product/9/10','books/classic/lost-lake-a-novel.html','catalog/product/view/id/9/category/10',1,NULL,NULL,10,9),(301,4,'product/9/19','writing-materials/lost-lake-a-novel.html','catalog/product/view/id/9/category/19',1,NULL,NULL,19,9),(302,4,'product/9/20','posters/lost-lake-a-novel.html','catalog/product/view/id/9/category/20',1,NULL,NULL,20,9),(303,4,'product/9/21','visiting-cards/lost-lake-a-novel.html','catalog/product/view/id/9/category/21',1,NULL,NULL,21,9),(304,4,'product/9','lost-lake-a-novel.html','catalog/product/view/id/9',1,NULL,NULL,NULL,9),(305,1,'product/10/15','calendars/magnum-contact-sheets.html','catalog/product/view/id/10/category/15',1,NULL,NULL,15,10),(306,1,'product/10/17','rarity/magnum-contact-sheets.html','catalog/product/view/id/10/category/17',1,NULL,NULL,17,10),(307,1,'product/10/18','antiques/magnum-contact-sheets.html','catalog/product/view/id/10/category/18',1,NULL,NULL,18,10),(308,1,'product/10/19','writing-materials/magnum-contact-sheets.html','catalog/product/view/id/10/category/19',1,NULL,NULL,19,10),(309,1,'product/10/20','posters/magnum-contact-sheets.html','catalog/product/view/id/10/category/20',1,NULL,NULL,20,10),(310,1,'product/10','magnum-contact-sheets.html','catalog/product/view/id/10',1,NULL,NULL,NULL,10),(311,2,'product/10/15','calendars/magnum-contact-sheets.html','catalog/product/view/id/10/category/15',1,NULL,NULL,15,10),(312,2,'product/10/17','rarity/magnum-contact-sheets.html','catalog/product/view/id/10/category/17',1,NULL,NULL,17,10),(313,2,'product/10/18','antiques/magnum-contact-sheets.html','catalog/product/view/id/10/category/18',1,NULL,NULL,18,10),(314,2,'product/10/19','writing-materials/magnum-contact-sheets.html','catalog/product/view/id/10/category/19',1,NULL,NULL,19,10),(315,2,'product/10/20','posters/magnum-contact-sheets.html','catalog/product/view/id/10/category/20',1,NULL,NULL,20,10),(316,2,'product/10','magnum-contact-sheets.html','catalog/product/view/id/10',1,NULL,NULL,NULL,10),(317,3,'product/10/15','calendars/magnum-contact-sheets.html','catalog/product/view/id/10/category/15',1,NULL,NULL,15,10),(318,3,'product/10/17','rarity/magnum-contact-sheets.html','catalog/product/view/id/10/category/17',1,NULL,NULL,17,10),(319,3,'product/10/18','antiques/magnum-contact-sheets.html','catalog/product/view/id/10/category/18',1,NULL,NULL,18,10),(320,3,'product/10/19','writing-materials/magnum-contact-sheets.html','catalog/product/view/id/10/category/19',1,NULL,NULL,19,10),(321,3,'product/10/20','posters/magnum-contact-sheets.html','catalog/product/view/id/10/category/20',1,NULL,NULL,20,10),(322,3,'product/10','magnum-contact-sheets.html','catalog/product/view/id/10',1,NULL,NULL,NULL,10),(323,4,'product/10/15','calendars/magnum-contact-sheets.html','catalog/product/view/id/10/category/15',1,NULL,NULL,15,10),(324,4,'product/10/17','rarity/magnum-contact-sheets.html','catalog/product/view/id/10/category/17',1,NULL,NULL,17,10),(325,4,'product/10/18','antiques/magnum-contact-sheets.html','catalog/product/view/id/10/category/18',1,NULL,NULL,18,10),(326,4,'product/10/19','writing-materials/magnum-contact-sheets.html','catalog/product/view/id/10/category/19',1,NULL,NULL,19,10),(327,4,'product/10/20','posters/magnum-contact-sheets.html','catalog/product/view/id/10/category/20',1,NULL,NULL,20,10),(328,4,'product/10','magnum-contact-sheets.html','catalog/product/view/id/10',1,NULL,NULL,NULL,10),(329,1,'product/11/12','comics/photographers-sketchbooks.html','catalog/product/view/id/11/category/12',1,NULL,NULL,12,11),(330,1,'product/11/13','cd-dvd/photographers-sketchbooks.html','catalog/product/view/id/11/category/13',1,NULL,NULL,13,11),(331,1,'product/11/14','cards/photographers-sketchbooks.html','catalog/product/view/id/11/category/14',1,NULL,NULL,14,11),(332,1,'product/11/16','blanks/photographers-sketchbooks.html','catalog/product/view/id/11/category/16',1,NULL,NULL,16,11),(333,1,'product/11','photographers-sketchbooks.html','catalog/product/view/id/11',1,NULL,NULL,NULL,11),(334,2,'product/11/12','comics/photographers-sketchbooks.html','catalog/product/view/id/11/category/12',1,NULL,NULL,12,11),(335,2,'product/11/13','cd-dvd/photographers-sketchbooks.html','catalog/product/view/id/11/category/13',1,NULL,NULL,13,11),(336,2,'product/11/14','cards/photographers-sketchbooks.html','catalog/product/view/id/11/category/14',1,NULL,NULL,14,11),(337,2,'product/11/16','blanks/photographers-sketchbooks.html','catalog/product/view/id/11/category/16',1,NULL,NULL,16,11),(338,2,'product/11','photographers-sketchbooks.html','catalog/product/view/id/11',1,NULL,NULL,NULL,11),(339,3,'product/11/12','comics/photographers-sketchbooks.html','catalog/product/view/id/11/category/12',1,NULL,NULL,12,11),(340,3,'product/11/13','cd-dvd/photographers-sketchbooks.html','catalog/product/view/id/11/category/13',1,NULL,NULL,13,11),(341,3,'product/11/14','cards/photographers-sketchbooks.html','catalog/product/view/id/11/category/14',1,NULL,NULL,14,11),(342,3,'product/11/16','blanks/photographers-sketchbooks.html','catalog/product/view/id/11/category/16',1,NULL,NULL,16,11),(343,3,'product/11','photographers-sketchbooks.html','catalog/product/view/id/11',1,NULL,NULL,NULL,11),(344,4,'product/11/12','comics/photographers-sketchbooks.html','catalog/product/view/id/11/category/12',1,NULL,NULL,12,11),(345,4,'product/11/13','cd-dvd/photographers-sketchbooks.html','catalog/product/view/id/11/category/13',1,NULL,NULL,13,11),(346,4,'product/11/14','cards/photographers-sketchbooks.html','catalog/product/view/id/11/category/14',1,NULL,NULL,14,11),(347,4,'product/11/16','blanks/photographers-sketchbooks.html','catalog/product/view/id/11/category/16',1,NULL,NULL,16,11),(348,4,'product/11','photographers-sketchbooks.html','catalog/product/view/id/11',1,NULL,NULL,NULL,11),(349,1,'product/12/3','books/stellaluna.html','catalog/product/view/id/12/category/3',1,NULL,NULL,3,12),(350,1,'product/12/4','books/children-s-books/stellaluna.html','catalog/product/view/id/12/category/4',1,NULL,NULL,4,12),(351,1,'product/12/5','books/science-fiction/stellaluna.html','catalog/product/view/id/12/category/5',1,NULL,NULL,5,12),(352,1,'product/12/6','books/detective-stories/stellaluna.html','catalog/product/view/id/12/category/6',1,NULL,NULL,6,12),(353,1,'product/12/7','books/romance/stellaluna.html','catalog/product/view/id/12/category/7',1,NULL,NULL,7,12),(354,1,'product/12/8','books/belles-lettres/stellaluna.html','catalog/product/view/id/12/category/8',1,NULL,NULL,8,12),(355,1,'product/12/9','books/poetry/stellaluna.html','catalog/product/view/id/12/category/9',1,NULL,NULL,9,12),(356,1,'product/12/10','books/classic/stellaluna.html','catalog/product/view/id/12/category/10',1,NULL,NULL,10,12),(357,1,'product/12/15','calendars/stellaluna.html','catalog/product/view/id/12/category/15',1,NULL,NULL,15,12),(358,1,'product/12/16','blanks/stellaluna.html','catalog/product/view/id/12/category/16',1,NULL,NULL,16,12),(359,1,'product/12/17','rarity/stellaluna.html','catalog/product/view/id/12/category/17',1,NULL,NULL,17,12),(360,1,'product/12/18','antiques/stellaluna.html','catalog/product/view/id/12/category/18',1,NULL,NULL,18,12),(361,1,'product/12/21','visiting-cards/stellaluna.html','catalog/product/view/id/12/category/21',1,NULL,NULL,21,12),(362,1,'product/12','stellaluna.html','catalog/product/view/id/12',1,NULL,NULL,NULL,12),(363,2,'product/12/3','books/stellaluna.html','catalog/product/view/id/12/category/3',1,NULL,NULL,3,12),(364,2,'product/12/4','books/children-s-books/stellaluna.html','catalog/product/view/id/12/category/4',1,NULL,NULL,4,12),(365,2,'product/12/5','books/science-fiction/stellaluna.html','catalog/product/view/id/12/category/5',1,NULL,NULL,5,12),(366,2,'product/12/6','books/detective-stories/stellaluna.html','catalog/product/view/id/12/category/6',1,NULL,NULL,6,12),(367,2,'product/12/7','books/romance/stellaluna.html','catalog/product/view/id/12/category/7',1,NULL,NULL,7,12),(368,2,'product/12/8','books/belles-lettres/stellaluna.html','catalog/product/view/id/12/category/8',1,NULL,NULL,8,12),(369,2,'product/12/9','books/poetry/stellaluna.html','catalog/product/view/id/12/category/9',1,NULL,NULL,9,12),(370,2,'product/12/10','books/classic/stellaluna.html','catalog/product/view/id/12/category/10',1,NULL,NULL,10,12),(371,2,'product/12/15','calendars/stellaluna.html','catalog/product/view/id/12/category/15',1,NULL,NULL,15,12),(372,2,'product/12/16','blanks/stellaluna.html','catalog/product/view/id/12/category/16',1,NULL,NULL,16,12),(373,2,'product/12/17','rarity/stellaluna.html','catalog/product/view/id/12/category/17',1,NULL,NULL,17,12),(374,2,'product/12/18','antiques/stellaluna.html','catalog/product/view/id/12/category/18',1,NULL,NULL,18,12),(375,2,'product/12/21','visiting-cards/stellaluna.html','catalog/product/view/id/12/category/21',1,NULL,NULL,21,12),(376,2,'product/12','stellaluna.html','catalog/product/view/id/12',1,NULL,NULL,NULL,12),(377,3,'product/12/3','books/stellaluna.html','catalog/product/view/id/12/category/3',1,NULL,NULL,3,12),(378,3,'product/12/4','books/children-s-books/stellaluna.html','catalog/product/view/id/12/category/4',1,NULL,NULL,4,12),(379,3,'product/12/5','books/science-fiction/stellaluna.html','catalog/product/view/id/12/category/5',1,NULL,NULL,5,12),(380,3,'product/12/6','books/detective-stories/stellaluna.html','catalog/product/view/id/12/category/6',1,NULL,NULL,6,12),(381,3,'product/12/7','books/romance/stellaluna.html','catalog/product/view/id/12/category/7',1,NULL,NULL,7,12),(382,3,'product/12/8','books/belles-lettres/stellaluna.html','catalog/product/view/id/12/category/8',1,NULL,NULL,8,12),(383,3,'product/12/9','books/poetry/stellaluna.html','catalog/product/view/id/12/category/9',1,NULL,NULL,9,12),(384,3,'product/12/10','books/classic/stellaluna.html','catalog/product/view/id/12/category/10',1,NULL,NULL,10,12),(385,3,'product/12/15','calendars/stellaluna.html','catalog/product/view/id/12/category/15',1,NULL,NULL,15,12),(386,3,'product/12/16','blanks/stellaluna.html','catalog/product/view/id/12/category/16',1,NULL,NULL,16,12),(387,3,'product/12/17','rarity/stellaluna.html','catalog/product/view/id/12/category/17',1,NULL,NULL,17,12),(388,3,'product/12/18','antiques/stellaluna.html','catalog/product/view/id/12/category/18',1,NULL,NULL,18,12),(389,3,'product/12/21','visiting-cards/stellaluna.html','catalog/product/view/id/12/category/21',1,NULL,NULL,21,12),(390,3,'product/12','stellaluna.html','catalog/product/view/id/12',1,NULL,NULL,NULL,12),(391,4,'product/12/3','books/stellaluna.html','catalog/product/view/id/12/category/3',1,NULL,NULL,3,12),(392,4,'product/12/4','books/children-s-books/stellaluna.html','catalog/product/view/id/12/category/4',1,NULL,NULL,4,12),(393,4,'product/12/5','books/science-fiction/stellaluna.html','catalog/product/view/id/12/category/5',1,NULL,NULL,5,12),(394,4,'product/12/6','books/detective-stories/stellaluna.html','catalog/product/view/id/12/category/6',1,NULL,NULL,6,12),(395,4,'product/12/7','books/romance/stellaluna.html','catalog/product/view/id/12/category/7',1,NULL,NULL,7,12),(396,4,'product/12/8','books/belles-lettres/stellaluna.html','catalog/product/view/id/12/category/8',1,NULL,NULL,8,12),(397,4,'product/12/9','books/poetry/stellaluna.html','catalog/product/view/id/12/category/9',1,NULL,NULL,9,12),(398,4,'product/12/10','books/classic/stellaluna.html','catalog/product/view/id/12/category/10',1,NULL,NULL,10,12),(399,4,'product/12/15','calendars/stellaluna.html','catalog/product/view/id/12/category/15',1,NULL,NULL,15,12),(400,4,'product/12/16','blanks/stellaluna.html','catalog/product/view/id/12/category/16',1,NULL,NULL,16,12),(401,4,'product/12/17','rarity/stellaluna.html','catalog/product/view/id/12/category/17',1,NULL,NULL,17,12),(402,4,'product/12/18','antiques/stellaluna.html','catalog/product/view/id/12/category/18',1,NULL,NULL,18,12),(403,4,'product/12/21','visiting-cards/stellaluna.html','catalog/product/view/id/12/category/21',1,NULL,NULL,21,12),(404,4,'product/12','stellaluna.html','catalog/product/view/id/12',1,NULL,NULL,NULL,12),(405,1,'product/13/3','books/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/3',1,NULL,NULL,3,13),(406,1,'product/13/4','books/children-s-books/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/4',1,NULL,NULL,4,13),(407,1,'product/13/5','books/science-fiction/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/5',1,NULL,NULL,5,13),(408,1,'product/13/6','books/detective-stories/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/6',1,NULL,NULL,6,13),(409,1,'product/13/7','books/romance/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/7',1,NULL,NULL,7,13),(410,1,'product/13/8','books/belles-lettres/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/8',1,NULL,NULL,8,13),(411,1,'product/13/9','books/poetry/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/9',1,NULL,NULL,9,13),(412,1,'product/13/10','books/classic/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/10',1,NULL,NULL,10,13),(413,1,'product/13/11','magazines/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/11',1,NULL,NULL,11,13),(414,1,'product/13/12','comics/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/12',1,NULL,NULL,12,13),(415,1,'product/13/19','writing-materials/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/19',1,NULL,NULL,19,13),(416,1,'product/13/20','posters/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/20',1,NULL,NULL,20,13),(417,1,'product/13/21','visiting-cards/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/21',1,NULL,NULL,21,13),(418,1,'product/13','the-children-s-crusade-a-novel.html','catalog/product/view/id/13',1,NULL,NULL,NULL,13),(419,2,'product/13/3','books/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/3',1,NULL,NULL,3,13),(420,2,'product/13/4','books/children-s-books/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/4',1,NULL,NULL,4,13),(421,2,'product/13/5','books/science-fiction/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/5',1,NULL,NULL,5,13),(422,2,'product/13/6','books/detective-stories/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/6',1,NULL,NULL,6,13),(423,2,'product/13/7','books/romance/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/7',1,NULL,NULL,7,13),(424,2,'product/13/8','books/belles-lettres/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/8',1,NULL,NULL,8,13),(425,2,'product/13/9','books/poetry/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/9',1,NULL,NULL,9,13),(426,2,'product/13/10','books/classic/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/10',1,NULL,NULL,10,13),(427,2,'product/13/11','magazines/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/11',1,NULL,NULL,11,13),(428,2,'product/13/12','comics/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/12',1,NULL,NULL,12,13),(429,2,'product/13/19','writing-materials/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/19',1,NULL,NULL,19,13),(430,2,'product/13/20','posters/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/20',1,NULL,NULL,20,13),(431,2,'product/13/21','visiting-cards/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/21',1,NULL,NULL,21,13),(432,2,'product/13','the-children-s-crusade-a-novel.html','catalog/product/view/id/13',1,NULL,NULL,NULL,13),(433,3,'product/13/3','books/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/3',1,NULL,NULL,3,13),(434,3,'product/13/4','books/children-s-books/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/4',1,NULL,NULL,4,13),(435,3,'product/13/5','books/science-fiction/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/5',1,NULL,NULL,5,13),(436,3,'product/13/6','books/detective-stories/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/6',1,NULL,NULL,6,13),(437,3,'product/13/7','books/romance/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/7',1,NULL,NULL,7,13),(438,3,'product/13/8','books/belles-lettres/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/8',1,NULL,NULL,8,13),(439,3,'product/13/9','books/poetry/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/9',1,NULL,NULL,9,13),(440,3,'product/13/10','books/classic/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/10',1,NULL,NULL,10,13),(441,3,'product/13/11','magazines/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/11',1,NULL,NULL,11,13),(442,3,'product/13/12','comics/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/12',1,NULL,NULL,12,13),(443,3,'product/13/19','writing-materials/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/19',1,NULL,NULL,19,13),(444,3,'product/13/20','posters/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/20',1,NULL,NULL,20,13),(445,3,'product/13/21','visiting-cards/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/21',1,NULL,NULL,21,13),(446,3,'product/13','the-children-s-crusade-a-novel.html','catalog/product/view/id/13',1,NULL,NULL,NULL,13),(447,4,'product/13/3','books/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/3',1,NULL,NULL,3,13),(448,4,'product/13/4','books/children-s-books/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/4',1,NULL,NULL,4,13),(449,4,'product/13/5','books/science-fiction/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/5',1,NULL,NULL,5,13),(450,4,'product/13/6','books/detective-stories/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/6',1,NULL,NULL,6,13),(451,4,'product/13/7','books/romance/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/7',1,NULL,NULL,7,13),(452,4,'product/13/8','books/belles-lettres/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/8',1,NULL,NULL,8,13),(453,4,'product/13/9','books/poetry/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/9',1,NULL,NULL,9,13),(454,4,'product/13/10','books/classic/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/10',1,NULL,NULL,10,13),(455,4,'product/13/11','magazines/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/11',1,NULL,NULL,11,13),(456,4,'product/13/12','comics/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/12',1,NULL,NULL,12,13),(457,4,'product/13/19','writing-materials/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/19',1,NULL,NULL,19,13),(458,4,'product/13/20','posters/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/20',1,NULL,NULL,20,13),(459,4,'product/13/21','visiting-cards/the-children-s-crusade-a-novel.html','catalog/product/view/id/13/category/21',1,NULL,NULL,21,13),(460,4,'product/13','the-children-s-crusade-a-novel.html','catalog/product/view/id/13',1,NULL,NULL,NULL,13),(461,1,'product/14/13','cd-dvd/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/13',1,NULL,NULL,13,14),(462,1,'product/14/14','cards/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/14',1,NULL,NULL,14,14),(463,1,'product/14/15','calendars/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/15',1,NULL,NULL,15,14),(464,1,'product/14/16','blanks/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/16',1,NULL,NULL,16,14),(465,1,'product/14/17','rarity/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/17',1,NULL,NULL,17,14),(466,1,'product/14','the-farmer-and-the-clown.html','catalog/product/view/id/14',1,NULL,NULL,NULL,14),(467,2,'product/14/13','cd-dvd/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/13',1,NULL,NULL,13,14),(468,2,'product/14/14','cards/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/14',1,NULL,NULL,14,14),(469,2,'product/14/15','calendars/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/15',1,NULL,NULL,15,14),(470,2,'product/14/16','blanks/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/16',1,NULL,NULL,16,14),(471,2,'product/14/17','rarity/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/17',1,NULL,NULL,17,14),(472,2,'product/14','the-farmer-and-the-clown.html','catalog/product/view/id/14',1,NULL,NULL,NULL,14),(473,3,'product/14/13','cd-dvd/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/13',1,NULL,NULL,13,14),(474,3,'product/14/14','cards/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/14',1,NULL,NULL,14,14),(475,3,'product/14/15','calendars/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/15',1,NULL,NULL,15,14),(476,3,'product/14/16','blanks/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/16',1,NULL,NULL,16,14),(477,3,'product/14/17','rarity/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/17',1,NULL,NULL,17,14),(478,3,'product/14','the-farmer-and-the-clown.html','catalog/product/view/id/14',1,NULL,NULL,NULL,14),(479,4,'product/14/13','cd-dvd/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/13',1,NULL,NULL,13,14),(480,4,'product/14/14','cards/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/14',1,NULL,NULL,14,14),(481,4,'product/14/15','calendars/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/15',1,NULL,NULL,15,14),(482,4,'product/14/16','blanks/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/16',1,NULL,NULL,16,14),(483,4,'product/14/17','rarity/the-farmer-and-the-clown.html','catalog/product/view/id/14/category/17',1,NULL,NULL,17,14),(484,4,'product/14','the-farmer-and-the-clown.html','catalog/product/view/id/14',1,NULL,NULL,NULL,14),(485,1,'product/15/18','antiques/the-middle-school-rules-of-brian-urlacher.html','catalog/product/view/id/15/category/18',1,NULL,NULL,18,15),(486,1,'product/15','the-middle-school-rules-of-brian-urlacher.html','catalog/product/view/id/15',1,NULL,NULL,NULL,15),(487,2,'product/15/18','antiques/the-middle-school-rules-of-brian-urlacher.html','catalog/product/view/id/15/category/18',1,NULL,NULL,18,15),(488,2,'product/15','the-middle-school-rules-of-brian-urlacher.html','catalog/product/view/id/15',1,NULL,NULL,NULL,15),(489,3,'product/15/18','antiques/the-middle-school-rules-of-brian-urlacher.html','catalog/product/view/id/15/category/18',1,NULL,NULL,18,15),(490,3,'product/15','the-middle-school-rules-of-brian-urlacher.html','catalog/product/view/id/15',1,NULL,NULL,NULL,15),(491,4,'product/15/18','antiques/the-middle-school-rules-of-brian-urlacher.html','catalog/product/view/id/15/category/18',1,NULL,NULL,18,15),(492,4,'product/15','the-middle-school-rules-of-brian-urlacher.html','catalog/product/view/id/15',1,NULL,NULL,NULL,15),(493,1,'product/16/3','books/the-pecan-man.html','catalog/product/view/id/16/category/3',1,NULL,NULL,3,16),(494,1,'product/16/4','books/children-s-books/the-pecan-man.html','catalog/product/view/id/16/category/4',1,NULL,NULL,4,16),(495,1,'product/16/5','books/science-fiction/the-pecan-man.html','catalog/product/view/id/16/category/5',1,NULL,NULL,5,16),(496,1,'product/16/6','books/detective-stories/the-pecan-man.html','catalog/product/view/id/16/category/6',1,NULL,NULL,6,16),(497,1,'product/16/7','books/romance/the-pecan-man.html','catalog/product/view/id/16/category/7',1,NULL,NULL,7,16),(498,1,'product/16/8','books/belles-lettres/the-pecan-man.html','catalog/product/view/id/16/category/8',1,NULL,NULL,8,16),(499,1,'product/16/9','books/poetry/the-pecan-man.html','catalog/product/view/id/16/category/9',1,NULL,NULL,9,16),(500,1,'product/16/10','books/classic/the-pecan-man.html','catalog/product/view/id/16/category/10',1,NULL,NULL,10,16),(501,1,'product/16/17','rarity/the-pecan-man.html','catalog/product/view/id/16/category/17',1,NULL,NULL,17,16),(502,1,'product/16','the-pecan-man.html','catalog/product/view/id/16',1,NULL,NULL,NULL,16),(503,2,'product/16/3','books/the-pecan-man.html','catalog/product/view/id/16/category/3',1,NULL,NULL,3,16),(504,2,'product/16/4','books/children-s-books/the-pecan-man.html','catalog/product/view/id/16/category/4',1,NULL,NULL,4,16),(505,2,'product/16/5','books/science-fiction/the-pecan-man.html','catalog/product/view/id/16/category/5',1,NULL,NULL,5,16),(506,2,'product/16/6','books/detective-stories/the-pecan-man.html','catalog/product/view/id/16/category/6',1,NULL,NULL,6,16),(507,2,'product/16/7','books/romance/the-pecan-man.html','catalog/product/view/id/16/category/7',1,NULL,NULL,7,16),(508,2,'product/16/8','books/belles-lettres/the-pecan-man.html','catalog/product/view/id/16/category/8',1,NULL,NULL,8,16),(509,2,'product/16/9','books/poetry/the-pecan-man.html','catalog/product/view/id/16/category/9',1,NULL,NULL,9,16),(510,2,'product/16/10','books/classic/the-pecan-man.html','catalog/product/view/id/16/category/10',1,NULL,NULL,10,16),(511,2,'product/16/17','rarity/the-pecan-man.html','catalog/product/view/id/16/category/17',1,NULL,NULL,17,16),(512,2,'product/16','the-pecan-man.html','catalog/product/view/id/16',1,NULL,NULL,NULL,16),(513,3,'product/16/3','books/the-pecan-man.html','catalog/product/view/id/16/category/3',1,NULL,NULL,3,16),(514,3,'product/16/4','books/children-s-books/the-pecan-man.html','catalog/product/view/id/16/category/4',1,NULL,NULL,4,16),(515,3,'product/16/5','books/science-fiction/the-pecan-man.html','catalog/product/view/id/16/category/5',1,NULL,NULL,5,16),(516,3,'product/16/6','books/detective-stories/the-pecan-man.html','catalog/product/view/id/16/category/6',1,NULL,NULL,6,16),(517,3,'product/16/7','books/romance/the-pecan-man.html','catalog/product/view/id/16/category/7',1,NULL,NULL,7,16),(518,3,'product/16/8','books/belles-lettres/the-pecan-man.html','catalog/product/view/id/16/category/8',1,NULL,NULL,8,16),(519,3,'product/16/9','books/poetry/the-pecan-man.html','catalog/product/view/id/16/category/9',1,NULL,NULL,9,16),(520,3,'product/16/10','books/classic/the-pecan-man.html','catalog/product/view/id/16/category/10',1,NULL,NULL,10,16),(521,3,'product/16/17','rarity/the-pecan-man.html','catalog/product/view/id/16/category/17',1,NULL,NULL,17,16),(522,3,'product/16','the-pecan-man.html','catalog/product/view/id/16',1,NULL,NULL,NULL,16),(523,4,'product/16/3','books/the-pecan-man.html','catalog/product/view/id/16/category/3',1,NULL,NULL,3,16),(524,4,'product/16/4','books/children-s-books/the-pecan-man.html','catalog/product/view/id/16/category/4',1,NULL,NULL,4,16),(525,4,'product/16/5','books/science-fiction/the-pecan-man.html','catalog/product/view/id/16/category/5',1,NULL,NULL,5,16),(526,4,'product/16/6','books/detective-stories/the-pecan-man.html','catalog/product/view/id/16/category/6',1,NULL,NULL,6,16),(527,4,'product/16/7','books/romance/the-pecan-man.html','catalog/product/view/id/16/category/7',1,NULL,NULL,7,16),(528,4,'product/16/8','books/belles-lettres/the-pecan-man.html','catalog/product/view/id/16/category/8',1,NULL,NULL,8,16),(529,4,'product/16/9','books/poetry/the-pecan-man.html','catalog/product/view/id/16/category/9',1,NULL,NULL,9,16),(530,4,'product/16/10','books/classic/the-pecan-man.html','catalog/product/view/id/16/category/10',1,NULL,NULL,10,16),(531,4,'product/16/17','rarity/the-pecan-man.html','catalog/product/view/id/16/category/17',1,NULL,NULL,17,16),(532,4,'product/16','the-pecan-man.html','catalog/product/view/id/16',1,NULL,NULL,NULL,16),(533,1,'product/17/3','books/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/3',1,NULL,NULL,3,17),(534,1,'product/17/4','books/children-s-books/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/4',1,NULL,NULL,4,17),(535,1,'product/17/5','books/science-fiction/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/5',1,NULL,NULL,5,17),(536,1,'product/17/6','books/detective-stories/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/6',1,NULL,NULL,6,17),(537,1,'product/17/7','books/romance/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/7',1,NULL,NULL,7,17),(538,1,'product/17/8','books/belles-lettres/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/8',1,NULL,NULL,8,17),(539,1,'product/17/9','books/poetry/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/9',1,NULL,NULL,9,17),(540,1,'product/17/10','books/classic/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/10',1,NULL,NULL,10,17),(541,1,'product/17/12','comics/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/12',1,NULL,NULL,12,17),(542,1,'product/17/20','posters/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/20',1,NULL,NULL,20,17),(543,1,'product/17/21','visiting-cards/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/21',1,NULL,NULL,21,17),(544,1,'product/17','the-rosie-project-a-nove.html','catalog/product/view/id/17',1,NULL,NULL,NULL,17),(545,2,'product/17/3','books/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/3',1,NULL,NULL,3,17),(546,2,'product/17/4','books/children-s-books/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/4',1,NULL,NULL,4,17),(547,2,'product/17/5','books/science-fiction/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/5',1,NULL,NULL,5,17),(548,2,'product/17/6','books/detective-stories/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/6',1,NULL,NULL,6,17),(549,2,'product/17/7','books/romance/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/7',1,NULL,NULL,7,17),(550,2,'product/17/8','books/belles-lettres/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/8',1,NULL,NULL,8,17),(551,2,'product/17/9','books/poetry/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/9',1,NULL,NULL,9,17),(552,2,'product/17/10','books/classic/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/10',1,NULL,NULL,10,17),(553,2,'product/17/12','comics/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/12',1,NULL,NULL,12,17),(554,2,'product/17/20','posters/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/20',1,NULL,NULL,20,17),(555,2,'product/17/21','visiting-cards/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/21',1,NULL,NULL,21,17),(556,2,'product/17','the-rosie-project-a-nove.html','catalog/product/view/id/17',1,NULL,NULL,NULL,17),(557,3,'product/17/3','books/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/3',1,NULL,NULL,3,17),(558,3,'product/17/4','books/children-s-books/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/4',1,NULL,NULL,4,17),(559,3,'product/17/5','books/science-fiction/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/5',1,NULL,NULL,5,17),(560,3,'product/17/6','books/detective-stories/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/6',1,NULL,NULL,6,17),(561,3,'product/17/7','books/romance/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/7',1,NULL,NULL,7,17),(562,3,'product/17/8','books/belles-lettres/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/8',1,NULL,NULL,8,17),(563,3,'product/17/9','books/poetry/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/9',1,NULL,NULL,9,17),(564,3,'product/17/10','books/classic/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/10',1,NULL,NULL,10,17),(565,3,'product/17/12','comics/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/12',1,NULL,NULL,12,17),(566,3,'product/17/20','posters/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/20',1,NULL,NULL,20,17),(567,3,'product/17/21','visiting-cards/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/21',1,NULL,NULL,21,17),(568,3,'product/17','the-rosie-project-a-nove.html','catalog/product/view/id/17',1,NULL,NULL,NULL,17),(569,4,'product/17/3','books/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/3',1,NULL,NULL,3,17),(570,4,'product/17/4','books/children-s-books/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/4',1,NULL,NULL,4,17),(571,4,'product/17/5','books/science-fiction/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/5',1,NULL,NULL,5,17),(572,4,'product/17/6','books/detective-stories/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/6',1,NULL,NULL,6,17),(573,4,'product/17/7','books/romance/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/7',1,NULL,NULL,7,17),(574,4,'product/17/8','books/belles-lettres/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/8',1,NULL,NULL,8,17),(575,4,'product/17/9','books/poetry/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/9',1,NULL,NULL,9,17),(576,4,'product/17/10','books/classic/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/10',1,NULL,NULL,10,17),(577,4,'product/17/12','comics/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/12',1,NULL,NULL,12,17),(578,4,'product/17/20','posters/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/20',1,NULL,NULL,20,17),(579,4,'product/17/21','visiting-cards/the-rosie-project-a-nove.html','catalog/product/view/id/17/category/21',1,NULL,NULL,21,17),(580,4,'product/17','the-rosie-project-a-nove.html','catalog/product/view/id/17',1,NULL,NULL,NULL,17),(581,1,'product/18/11','magazines/the-sugar-queen.html','catalog/product/view/id/18/category/11',1,NULL,NULL,11,18),(582,1,'product/18/13','cd-dvd/the-sugar-queen.html','catalog/product/view/id/18/category/13',1,NULL,NULL,13,18),(583,1,'product/18/14','cards/the-sugar-queen.html','catalog/product/view/id/18/category/14',1,NULL,NULL,14,18),(584,1,'product/18/19','writing-materials/the-sugar-queen.html','catalog/product/view/id/18/category/19',1,NULL,NULL,19,18),(585,1,'product/18','the-sugar-queen.html','catalog/product/view/id/18',1,NULL,NULL,NULL,18),(586,2,'product/18/11','magazines/the-sugar-queen.html','catalog/product/view/id/18/category/11',1,NULL,NULL,11,18),(587,2,'product/18/13','cd-dvd/the-sugar-queen.html','catalog/product/view/id/18/category/13',1,NULL,NULL,13,18),(588,2,'product/18/14','cards/the-sugar-queen.html','catalog/product/view/id/18/category/14',1,NULL,NULL,14,18),(589,2,'product/18/19','writing-materials/the-sugar-queen.html','catalog/product/view/id/18/category/19',1,NULL,NULL,19,18),(590,2,'product/18','the-sugar-queen.html','catalog/product/view/id/18',1,NULL,NULL,NULL,18),(591,3,'product/18/11','magazines/the-sugar-queen.html','catalog/product/view/id/18/category/11',1,NULL,NULL,11,18),(592,3,'product/18/13','cd-dvd/the-sugar-queen.html','catalog/product/view/id/18/category/13',1,NULL,NULL,13,18),(593,3,'product/18/14','cards/the-sugar-queen.html','catalog/product/view/id/18/category/14',1,NULL,NULL,14,18),(594,3,'product/18/19','writing-materials/the-sugar-queen.html','catalog/product/view/id/18/category/19',1,NULL,NULL,19,18),(595,3,'product/18','the-sugar-queen.html','catalog/product/view/id/18',1,NULL,NULL,NULL,18),(596,4,'product/18/11','magazines/the-sugar-queen.html','catalog/product/view/id/18/category/11',1,NULL,NULL,11,18),(597,4,'product/18/13','cd-dvd/the-sugar-queen.html','catalog/product/view/id/18/category/13',1,NULL,NULL,13,18),(598,4,'product/18/14','cards/the-sugar-queen.html','catalog/product/view/id/18/category/14',1,NULL,NULL,14,18),(599,4,'product/18/19','writing-materials/the-sugar-queen.html','catalog/product/view/id/18/category/19',1,NULL,NULL,19,18),(600,4,'product/18','the-sugar-queen.html','catalog/product/view/id/18',1,NULL,NULL,NULL,18),(601,1,'product/19/15','calendars/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/15',1,NULL,NULL,15,19),(602,1,'product/19/16','blanks/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/16',1,NULL,NULL,16,19),(603,1,'product/19/18','antiques/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/18',1,NULL,NULL,18,19),(604,1,'product/19','the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19',1,NULL,NULL,NULL,19),(605,2,'product/19/15','calendars/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/15',1,NULL,NULL,15,19),(606,2,'product/19/16','blanks/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/16',1,NULL,NULL,16,19),(607,2,'product/19/18','antiques/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/18',1,NULL,NULL,18,19),(608,2,'product/19','the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19',1,NULL,NULL,NULL,19),(609,3,'product/19/15','calendars/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/15',1,NULL,NULL,15,19),(610,3,'product/19/16','blanks/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/16',1,NULL,NULL,16,19),(611,3,'product/19/18','antiques/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/18',1,NULL,NULL,18,19),(612,3,'product/19','the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19',1,NULL,NULL,NULL,19),(613,4,'product/19/15','calendars/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/15',1,NULL,NULL,15,19),(614,4,'product/19/16','blanks/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/16',1,NULL,NULL,16,19),(615,4,'product/19/18','antiques/the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19/category/18',1,NULL,NULL,18,19),(616,4,'product/19','the-wes-anderson-collection-the-grand-budapest-hotel.html','catalog/product/view/id/19',1,NULL,NULL,NULL,19),(617,1,'product/20/11','magazines/the-wes-anderson-collection.html','catalog/product/view/id/20/category/11',1,NULL,NULL,11,20),(618,1,'product/20/12','comics/the-wes-anderson-collection.html','catalog/product/view/id/20/category/12',1,NULL,NULL,12,20),(619,1,'product/20/13','cd-dvd/the-wes-anderson-collection.html','catalog/product/view/id/20/category/13',1,NULL,NULL,13,20),(620,1,'product/20','the-wes-anderson-collection.html','catalog/product/view/id/20',1,NULL,NULL,NULL,20),(621,2,'product/20/11','magazines/the-wes-anderson-collection.html','catalog/product/view/id/20/category/11',1,NULL,NULL,11,20),(622,2,'product/20/12','comics/the-wes-anderson-collection.html','catalog/product/view/id/20/category/12',1,NULL,NULL,12,20),(623,2,'product/20/13','cd-dvd/the-wes-anderson-collection.html','catalog/product/view/id/20/category/13',1,NULL,NULL,13,20),(624,2,'product/20','the-wes-anderson-collection.html','catalog/product/view/id/20',1,NULL,NULL,NULL,20),(625,3,'product/20/11','magazines/the-wes-anderson-collection.html','catalog/product/view/id/20/category/11',1,NULL,NULL,11,20),(626,3,'product/20/12','comics/the-wes-anderson-collection.html','catalog/product/view/id/20/category/12',1,NULL,NULL,12,20),(627,3,'product/20/13','cd-dvd/the-wes-anderson-collection.html','catalog/product/view/id/20/category/13',1,NULL,NULL,13,20),(628,3,'product/20','the-wes-anderson-collection.html','catalog/product/view/id/20',1,NULL,NULL,NULL,20),(629,4,'product/20/11','magazines/the-wes-anderson-collection.html','catalog/product/view/id/20/category/11',1,NULL,NULL,11,20),(630,4,'product/20/12','comics/the-wes-anderson-collection.html','catalog/product/view/id/20/category/12',1,NULL,NULL,12,20),(631,4,'product/20/13','cd-dvd/the-wes-anderson-collection.html','catalog/product/view/id/20/category/13',1,NULL,NULL,13,20),(632,4,'product/20','the-wes-anderson-collection.html','catalog/product/view/id/20',1,NULL,NULL,NULL,20),(643,1,'product/1/14','cards/after-ever-happy.html','catalog/product/view/id/1/category/14',1,NULL,NULL,14,1),(644,1,'product/1/15','calendars/after-ever-happy.html','catalog/product/view/id/1/category/15',1,NULL,NULL,15,1),(656,2,'product/1/14','cards/after-ever-happy.html','catalog/product/view/id/1/category/14',1,NULL,NULL,14,1),(657,2,'product/1/15','calendars/after-ever-happy.html','catalog/product/view/id/1/category/15',1,NULL,NULL,15,1),(669,3,'product/1/14','cards/after-ever-happy.html','catalog/product/view/id/1/category/14',1,NULL,NULL,14,1),(670,3,'product/1/15','calendars/after-ever-happy.html','catalog/product/view/id/1/category/15',1,NULL,NULL,15,1),(682,4,'product/1/14','cards/after-ever-happy.html','catalog/product/view/id/1/category/14',1,NULL,NULL,14,1),(683,4,'product/1/15','calendars/after-ever-happy.html','catalog/product/view/id/1/category/15',1,NULL,NULL,15,1),(687,1,'product/2/16','blanks/apples-and-pumpkins.html','catalog/product/view/id/2/category/16',1,NULL,NULL,16,2),(688,1,'product/2/17','rarity/apples-and-pumpkins.html','catalog/product/view/id/2/category/17',1,NULL,NULL,17,2),(694,2,'product/2/16','blanks/apples-and-pumpkins.html','catalog/product/view/id/2/category/16',1,NULL,NULL,16,2),(695,2,'product/2/17','rarity/apples-and-pumpkins.html','catalog/product/view/id/2/category/17',1,NULL,NULL,17,2),(701,3,'product/2/16','blanks/apples-and-pumpkins.html','catalog/product/view/id/2/category/16',1,NULL,NULL,16,2),(702,3,'product/2/17','rarity/apples-and-pumpkins.html','catalog/product/view/id/2/category/17',1,NULL,NULL,17,2),(708,4,'product/2/16','blanks/apples-and-pumpkins.html','catalog/product/view/id/2/category/16',1,NULL,NULL,16,2),(709,4,'product/2/17','rarity/apples-and-pumpkins.html','catalog/product/view/id/2/category/17',1,NULL,NULL,17,2),(717,1,'product/3/20','posters/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/20',1,NULL,NULL,20,3),(723,2,'product/3/20','posters/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/20',1,NULL,NULL,20,3),(729,3,'product/3/20','posters/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/20',1,NULL,NULL,20,3),(735,4,'product/3/20','posters/being-mortal-medicine-and-what-matters-in-the-end.html','catalog/product/view/id/3/category/20',1,NULL,NULL,20,3),(740,1,'product/4/18','antiques/criterion-designs.html','catalog/product/view/id/4/category/18',1,NULL,NULL,18,4),(741,1,'product/4/19','writing-materials/criterion-designs.html','catalog/product/view/id/4/category/19',1,NULL,NULL,19,4),(746,2,'product/4/18','antiques/criterion-designs.html','catalog/product/view/id/4/category/18',1,NULL,NULL,18,4),(747,2,'product/4/19','writing-materials/criterion-designs.html','catalog/product/view/id/4/category/19',1,NULL,NULL,19,4),(752,3,'product/4/18','antiques/criterion-designs.html','catalog/product/view/id/4/category/18',1,NULL,NULL,18,4),(753,3,'product/4/19','writing-materials/criterion-designs.html','catalog/product/view/id/4/category/19',1,NULL,NULL,19,4),(758,4,'product/4/18','antiques/criterion-designs.html','catalog/product/view/id/4/category/18',1,NULL,NULL,18,4),(759,4,'product/4/19','writing-materials/criterion-designs.html','catalog/product/view/id/4/category/19',1,NULL,NULL,19,4),(765,1,'product/5/21','visiting-cards/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/21',1,NULL,NULL,21,5),(771,2,'product/5/21','visiting-cards/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/21',1,NULL,NULL,21,5),(777,3,'product/5/21','visiting-cards/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/21',1,NULL,NULL,21,5),(783,4,'product/5/21','visiting-cards/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html','catalog/product/view/id/5/category/21',1,NULL,NULL,21,5),(784,1,'category/22','books/science-fiction/lorem-ipsum.html','catalog/category/view/id/22',1,NULL,NULL,22,NULL),(785,2,'category/22','books/science-fiction/lorem-ipsum.html','catalog/category/view/id/22',1,NULL,NULL,22,NULL),(786,3,'category/22','books/science-fiction/lorem-ipsum.html','catalog/category/view/id/22',1,NULL,NULL,22,NULL),(787,4,'category/22','books/science-fiction/lorem-ipsum.html','catalog/category/view/id/22',1,NULL,NULL,22,NULL),(1513,1,'57603300_1428420379','books/science-fiction/test-category.html','books/science-fiction/lorem-ipsum.html',0,'RP',NULL,22,NULL),(1515,2,'59503400_1428420379','books/science-fiction/test-category.html','books/science-fiction/lorem-ipsum.html',0,'RP',NULL,22,NULL),(1517,3,'61103500_1428420379','books/science-fiction/test-category.html','books/science-fiction/lorem-ipsum.html',0,'RP',NULL,22,NULL),(1519,4,'63003600_1428420379','books/science-fiction/test-category.html','books/science-fiction/lorem-ipsum.html',0,'RP',NULL,22,NULL); /*!40000 ALTER TABLE `core_url_rewrite` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_variable` -- DROP TABLE IF EXISTS `core_variable`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_variable` ( `variable_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Variable Id', `code` varchar(255) default NULL COMMENT 'Variable Code', `name` varchar(255) default NULL COMMENT 'Variable Name', PRIMARY KEY (`variable_id`), UNIQUE KEY `UNQ_CORE_VARIABLE_CODE` (`code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Variables'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_variable` -- LOCK TABLES `core_variable` WRITE; /*!40000 ALTER TABLE `core_variable` DISABLE KEYS */; /*!40000 ALTER TABLE `core_variable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_variable_value` -- DROP TABLE IF EXISTS `core_variable_value`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_variable_value` ( `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Variable Value Id', `variable_id` int(10) unsigned NOT NULL default '0' COMMENT 'Variable Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `plain_value` text COMMENT 'Plain Text Value', `html_value` text COMMENT 'Html Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CORE_VARIABLE_VALUE_VARIABLE_ID_STORE_ID` (`variable_id`,`store_id`), KEY `IDX_CORE_VARIABLE_VALUE_VARIABLE_ID` (`variable_id`), KEY `IDX_CORE_VARIABLE_VALUE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Variable Value'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_variable_value` -- LOCK TABLES `core_variable_value` WRITE; /*!40000 ALTER TABLE `core_variable_value` DISABLE KEYS */; /*!40000 ALTER TABLE `core_variable_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_website` -- DROP TABLE IF EXISTS `core_website`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `core_website` ( `website_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Website Id', `code` varchar(32) default NULL COMMENT 'Code', `name` varchar(64) default NULL COMMENT 'Website Name', `sort_order` smallint(5) unsigned NOT NULL default '0' COMMENT 'Sort Order', `default_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Default Group Id', `is_default` smallint(5) unsigned default '0' COMMENT 'Defines Is Website Default', PRIMARY KEY (`website_id`), UNIQUE KEY `UNQ_CORE_WEBSITE_CODE` (`code`), KEY `IDX_CORE_WEBSITE_SORT_ORDER` (`sort_order`), KEY `IDX_CORE_WEBSITE_DEFAULT_GROUP_ID` (`default_group_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Websites'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `core_website` -- LOCK TABLES `core_website` WRITE; /*!40000 ALTER TABLE `core_website` DISABLE KEYS */; INSERT INTO `core_website` VALUES (0,'admin','Admin',0,0,0),(1,'base','Main Website',0,1,1); /*!40000 ALTER TABLE `core_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `coupon_aggregated` -- DROP TABLE IF EXISTS `coupon_aggregated`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `coupon_aggregated` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date NOT NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `order_status` varchar(50) default NULL COMMENT 'Order Status', `coupon_code` varchar(50) default NULL COMMENT 'Coupon Code', `coupon_uses` int(11) NOT NULL default '0' COMMENT 'Coupon Uses', `subtotal_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Subtotal Amount', `discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount', `total_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Amount', `subtotal_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Subtotal Amount Actual', `discount_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount Actual', `total_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Amount Actual', `rule_name` varchar(255) default NULL COMMENT 'Rule Name', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_COUPON_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS_COUPON_CODE` (`period`,`store_id`,`order_status`,`coupon_code`), KEY `IDX_COUPON_AGGREGATED_STORE_ID` (`store_id`), KEY `IDX_COUPON_AGGREGATED_RULE_NAME` (`rule_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `coupon_aggregated` -- LOCK TABLES `coupon_aggregated` WRITE; /*!40000 ALTER TABLE `coupon_aggregated` DISABLE KEYS */; /*!40000 ALTER TABLE `coupon_aggregated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `coupon_aggregated_order` -- DROP TABLE IF EXISTS `coupon_aggregated_order`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `coupon_aggregated_order` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date NOT NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `order_status` varchar(50) default NULL COMMENT 'Order Status', `coupon_code` varchar(50) default NULL COMMENT 'Coupon Code', `coupon_uses` int(11) NOT NULL default '0' COMMENT 'Coupon Uses', `subtotal_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Subtotal Amount', `discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount', `total_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Amount', `rule_name` varchar(255) default NULL COMMENT 'Rule Name', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_COUPON_AGGRED_ORDER_PERIOD_STORE_ID_ORDER_STS_COUPON_CODE` (`period`,`store_id`,`order_status`,`coupon_code`), KEY `IDX_COUPON_AGGREGATED_ORDER_STORE_ID` (`store_id`), KEY `IDX_COUPON_AGGREGATED_ORDER_RULE_NAME` (`rule_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated Order'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `coupon_aggregated_order` -- LOCK TABLES `coupon_aggregated_order` WRITE; /*!40000 ALTER TABLE `coupon_aggregated_order` DISABLE KEYS */; /*!40000 ALTER TABLE `coupon_aggregated_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `coupon_aggregated_updated` -- DROP TABLE IF EXISTS `coupon_aggregated_updated`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `coupon_aggregated_updated` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date NOT NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `order_status` varchar(50) default NULL COMMENT 'Order Status', `coupon_code` varchar(50) default NULL COMMENT 'Coupon Code', `coupon_uses` int(11) NOT NULL default '0' COMMENT 'Coupon Uses', `subtotal_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Subtotal Amount', `discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount', `total_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Amount', `subtotal_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Subtotal Amount Actual', `discount_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount Actual', `total_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Amount Actual', `rule_name` varchar(255) default NULL COMMENT 'Rule Name', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_COUPON_AGGRED_UPDATED_PERIOD_STORE_ID_ORDER_STS_COUPON_CODE` (`period`,`store_id`,`order_status`,`coupon_code`), KEY `IDX_COUPON_AGGREGATED_UPDATED_STORE_ID` (`store_id`), KEY `IDX_COUPON_AGGREGATED_UPDATED_RULE_NAME` (`rule_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated Updated'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `coupon_aggregated_updated` -- LOCK TABLES `coupon_aggregated_updated` WRITE; /*!40000 ALTER TABLE `coupon_aggregated_updated` DISABLE KEYS */; /*!40000 ALTER TABLE `coupon_aggregated_updated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cron_schedule` -- DROP TABLE IF EXISTS `cron_schedule`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `cron_schedule` ( `schedule_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Schedule Id', `job_code` varchar(255) NOT NULL default '0' COMMENT 'Job Code', `status` varchar(7) NOT NULL default 'pending' COMMENT 'Status', `messages` text COMMENT 'Messages', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `scheduled_at` timestamp NULL default NULL COMMENT 'Scheduled At', `executed_at` timestamp NULL default NULL COMMENT 'Executed At', `finished_at` timestamp NULL default NULL COMMENT 'Finished At', PRIMARY KEY (`schedule_id`), KEY `IDX_CRON_SCHEDULE_JOB_CODE` (`job_code`), KEY `IDX_CRON_SCHEDULE_SCHEDULED_AT_STATUS` (`scheduled_at`,`status`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Cron Schedule'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `cron_schedule` -- LOCK TABLES `cron_schedule` WRITE; /*!40000 ALTER TABLE `cron_schedule` DISABLE KEYS */; /*!40000 ALTER TABLE `cron_schedule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity` -- DROP TABLE IF EXISTS `customer_address_entity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_address_entity` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Set Id', `increment_id` varchar(50) default NULL COMMENT 'Increment Id', `parent_id` int(10) unsigned default NULL COMMENT 'Parent Id', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Updated At', `is_active` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Active', PRIMARY KEY (`entity_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_PARENT_ID` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_address_entity` -- LOCK TABLES `customer_address_entity` WRITE; /*!40000 ALTER TABLE `customer_address_entity` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity_datetime` -- DROP TABLE IF EXISTS `customer_address_entity_datetime`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_address_entity_datetime` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` datetime NOT NULL default '0000-00-00 00:00:00' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID` (`entity_id`), KEY `IDX_CSTR_ADDR_ENTT_DTIME_ENTT_ID_ATTR_ID_VAL` (`entity_id`,`attribute_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Datetime'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_address_entity_datetime` -- LOCK TABLES `customer_address_entity_datetime` WRITE; /*!40000 ALTER TABLE `customer_address_entity_datetime` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity_decimal` -- DROP TABLE IF EXISTS `customer_address_entity_decimal`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_address_entity_decimal` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Decimal'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_address_entity_decimal` -- LOCK TABLES `customer_address_entity_decimal` WRITE; /*!40000 ALTER TABLE `customer_address_entity_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity_int` -- DROP TABLE IF EXISTS `customer_address_entity_int`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_address_entity_int` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` int(11) NOT NULL default '0' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID` (`entity_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Int'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_address_entity_int` -- LOCK TABLES `customer_address_entity_int` WRITE; /*!40000 ALTER TABLE `customer_address_entity_int` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity_text` -- DROP TABLE IF EXISTS `customer_address_entity_text`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_address_entity_text` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` text NOT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CUSTOMER_ADDRESS_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_TEXT_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_TEXT_ENTITY_ID` (`entity_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Text'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_address_entity_text` -- LOCK TABLES `customer_address_entity_text` WRITE; /*!40000 ALTER TABLE `customer_address_entity_text` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_address_entity_varchar` -- DROP TABLE IF EXISTS `customer_address_entity_varchar`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_address_entity_varchar` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` varchar(255) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`), KEY `IDX_CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Varchar'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_address_entity_varchar` -- LOCK TABLES `customer_address_entity_varchar` WRITE; /*!40000 ALTER TABLE `customer_address_entity_varchar` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_address_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_eav_attribute` -- DROP TABLE IF EXISTS `customer_eav_attribute`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_eav_attribute` ( `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id', `is_visible` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Visible', `input_filter` varchar(255) default NULL COMMENT 'Input Filter', `multiline_count` smallint(5) unsigned NOT NULL default '1' COMMENT 'Multiline Count', `validate_rules` text COMMENT 'Validate Rules', `is_system` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is System', `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort Order', `data_model` varchar(255) default NULL COMMENT 'Data Model', PRIMARY KEY (`attribute_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_eav_attribute` -- LOCK TABLES `customer_eav_attribute` WRITE; /*!40000 ALTER TABLE `customer_eav_attribute` DISABLE KEYS */; INSERT INTO `customer_eav_attribute` VALUES (1,1,NULL,0,NULL,1,10,NULL),(2,0,NULL,0,NULL,1,0,NULL),(3,1,NULL,0,NULL,1,20,NULL),(4,0,NULL,0,NULL,0,30,NULL),(5,1,NULL,0,'a:2:{s:15:\"max_text_length\";i:255;s:15:\"min_text_length\";i:1;}',1,40,NULL),(6,0,NULL,0,NULL,0,50,NULL),(7,1,NULL,0,'a:2:{s:15:\"max_text_length\";i:255;s:15:\"min_text_length\";i:1;}',1,60,NULL),(8,0,NULL,0,NULL,0,70,NULL),(9,1,NULL,0,'a:1:{s:16:\"input_validation\";s:5:\"email\";}',1,80,NULL),(10,1,NULL,0,NULL,1,25,NULL),(11,0,'date',0,'a:1:{s:16:\"input_validation\";s:4:\"date\";}',0,90,NULL),(12,0,NULL,0,NULL,1,0,NULL),(13,0,NULL,0,NULL,1,0,NULL),(14,0,NULL,0,NULL,1,0,NULL),(15,0,NULL,0,'a:1:{s:15:\"max_text_length\";i:255;}',0,100,NULL),(16,0,NULL,0,NULL,1,0,NULL),(17,0,'datetime',0,NULL,0,0,NULL),(18,0,NULL,0,'a:0:{}',0,110,NULL),(19,0,NULL,0,NULL,0,10,NULL),(20,1,NULL,0,'a:2:{s:15:\"max_text_length\";i:255;s:15:\"min_text_length\";i:1;}',1,20,NULL),(21,0,NULL,0,NULL,0,30,NULL),(22,1,NULL,0,'a:2:{s:15:\"max_text_length\";i:255;s:15:\"min_text_length\";i:1;}',1,40,NULL),(23,0,NULL,0,NULL,0,50,NULL),(24,1,NULL,0,'a:2:{s:15:\"max_text_length\";i:255;s:15:\"min_text_length\";i:1;}',1,60,NULL),(25,1,NULL,2,'a:2:{s:15:\"max_text_length\";i:255;s:15:\"min_text_length\";i:1;}',1,70,NULL),(26,1,NULL,0,'a:2:{s:15:\"max_text_length\";i:255;s:15:\"min_text_length\";i:1;}',1,80,NULL),(27,1,NULL,0,NULL,1,90,NULL),(28,1,NULL,0,NULL,1,100,NULL),(29,1,NULL,0,NULL,1,100,NULL),(30,1,NULL,0,'a:0:{}',1,110,'customer/attribute_data_postcode'),(31,1,NULL,0,'a:2:{s:15:\"max_text_length\";i:255;s:15:\"min_text_length\";i:1;}',1,120,NULL),(32,1,NULL,0,'a:2:{s:15:\"max_text_length\";i:255;s:15:\"min_text_length\";i:1;}',1,130,NULL),(33,0,NULL,0,NULL,1,0,NULL),(34,0,NULL,0,'a:1:{s:16:\"input_validation\";s:4:\"date\";}',1,0,NULL),(35,1,NULL,0,NULL,1,28,NULL),(36,1,NULL,0,NULL,1,140,NULL),(37,0,NULL,0,NULL,1,0,NULL),(38,0,NULL,0,NULL,1,0,NULL),(39,0,NULL,0,NULL,1,0,NULL),(40,0,NULL,0,NULL,1,0,NULL),(132,0,NULL,0,NULL,1,0,NULL),(133,0,NULL,0,NULL,1,0,NULL),(134,0,NULL,0,NULL,1,0,NULL),(135,0,NULL,0,NULL,1,0,NULL),(136,0,NULL,0,NULL,1,0,NULL),(137,0,NULL,0,NULL,1,0,NULL),(138,0,NULL,0,NULL,1,0,NULL),(139,0,NULL,0,NULL,1,0,NULL),(140,0,NULL,0,NULL,1,0,NULL),(141,0,NULL,0,NULL,1,0,NULL); /*!40000 ALTER TABLE `customer_eav_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_eav_attribute_website` -- DROP TABLE IF EXISTS `customer_eav_attribute_website`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_eav_attribute_website` ( `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `is_visible` smallint(5) unsigned default NULL COMMENT 'Is Visible', `is_required` smallint(5) unsigned default NULL COMMENT 'Is Required', `default_value` text COMMENT 'Default Value', `multiline_count` smallint(5) unsigned default NULL COMMENT 'Multiline Count', PRIMARY KEY (`attribute_id`,`website_id`), KEY `IDX_CUSTOMER_EAV_ATTRIBUTE_WEBSITE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute Website'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_eav_attribute_website` -- LOCK TABLES `customer_eav_attribute_website` WRITE; /*!40000 ALTER TABLE `customer_eav_attribute_website` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_eav_attribute_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity` -- DROP TABLE IF EXISTS `customer_entity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_entity` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Set Id', `website_id` smallint(5) unsigned default NULL COMMENT 'Website Id', `email` varchar(255) default NULL COMMENT 'Email', `group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Group Id', `increment_id` varchar(50) default NULL COMMENT 'Increment Id', `store_id` smallint(5) unsigned default '0' COMMENT 'Store Id', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Updated At', `is_active` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Active', `disable_auto_group_change` smallint(5) unsigned NOT NULL default '0' COMMENT 'Disable automatic group change based on VAT ID', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_CUSTOMER_ENTITY_EMAIL_WEBSITE_ID` (`email`,`website_id`), KEY `IDX_CUSTOMER_ENTITY_STORE_ID` (`store_id`), KEY `IDX_CUSTOMER_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CUSTOMER_ENTITY_EMAIL_WEBSITE_ID` (`email`,`website_id`), KEY `IDX_CUSTOMER_ENTITY_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Customer Entity'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_entity` -- LOCK TABLES `customer_entity` WRITE; /*!40000 ALTER TABLE `customer_entity` DISABLE KEYS */; INSERT INTO `customer_entity` VALUES (1,1,0,1,'post@post.com',1,NULL,1,'2015-02-26 01:35:33','2015-02-25 17:35:35',1,0); /*!40000 ALTER TABLE `customer_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_datetime` -- DROP TABLE IF EXISTS `customer_entity_datetime`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_entity_datetime` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` datetime NOT NULL default '0000-00-00 00:00:00' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `IDX_CUSTOMER_ENTITY_DATETIME_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CUSTOMER_ENTITY_DATETIME_ENTITY_ID` (`entity_id`), KEY `IDX_CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Entity Datetime'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_entity_datetime` -- LOCK TABLES `customer_entity_datetime` WRITE; /*!40000 ALTER TABLE `customer_entity_datetime` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_decimal` -- DROP TABLE IF EXISTS `customer_entity_decimal`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_entity_decimal` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `IDX_CUSTOMER_ENTITY_DECIMAL_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CUSTOMER_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`), KEY `IDX_CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Entity Decimal'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_entity_decimal` -- LOCK TABLES `customer_entity_decimal` WRITE; /*!40000 ALTER TABLE `customer_entity_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_int` -- DROP TABLE IF EXISTS `customer_entity_int`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_entity_int` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` int(11) NOT NULL default '0' COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `IDX_CUSTOMER_ENTITY_INT_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CUSTOMER_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CUSTOMER_ENTITY_INT_ENTITY_ID` (`entity_id`), KEY `IDX_CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Entity Int'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_entity_int` -- LOCK TABLES `customer_entity_int` WRITE; /*!40000 ALTER TABLE `customer_entity_int` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_text` -- DROP TABLE IF EXISTS `customer_entity_text`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_entity_text` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` text NOT NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CUSTOMER_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `IDX_CUSTOMER_ENTITY_TEXT_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CUSTOMER_ENTITY_TEXT_ENTITY_ID` (`entity_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Entity Text'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_entity_text` -- LOCK TABLES `customer_entity_text` WRITE; /*!40000 ALTER TABLE `customer_entity_text` DISABLE KEYS */; /*!40000 ALTER TABLE `customer_entity_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_varchar` -- DROP TABLE IF EXISTS `customer_entity_varchar`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_entity_varchar` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` varchar(255) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`), KEY `IDX_CUSTOMER_ENTITY_VARCHAR_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_CUSTOMER_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`), KEY `IDX_CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Customer Entity Varchar'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_entity_varchar` -- LOCK TABLES `customer_entity_varchar` WRITE; /*!40000 ALTER TABLE `customer_entity_varchar` DISABLE KEYS */; INSERT INTO `customer_entity_varchar` VALUES (1,1,12,1,'d91cf80d8e9bc61585a21acebc5ef00d:7CyzLzH3LpHJRbFsTJ1LSbVhpRMHVN6M'),(2,1,5,1,'user'),(3,1,7,1,'user'),(4,1,3,1,'English'); /*!40000 ALTER TABLE `customer_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_form_attribute` -- DROP TABLE IF EXISTS `customer_form_attribute`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_form_attribute` ( `form_code` varchar(32) NOT NULL COMMENT 'Form Code', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id', PRIMARY KEY (`form_code`,`attribute_id`), KEY `IDX_CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Customer Form Attribute'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_form_attribute` -- LOCK TABLES `customer_form_attribute` WRITE; /*!40000 ALTER TABLE `customer_form_attribute` DISABLE KEYS */; INSERT INTO `customer_form_attribute` VALUES ('adminhtml_checkout',9),('adminhtml_checkout',10),('adminhtml_checkout',11),('adminhtml_checkout',15),('adminhtml_checkout',18),('adminhtml_customer',1),('adminhtml_customer',3),('adminhtml_customer',4),('adminhtml_customer',5),('adminhtml_customer',6),('adminhtml_customer',7),('adminhtml_customer',8),('adminhtml_customer',9),('adminhtml_customer',10),('adminhtml_customer',11),('adminhtml_customer',15),('adminhtml_customer',17),('adminhtml_customer',18),('adminhtml_customer',35),('adminhtml_customer_address',19),('adminhtml_customer_address',20),('adminhtml_customer_address',21),('adminhtml_customer_address',22),('adminhtml_customer_address',23),('adminhtml_customer_address',24),('adminhtml_customer_address',25),('adminhtml_customer_address',26),('adminhtml_customer_address',27),('adminhtml_customer_address',28),('adminhtml_customer_address',29),('adminhtml_customer_address',30),('adminhtml_customer_address',31),('adminhtml_customer_address',32),('adminhtml_customer_address',36),('checkout_register',4),('checkout_register',5),('checkout_register',6),('checkout_register',7),('checkout_register',8),('checkout_register',9),('checkout_register',11),('checkout_register',15),('checkout_register',17),('checkout_register',18),('customer_account_create',4),('customer_account_create',5),('customer_account_create',6),('customer_account_create',7),('customer_account_create',8),('customer_account_create',9),('customer_account_create',11),('customer_account_create',15),('customer_account_create',17),('customer_account_create',18),('customer_account_edit',4),('customer_account_edit',5),('customer_account_edit',6),('customer_account_edit',7),('customer_account_edit',8),('customer_account_edit',9),('customer_account_edit',11),('customer_account_edit',15),('customer_account_edit',17),('customer_account_edit',18),('customer_address_edit',19),('customer_address_edit',20),('customer_address_edit',21),('customer_address_edit',22),('customer_address_edit',23),('customer_address_edit',24),('customer_address_edit',25),('customer_address_edit',26),('customer_address_edit',27),('customer_address_edit',28),('customer_address_edit',29),('customer_address_edit',30),('customer_address_edit',31),('customer_address_edit',32),('customer_address_edit',36),('customer_register_address',19),('customer_register_address',20),('customer_register_address',21),('customer_register_address',22),('customer_register_address',23),('customer_register_address',24),('customer_register_address',25),('customer_register_address',26),('customer_register_address',27),('customer_register_address',28),('customer_register_address',29),('customer_register_address',30),('customer_register_address',31),('customer_register_address',32),('customer_register_address',36); /*!40000 ALTER TABLE `customer_form_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_group` -- DROP TABLE IF EXISTS `customer_group`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `customer_group` ( `customer_group_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Customer Group Id', `customer_group_code` varchar(32) NOT NULL COMMENT 'Customer Group Code', `tax_class_id` int(10) unsigned NOT NULL default '0' COMMENT 'Tax Class Id', PRIMARY KEY (`customer_group_id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Customer Group'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `customer_group` -- LOCK TABLES `customer_group` WRITE; /*!40000 ALTER TABLE `customer_group` DISABLE KEYS */; INSERT INTO `customer_group` VALUES (0,'NOT LOGGED IN',3),(1,'General',3),(2,'Wholesale',3),(3,'Retailer',3); /*!40000 ALTER TABLE `customer_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dataflow_batch` -- DROP TABLE IF EXISTS `dataflow_batch`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dataflow_batch` ( `batch_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Batch Id', `profile_id` int(10) unsigned NOT NULL default '0' COMMENT 'Profile ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `adapter` varchar(128) default NULL COMMENT 'Adapter', `params` text COMMENT 'Parameters', `created_at` timestamp NULL default NULL COMMENT 'Created At', PRIMARY KEY (`batch_id`), KEY `IDX_DATAFLOW_BATCH_PROFILE_ID` (`profile_id`), KEY `IDX_DATAFLOW_BATCH_STORE_ID` (`store_id`), KEY `IDX_DATAFLOW_BATCH_CREATED_AT` (`created_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Dataflow Batch'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dataflow_batch` -- LOCK TABLES `dataflow_batch` WRITE; /*!40000 ALTER TABLE `dataflow_batch` DISABLE KEYS */; /*!40000 ALTER TABLE `dataflow_batch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dataflow_batch_export` -- DROP TABLE IF EXISTS `dataflow_batch_export`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dataflow_batch_export` ( `batch_export_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Batch Export Id', `batch_id` int(10) unsigned NOT NULL default '0' COMMENT 'Batch Id', `batch_data` longtext COMMENT 'Batch Data', `status` smallint(5) unsigned NOT NULL default '0' COMMENT 'Status', PRIMARY KEY (`batch_export_id`), KEY `IDX_DATAFLOW_BATCH_EXPORT_BATCH_ID` (`batch_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Dataflow Batch Export'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dataflow_batch_export` -- LOCK TABLES `dataflow_batch_export` WRITE; /*!40000 ALTER TABLE `dataflow_batch_export` DISABLE KEYS */; /*!40000 ALTER TABLE `dataflow_batch_export` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dataflow_batch_import` -- DROP TABLE IF EXISTS `dataflow_batch_import`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dataflow_batch_import` ( `batch_import_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Batch Import Id', `batch_id` int(10) unsigned NOT NULL default '0' COMMENT 'Batch Id', `batch_data` longtext COMMENT 'Batch Data', `status` smallint(5) unsigned NOT NULL default '0' COMMENT 'Status', PRIMARY KEY (`batch_import_id`), KEY `IDX_DATAFLOW_BATCH_IMPORT_BATCH_ID` (`batch_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Dataflow Batch Import'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dataflow_batch_import` -- LOCK TABLES `dataflow_batch_import` WRITE; /*!40000 ALTER TABLE `dataflow_batch_import` DISABLE KEYS */; /*!40000 ALTER TABLE `dataflow_batch_import` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dataflow_import_data` -- DROP TABLE IF EXISTS `dataflow_import_data`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dataflow_import_data` ( `import_id` int(11) NOT NULL auto_increment COMMENT 'Import Id', `session_id` int(11) default NULL COMMENT 'Session Id', `serial_number` int(11) NOT NULL default '0' COMMENT 'Serial Number', `value` text COMMENT 'Value', `status` int(11) NOT NULL default '0' COMMENT 'Status', PRIMARY KEY (`import_id`), KEY `IDX_DATAFLOW_IMPORT_DATA_SESSION_ID` (`session_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Dataflow Import Data'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dataflow_import_data` -- LOCK TABLES `dataflow_import_data` WRITE; /*!40000 ALTER TABLE `dataflow_import_data` DISABLE KEYS */; /*!40000 ALTER TABLE `dataflow_import_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dataflow_profile` -- DROP TABLE IF EXISTS `dataflow_profile`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dataflow_profile` ( `profile_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Profile Id', `name` varchar(255) default NULL COMMENT 'Name', `created_at` timestamp NULL default NULL COMMENT 'Created At', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', `actions_xml` text COMMENT 'Actions Xml', `gui_data` text COMMENT 'Gui Data', `direction` varchar(6) default NULL COMMENT 'Direction', `entity_type` varchar(64) default NULL COMMENT 'Entity Type', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `data_transfer` varchar(11) default NULL COMMENT 'Data Transfer', PRIMARY KEY (`profile_id`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Dataflow Profile'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dataflow_profile` -- LOCK TABLES `dataflow_profile` WRITE; /*!40000 ALTER TABLE `dataflow_profile` DISABLE KEYS */; INSERT INTO `dataflow_profile` VALUES (1,'Export All Products','2015-02-08 22:14:59','2015-02-08 22:14:59','<action type=\"catalog/convert_adapter_product\" method=\"load\">\\r\\n <var name=\"store\"><![CDATA[0]]></var>\\r\\n</action>\\r\\n\\r\\n<action type=\"catalog/convert_parser_product\" method=\"unparse\">\\r\\n <var name=\"store\"><![CDATA[0]]></var>\\r\\n</action>\\r\\n\\r\\n<action type=\"dataflow/convert_mapper_column\" method=\"map\">\\r\\n</action>\\r\\n\\r\\n<action type=\"dataflow/convert_parser_csv\" method=\"unparse\">\\r\\n <var name=\"delimiter\"><![CDATA[,]]></var>\\r\\n <var name=\"enclose\"><![CDATA[\"]]></var>\\r\\n <var name=\"fieldnames\">true</var>\\r\\n</action>\\r\\n\\r\\n<action type=\"dataflow/convert_adapter_io\" method=\"save\">\\r\\n <var name=\"type\">file</var>\\r\\n <var name=\"path\">var/export</var>\\r\\n <var name=\"filename\"><![CDATA[export_all_products.csv]]></var>\\r\\n</action>\\r\\n\\r\\n','a:5:{s:4:\"file\";a:7:{s:4:\"type\";s:4:\"file\";s:8:\"filename\";s:23:\"export_all_products.csv\";s:4:\"path\";s:10:\"var/export\";s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:7:\"passive\";s:0:\"\";}s:5:\"parse\";a:5:{s:4:\"type\";s:3:\"csv\";s:12:\"single_sheet\";s:0:\"\";s:9:\"delimiter\";s:1:\",\";s:7:\"enclose\";s:1:\"\"\";s:10:\"fieldnames\";s:4:\"true\";}s:3:\"map\";a:3:{s:14:\"only_specified\";s:0:\"\";s:7:\"product\";a:2:{s:2:\"db\";a:0:{}s:4:\"file\";a:0:{}}s:8:\"customer\";a:2:{s:2:\"db\";a:0:{}s:4:\"file\";a:0:{}}}s:7:\"product\";a:1:{s:6:\"filter\";a:8:{s:4:\"name\";s:0:\"\";s:3:\"sku\";s:0:\"\";s:4:\"type\";s:1:\"0\";s:13:\"attribute_set\";s:0:\"\";s:5:\"price\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:3:\"qty\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:10:\"visibility\";s:1:\"0\";s:6:\"status\";s:1:\"0\";}}s:8:\"customer\";a:1:{s:6:\"filter\";a:10:{s:9:\"firstname\";s:0:\"\";s:8:\"lastname\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:10:\"adressType\";s:15:\"default_billing\";s:9:\"telephone\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:6:\"region\";s:0:\"\";s:10:\"created_at\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}}}}','export','product',0,'file'),(2,'Export Product Stocks','2015-02-08 22:14:59','2015-02-08 22:14:59','<action type=\"catalog/convert_adapter_product\" method=\"load\">\\r\\n <var name=\"store\"><![CDATA[0]]></var>\\r\\n</action>\\r\\n\\r\\n<action type=\"catalog/convert_parser_product\" method=\"unparse\">\\r\\n <var name=\"store\"><![CDATA[0]]></var>\\r\\n</action>\\r\\n\\r\\n<action type=\"dataflow/convert_mapper_column\" method=\"map\">\\r\\n</action>\\r\\n\\r\\n<action type=\"dataflow/convert_parser_csv\" method=\"unparse\">\\r\\n <var name=\"delimiter\"><![CDATA[,]]></var>\\r\\n <var name=\"enclose\"><![CDATA[\"]]></var>\\r\\n <var name=\"fieldnames\">true</var>\\r\\n</action>\\r\\n\\r\\n<action type=\"dataflow/convert_adapter_io\" method=\"save\">\\r\\n <var name=\"type\">file</var>\\r\\n <var name=\"path\">var/export</var>\\r\\n <var name=\"filename\"><![CDATA[export_all_products.csv]]></var>\\r\\n</action>\\r\\n\\r\\n','a:5:{s:4:\"file\";a:7:{s:4:\"type\";s:4:\"file\";s:8:\"filename\";s:25:\"export_product_stocks.csv\";s:4:\"path\";s:10:\"var/export\";s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:7:\"passive\";s:0:\"\";}s:5:\"parse\";a:5:{s:4:\"type\";s:3:\"csv\";s:12:\"single_sheet\";s:0:\"\";s:9:\"delimiter\";s:1:\",\";s:7:\"enclose\";s:1:\"\"\";s:10:\"fieldnames\";s:4:\"true\";}s:3:\"map\";a:3:{s:14:\"only_specified\";s:4:\"true\";s:7:\"product\";a:2:{s:2:\"db\";a:4:{i:1;s:5:\"store\";i:2;s:3:\"sku\";i:3;s:3:\"qty\";i:4;s:11:\"is_in_stock\";}s:4:\"file\";a:4:{i:1;s:5:\"store\";i:2;s:3:\"sku\";i:3;s:3:\"qty\";i:4;s:11:\"is_in_stock\";}}s:8:\"customer\";a:2:{s:2:\"db\";a:0:{}s:4:\"file\";a:0:{}}}s:7:\"product\";a:1:{s:6:\"filter\";a:8:{s:4:\"name\";s:0:\"\";s:3:\"sku\";s:0:\"\";s:4:\"type\";s:1:\"0\";s:13:\"attribute_set\";s:0:\"\";s:5:\"price\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:3:\"qty\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:10:\"visibility\";s:1:\"0\";s:6:\"status\";s:1:\"0\";}}s:8:\"customer\";a:1:{s:6:\"filter\";a:10:{s:9:\"firstname\";s:0:\"\";s:8:\"lastname\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:10:\"adressType\";s:15:\"default_billing\";s:9:\"telephone\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:6:\"region\";s:0:\"\";s:10:\"created_at\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}}}}','export','product',0,'file'),(3,'Import All Products','2015-02-08 22:14:59','2015-02-08 22:14:59','<action type=\"dataflow/convert_parser_csv\" method=\"parse\">\\r\\n <var name=\"delimiter\"><![CDATA[,]]></var>\\r\\n <var name=\"enclose\"><![CDATA[\"]]></var>\\r\\n <var name=\"fieldnames\">true</var>\\r\\n <var name=\"store\"><![CDATA[0]]></var>\\r\\n <var name=\"adapter\">catalog/convert_adapter_product</var>\\r\\n <var name=\"method\">parse</var>\\r\\n</action>','a:5:{s:4:\"file\";a:7:{s:4:\"type\";s:4:\"file\";s:8:\"filename\";s:23:\"export_all_products.csv\";s:4:\"path\";s:10:\"var/export\";s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:7:\"passive\";s:0:\"\";}s:5:\"parse\";a:5:{s:4:\"type\";s:3:\"csv\";s:12:\"single_sheet\";s:0:\"\";s:9:\"delimiter\";s:1:\",\";s:7:\"enclose\";s:1:\"\"\";s:10:\"fieldnames\";s:4:\"true\";}s:3:\"map\";a:3:{s:14:\"only_specified\";s:0:\"\";s:7:\"product\";a:2:{s:2:\"db\";a:0:{}s:4:\"file\";a:0:{}}s:8:\"customer\";a:2:{s:2:\"db\";a:0:{}s:4:\"file\";a:0:{}}}s:7:\"product\";a:1:{s:6:\"filter\";a:8:{s:4:\"name\";s:0:\"\";s:3:\"sku\";s:0:\"\";s:4:\"type\";s:1:\"0\";s:13:\"attribute_set\";s:0:\"\";s:5:\"price\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:3:\"qty\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:10:\"visibility\";s:1:\"0\";s:6:\"status\";s:1:\"0\";}}s:8:\"customer\";a:1:{s:6:\"filter\";a:10:{s:9:\"firstname\";s:0:\"\";s:8:\"lastname\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:10:\"adressType\";s:15:\"default_billing\";s:9:\"telephone\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:6:\"region\";s:0:\"\";s:10:\"created_at\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}}}}','import','product',0,'interactive'),(4,'Import Product Stocks','2015-02-08 22:14:59','2015-02-08 22:14:59','<action type=\"dataflow/convert_parser_csv\" method=\"parse\">\\r\\n <var name=\"delimiter\"><![CDATA[,]]></var>\\r\\n <var name=\"enclose\"><![CDATA[\"]]></var>\\r\\n <var name=\"fieldnames\">true</var>\\r\\n <var name=\"store\"><![CDATA[0]]></var>\\r\\n <var name=\"adapter\">catalog/convert_adapter_product</var>\\r\\n <var name=\"method\">parse</var>\\r\\n</action>','a:5:{s:4:\"file\";a:7:{s:4:\"type\";s:4:\"file\";s:8:\"filename\";s:18:\"export_product.csv\";s:4:\"path\";s:10:\"var/export\";s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:7:\"passive\";s:0:\"\";}s:5:\"parse\";a:5:{s:4:\"type\";s:3:\"csv\";s:12:\"single_sheet\";s:0:\"\";s:9:\"delimiter\";s:1:\",\";s:7:\"enclose\";s:1:\"\"\";s:10:\"fieldnames\";s:4:\"true\";}s:3:\"map\";a:3:{s:14:\"only_specified\";s:0:\"\";s:7:\"product\";a:2:{s:2:\"db\";a:0:{}s:4:\"file\";a:0:{}}s:8:\"customer\";a:2:{s:2:\"db\";a:0:{}s:4:\"file\";a:0:{}}}s:7:\"product\";a:1:{s:6:\"filter\";a:8:{s:4:\"name\";s:0:\"\";s:3:\"sku\";s:0:\"\";s:4:\"type\";s:1:\"0\";s:13:\"attribute_set\";s:0:\"\";s:5:\"price\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:3:\"qty\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:10:\"visibility\";s:1:\"0\";s:6:\"status\";s:1:\"0\";}}s:8:\"customer\";a:1:{s:6:\"filter\";a:10:{s:9:\"firstname\";s:0:\"\";s:8:\"lastname\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:10:\"adressType\";s:15:\"default_billing\";s:9:\"telephone\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:6:\"region\";s:0:\"\";s:10:\"created_at\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}}}}','import','product',0,'interactive'),(5,'Export Customers','2015-02-08 22:14:59','2015-02-08 22:14:59','<action type=\"customer/convert_adapter_customer\" method=\"load\">\\r\\n <var name=\"store\"><![CDATA[0]]></var>\\r\\n <var name=\"filter/adressType\"><![CDATA[default_billing]]></var>\\r\\n</action>\\r\\n\\r\\n<action type=\"customer/convert_parser_customer\" method=\"unparse\">\\r\\n <var name=\"store\"><![CDATA[0]]></var>\\r\\n</action>\\r\\n\\r\\n<action type=\"dataflow/convert_mapper_column\" method=\"map\">\\r\\n</action>\\r\\n\\r\\n<action type=\"dataflow/convert_parser_csv\" method=\"unparse\">\\r\\n <var name=\"delimiter\"><![CDATA[,]]></var>\\r\\n <var name=\"enclose\"><![CDATA[\"]]></var>\\r\\n <var name=\"fieldnames\">true</var>\\r\\n</action>\\r\\n\\r\\n<action type=\"dataflow/convert_adapter_io\" method=\"save\">\\r\\n <var name=\"type\">file</var>\\r\\n <var name=\"path\">var/export</var>\\r\\n <var name=\"filename\"><![CDATA[export_customers.csv]]></var>\\r\\n</action>\\r\\n\\r\\n','a:5:{s:4:\"file\";a:7:{s:4:\"type\";s:4:\"file\";s:8:\"filename\";s:20:\"export_customers.csv\";s:4:\"path\";s:10:\"var/export\";s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:7:\"passive\";s:0:\"\";}s:5:\"parse\";a:5:{s:4:\"type\";s:3:\"csv\";s:12:\"single_sheet\";s:0:\"\";s:9:\"delimiter\";s:1:\",\";s:7:\"enclose\";s:1:\"\"\";s:10:\"fieldnames\";s:4:\"true\";}s:3:\"map\";a:3:{s:14:\"only_specified\";s:0:\"\";s:7:\"product\";a:2:{s:2:\"db\";a:0:{}s:4:\"file\";a:0:{}}s:8:\"customer\";a:2:{s:2:\"db\";a:0:{}s:4:\"file\";a:0:{}}}s:7:\"product\";a:1:{s:6:\"filter\";a:8:{s:4:\"name\";s:0:\"\";s:3:\"sku\";s:0:\"\";s:4:\"type\";s:1:\"0\";s:13:\"attribute_set\";s:0:\"\";s:5:\"price\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:3:\"qty\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:10:\"visibility\";s:1:\"0\";s:6:\"status\";s:1:\"0\";}}s:8:\"customer\";a:1:{s:6:\"filter\";a:10:{s:9:\"firstname\";s:0:\"\";s:8:\"lastname\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:10:\"adressType\";s:15:\"default_billing\";s:9:\"telephone\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:6:\"region\";s:0:\"\";s:10:\"created_at\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}}}}','export','customer',0,'file'),(6,'Import Customers','2015-02-08 22:14:59','2015-02-08 22:14:59','<action type=\"dataflow/convert_parser_csv\" method=\"parse\">\\r\\n <var name=\"delimiter\"><![CDATA[,]]></var>\\r\\n <var name=\"enclose\"><![CDATA[\"]]></var>\\r\\n <var name=\"fieldnames\">true</var>\\r\\n <var name=\"store\"><![CDATA[0]]></var>\\r\\n <var name=\"adapter\">customer/convert_adapter_customer</var>\\r\\n <var name=\"method\">parse</var>\\r\\n</action>','a:5:{s:4:\"file\";a:7:{s:4:\"type\";s:4:\"file\";s:8:\"filename\";s:19:\"export_customer.csv\";s:4:\"path\";s:10:\"var/export\";s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:7:\"passive\";s:0:\"\";}s:5:\"parse\";a:5:{s:4:\"type\";s:3:\"csv\";s:12:\"single_sheet\";s:0:\"\";s:9:\"delimiter\";s:1:\",\";s:7:\"enclose\";s:1:\"\"\";s:10:\"fieldnames\";s:4:\"true\";}s:3:\"map\";a:3:{s:14:\"only_specified\";s:0:\"\";s:7:\"product\";a:2:{s:2:\"db\";a:0:{}s:4:\"file\";a:0:{}}s:8:\"customer\";a:2:{s:2:\"db\";a:0:{}s:4:\"file\";a:0:{}}}s:7:\"product\";a:1:{s:6:\"filter\";a:8:{s:4:\"name\";s:0:\"\";s:3:\"sku\";s:0:\"\";s:4:\"type\";s:1:\"0\";s:13:\"attribute_set\";s:0:\"\";s:5:\"price\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:3:\"qty\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}s:10:\"visibility\";s:1:\"0\";s:6:\"status\";s:1:\"0\";}}s:8:\"customer\";a:1:{s:6:\"filter\";a:10:{s:9:\"firstname\";s:0:\"\";s:8:\"lastname\";s:0:\"\";s:5:\"email\";s:0:\"\";s:5:\"group\";s:1:\"0\";s:10:\"adressType\";s:15:\"default_billing\";s:9:\"telephone\";s:0:\"\";s:8:\"postcode\";s:0:\"\";s:7:\"country\";s:0:\"\";s:6:\"region\";s:0:\"\";s:10:\"created_at\";a:2:{s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";}}}}','import','customer',0,'interactive'); /*!40000 ALTER TABLE `dataflow_profile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dataflow_profile_history` -- DROP TABLE IF EXISTS `dataflow_profile_history`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dataflow_profile_history` ( `history_id` int(10) unsigned NOT NULL auto_increment COMMENT 'History Id', `profile_id` int(10) unsigned NOT NULL default '0' COMMENT 'Profile Id', `action_code` varchar(64) default NULL COMMENT 'Action Code', `user_id` int(10) unsigned NOT NULL default '0' COMMENT 'User Id', `performed_at` timestamp NULL default NULL COMMENT 'Performed At', PRIMARY KEY (`history_id`), KEY `IDX_DATAFLOW_PROFILE_HISTORY_PROFILE_ID` (`profile_id`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Dataflow Profile History'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dataflow_profile_history` -- LOCK TABLES `dataflow_profile_history` WRITE; /*!40000 ALTER TABLE `dataflow_profile_history` DISABLE KEYS */; INSERT INTO `dataflow_profile_history` VALUES (1,1,'create',0,'2015-02-08 22:14:59'),(2,2,'create',0,'2015-02-08 22:14:59'),(3,3,'create',0,'2015-02-08 22:14:59'),(4,4,'create',0,'2015-02-08 22:14:59'),(5,5,'create',0,'2015-02-08 22:14:59'),(6,6,'create',0,'2015-02-08 22:14:59'); /*!40000 ALTER TABLE `dataflow_profile_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dataflow_session` -- DROP TABLE IF EXISTS `dataflow_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `dataflow_session` ( `session_id` int(11) NOT NULL auto_increment COMMENT 'Session Id', `user_id` int(11) NOT NULL COMMENT 'User Id', `created_date` timestamp NULL default NULL COMMENT 'Created Date', `file` varchar(255) default NULL COMMENT 'File', `type` varchar(32) default NULL COMMENT 'Type', `direction` varchar(32) default NULL COMMENT 'Direction', `comment` varchar(255) default NULL COMMENT 'Comment', PRIMARY KEY (`session_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Dataflow Session'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `dataflow_session` -- LOCK TABLES `dataflow_session` WRITE; /*!40000 ALTER TABLE `dataflow_session` DISABLE KEYS */; /*!40000 ALTER TABLE `dataflow_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `design_change` -- DROP TABLE IF EXISTS `design_change`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `design_change` ( `design_change_id` int(11) NOT NULL auto_increment COMMENT 'Design Change Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `design` varchar(255) default NULL COMMENT 'Design', `date_from` date default NULL COMMENT 'First Date of Design Activity', `date_to` date default NULL COMMENT 'Last Date of Design Activity', PRIMARY KEY (`design_change_id`), KEY `IDX_DESIGN_CHANGE_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Design Changes'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `design_change` -- LOCK TABLES `design_change` WRITE; /*!40000 ALTER TABLE `design_change` DISABLE KEYS */; INSERT INTO `design_change` VALUES (1,1,'default/theme707',NULL,NULL),(2,2,'default/theme707',NULL,NULL),(3,3,'default/theme707',NULL,NULL),(4,4,'default/theme707',NULL,NULL); /*!40000 ALTER TABLE `design_change` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `directory_country` -- DROP TABLE IF EXISTS `directory_country`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `directory_country` ( `country_id` varchar(2) NOT NULL default '' COMMENT 'Country Id in ISO-2', `iso2_code` varchar(2) default NULL COMMENT 'Country ISO-2 format', `iso3_code` varchar(3) default NULL COMMENT 'Country ISO-3', PRIMARY KEY (`country_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Directory Country'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `directory_country` -- LOCK TABLES `directory_country` WRITE; /*!40000 ALTER TABLE `directory_country` DISABLE KEYS */; INSERT INTO `directory_country` VALUES ('AD','AD','AND'),('AE','AE','ARE'),('AF','AF','AFG'),('AG','AG','ATG'),('AI','AI','AIA'),('AL','AL','ALB'),('AM','AM','ARM'),('AN','AN','ANT'),('AO','AO','AGO'),('AQ','AQ','ATA'),('AR','AR','ARG'),('AS','AS','ASM'),('AT','AT','AUT'),('AU','AU','AUS'),('AW','AW','ABW'),('AX','AX','ALA'),('AZ','AZ','AZE'),('BA','BA','BIH'),('BB','BB','BRB'),('BD','BD','BGD'),('BE','BE','BEL'),('BF','BF','BFA'),('BG','BG','BGR'),('BH','BH','BHR'),('BI','BI','BDI'),('BJ','BJ','BEN'),('BL','BL','BLM'),('BM','BM','BMU'),('BN','BN','BRN'),('BO','BO','BOL'),('BR','BR','BRA'),('BS','BS','BHS'),('BT','BT','BTN'),('BV','BV','BVT'),('BW','BW','BWA'),('BY','BY','BLR'),('BZ','BZ','BLZ'),('CA','CA','CAN'),('CC','CC','CCK'),('CD','CD','COD'),('CF','CF','CAF'),('CG','CG','COG'),('CH','CH','CHE'),('CI','CI','CIV'),('CK','CK','COK'),('CL','CL','CHL'),('CM','CM','CMR'),('CN','CN','CHN'),('CO','CO','COL'),('CR','CR','CRI'),('CU','CU','CUB'),('CV','CV','CPV'),('CX','CX','CXR'),('CY','CY','CYP'),('CZ','CZ','CZE'),('DE','DE','DEU'),('DJ','DJ','DJI'),('DK','DK','DNK'),('DM','DM','DMA'),('DO','DO','DOM'),('DZ','DZ','DZA'),('EC','EC','ECU'),('EE','EE','EST'),('EG','EG','EGY'),('EH','EH','ESH'),('ER','ER','ERI'),('ES','ES','ESP'),('ET','ET','ETH'),('FI','FI','FIN'),('FJ','FJ','FJI'),('FK','FK','FLK'),('FM','FM','FSM'),('FO','FO','FRO'),('FR','FR','FRA'),('GA','GA','GAB'),('GB','GB','GBR'),('GD','GD','GRD'),('GE','GE','GEO'),('GF','GF','GUF'),('GG','GG','GGY'),('GH','GH','GHA'),('GI','GI','GIB'),('GL','GL','GRL'),('GM','GM','GMB'),('GN','GN','GIN'),('GP','GP','GLP'),('GQ','GQ','GNQ'),('GR','GR','GRC'),('GS','GS','SGS'),('GT','GT','GTM'),('GU','GU','GUM'),('GW','GW','GNB'),('GY','GY','GUY'),('HK','HK','HKG'),('HM','HM','HMD'),('HN','HN','HND'),('HR','HR','HRV'),('HT','HT','HTI'),('HU','HU','HUN'),('ID','ID','IDN'),('IE','IE','IRL'),('IL','IL','ISR'),('IM','IM','IMN'),('IN','IN','IND'),('IO','IO','IOT'),('IQ','IQ','IRQ'),('IR','IR','IRN'),('IS','IS','ISL'),('IT','IT','ITA'),('JE','JE','JEY'),('JM','JM','JAM'),('JO','JO','JOR'),('JP','JP','JPN'),('KE','KE','KEN'),('KG','KG','KGZ'),('KH','KH','KHM'),('KI','KI','KIR'),('KM','KM','COM'),('KN','KN','KNA'),('KP','KP','PRK'),('KR','KR','KOR'),('KW','KW','KWT'),('KY','KY','CYM'),('KZ','KZ','KAZ'),('LA','LA','LAO'),('LB','LB','LBN'),('LC','LC','LCA'),('LI','LI','LIE'),('LK','LK','LKA'),('LR','LR','LBR'),('LS','LS','LSO'),('LT','LT','LTU'),('LU','LU','LUX'),('LV','LV','LVA'),('LY','LY','LBY'),('MA','MA','MAR'),('MC','MC','MCO'),('MD','MD','MDA'),('ME','ME','MNE'),('MF','MF','MAF'),('MG','MG','MDG'),('MH','MH','MHL'),('MK','MK','MKD'),('ML','ML','MLI'),('MM','MM','MMR'),('MN','MN','MNG'),('MO','MO','MAC'),('MP','MP','MNP'),('MQ','MQ','MTQ'),('MR','MR','MRT'),('MS','MS','MSR'),('MT','MT','MLT'),('MU','MU','MUS'),('MV','MV','MDV'),('MW','MW','MWI'),('MX','MX','MEX'),('MY','MY','MYS'),('MZ','MZ','MOZ'),('NA','NA','NAM'),('NC','NC','NCL'),('NE','NE','NER'),('NF','NF','NFK'),('NG','NG','NGA'),('NI','NI','NIC'),('NL','NL','NLD'),('NO','NO','NOR'),('NP','NP','NPL'),('NR','NR','NRU'),('NU','NU','NIU'),('NZ','NZ','NZL'),('OM','OM','OMN'),('PA','PA','PAN'),('PE','PE','PER'),('PF','PF','PYF'),('PG','PG','PNG'),('PH','PH','PHL'),('PK','PK','PAK'),('PL','PL','POL'),('PM','PM','SPM'),('PN','PN','PCN'),('PR','PR','PRI'),('PS','PS','PSE'),('PT','PT','PRT'),('PW','PW','PLW'),('PY','PY','PRY'),('QA','QA','QAT'),('RE','RE','REU'),('RO','RO','ROU'),('RS','RS','SRB'),('RU','RU','RUS'),('RW','RW','RWA'),('SA','SA','SAU'),('SB','SB','SLB'),('SC','SC','SYC'),('SD','SD','SDN'),('SE','SE','SWE'),('SG','SG','SGP'),('SH','SH','SHN'),('SI','SI','SVN'),('SJ','SJ','SJM'),('SK','SK','SVK'),('SL','SL','SLE'),('SM','SM','SMR'),('SN','SN','SEN'),('SO','SO','SOM'),('SR','SR','SUR'),('ST','ST','STP'),('SV','SV','SLV'),('SY','SY','SYR'),('SZ','SZ','SWZ'),('TC','TC','TCA'),('TD','TD','TCD'),('TF','TF','ATF'),('TG','TG','TGO'),('TH','TH','THA'),('TJ','TJ','TJK'),('TK','TK','TKL'),('TL','TL','TLS'),('TM','TM','TKM'),('TN','TN','TUN'),('TO','TO','TON'),('TR','TR','TUR'),('TT','TT','TTO'),('TV','TV','TUV'),('TW','TW','TWN'),('TZ','TZ','TZA'),('UA','UA','UKR'),('UG','UG','UGA'),('UM','UM','UMI'),('US','US','USA'),('UY','UY','URY'),('UZ','UZ','UZB'),('VA','VA','VAT'),('VC','VC','VCT'),('VE','VE','VEN'),('VG','VG','VGB'),('VI','VI','VIR'),('VN','VN','VNM'),('VU','VU','VUT'),('WF','WF','WLF'),('WS','WS','WSM'),('YE','YE','YEM'),('YT','YT','MYT'),('ZA','ZA','ZAF'),('ZM','ZM','ZMB'),('ZW','ZW','ZWE'); /*!40000 ALTER TABLE `directory_country` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `directory_country_format` -- DROP TABLE IF EXISTS `directory_country_format`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `directory_country_format` ( `country_format_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Country Format Id', `country_id` varchar(2) default NULL COMMENT 'Country Id in ISO-2', `type` varchar(30) default NULL COMMENT 'Country Format Type', `format` text NOT NULL COMMENT 'Country Format', PRIMARY KEY (`country_format_id`), UNIQUE KEY `UNQ_DIRECTORY_COUNTRY_FORMAT_COUNTRY_ID_TYPE` (`country_id`,`type`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Directory Country Format'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `directory_country_format` -- LOCK TABLES `directory_country_format` WRITE; /*!40000 ALTER TABLE `directory_country_format` DISABLE KEYS */; /*!40000 ALTER TABLE `directory_country_format` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `directory_country_region` -- DROP TABLE IF EXISTS `directory_country_region`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `directory_country_region` ( `region_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Region Id', `country_id` varchar(4) NOT NULL default '0' COMMENT 'Country Id in ISO-2', `code` varchar(32) default NULL COMMENT 'Region code', `default_name` varchar(255) default NULL COMMENT 'Region Name', PRIMARY KEY (`region_id`), KEY `IDX_DIRECTORY_COUNTRY_REGION_COUNTRY_ID` (`country_id`) ) ENGINE=MyISAM AUTO_INCREMENT=485 DEFAULT CHARSET=utf8 COMMENT='Directory Country Region'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `directory_country_region` -- LOCK TABLES `directory_country_region` WRITE; /*!40000 ALTER TABLE `directory_country_region` DISABLE KEYS */; INSERT INTO `directory_country_region` VALUES (1,'US','AL','Alabama'),(2,'US','AK','Alaska'),(3,'US','AS','American Samoa'),(4,'US','AZ','Arizona'),(5,'US','AR','Arkansas'),(6,'US','AF','Armed Forces Africa'),(7,'US','AA','Armed Forces Americas'),(8,'US','AC','Armed Forces Canada'),(9,'US','AE','Armed Forces Europe'),(10,'US','AM','Armed Forces Middle East'),(11,'US','AP','Armed Forces Pacific'),(12,'US','CA','California'),(13,'US','CO','Colorado'),(14,'US','CT','Connecticut'),(15,'US','DE','Delaware'),(16,'US','DC','District of Columbia'),(17,'US','FM','Federated States Of Micronesia'),(18,'US','FL','Florida'),(19,'US','GA','Georgia'),(20,'US','GU','Guam'),(21,'US','HI','Hawaii'),(22,'US','ID','Idaho'),(23,'US','IL','Illinois'),(24,'US','IN','Indiana'),(25,'US','IA','Iowa'),(26,'US','KS','Kansas'),(27,'US','KY','Kentucky'),(28,'US','LA','Louisiana'),(29,'US','ME','Maine'),(30,'US','MH','Marshall Islands'),(31,'US','MD','Maryland'),(32,'US','MA','Massachusetts'),(33,'US','MI','Michigan'),(34,'US','MN','Minnesota'),(35,'US','MS','Mississippi'),(36,'US','MO','Missouri'),(37,'US','MT','Montana'),(38,'US','NE','Nebraska'),(39,'US','NV','Nevada'),(40,'US','NH','New Hampshire'),(41,'US','NJ','New Jersey'),(42,'US','NM','New Mexico'),(43,'US','NY','New York'),(44,'US','NC','North Carolina'),(45,'US','ND','North Dakota'),(46,'US','MP','Northern Mariana Islands'),(47,'US','OH','Ohio'),(48,'US','OK','Oklahoma'),(49,'US','OR','Oregon'),(50,'US','PW','Palau'),(51,'US','PA','Pennsylvania'),(52,'US','PR','Puerto Rico'),(53,'US','RI','Rhode Island'),(54,'US','SC','South Carolina'),(55,'US','SD','South Dakota'),(56,'US','TN','Tennessee'),(57,'US','TX','Texas'),(58,'US','UT','Utah'),(59,'US','VT','Vermont'),(60,'US','VI','Virgin Islands'),(61,'US','VA','Virginia'),(62,'US','WA','Washington'),(63,'US','WV','West Virginia'),(64,'US','WI','Wisconsin'),(65,'US','WY','Wyoming'),(66,'CA','AB','Alberta'),(67,'CA','BC','British Columbia'),(68,'CA','MB','Manitoba'),(69,'CA','NL','Newfoundland and Labrador'),(70,'CA','NB','New Brunswick'),(71,'CA','NS','Nova Scotia'),(72,'CA','NT','Northwest Territories'),(73,'CA','NU','Nunavut'),(74,'CA','ON','Ontario'),(75,'CA','PE','Prince Edward Island'),(76,'CA','QC','Quebec'),(77,'CA','SK','Saskatchewan'),(78,'CA','YT','Yukon Territory'),(79,'DE','NDS','Niedersachsen'),(80,'DE','BAW','Baden-Württemberg'),(81,'DE','BAY','Bayern'),(82,'DE','BER','Berlin'),(83,'DE','BRG','Brandenburg'),(84,'DE','BRE','Bremen'),(85,'DE','HAM','Hamburg'),(86,'DE','HES','Hessen'),(87,'DE','MEC','Mecklenburg-Vorpommern'),(88,'DE','NRW','Nordrhein-Westfalen'),(89,'DE','RHE','Rheinland-Pfalz'),(90,'DE','SAR','Saarland'),(91,'DE','SAS','Sachsen'),(92,'DE','SAC','Sachsen-Anhalt'),(93,'DE','SCN','Schleswig-Holstein'),(94,'DE','THE','Thüringen'),(95,'AT','WI','Wien'),(96,'AT','NO','Niederösterreich'),(97,'AT','OO','Oberösterreich'),(98,'AT','SB','Salzburg'),(99,'AT','KN','Kärnten'),(100,'AT','ST','Steiermark'),(101,'AT','TI','Tirol'),(102,'AT','BL','Burgenland'),(103,'AT','VB','Voralberg'),(104,'CH','AG','Aargau'),(105,'CH','AI','Appenzell Innerrhoden'),(106,'CH','AR','Appenzell Ausserrhoden'),(107,'CH','BE','Bern'),(108,'CH','BL','Basel-Landschaft'),(109,'CH','BS','Basel-Stadt'),(110,'CH','FR','Freiburg'),(111,'CH','GE','Genf'),(112,'CH','GL','Glarus'),(113,'CH','GR','Graubünden'),(114,'CH','JU','Jura'),(115,'CH','LU','Luzern'),(116,'CH','NE','Neuenburg'),(117,'CH','NW','Nidwalden'),(118,'CH','OW','Obwalden'),(119,'CH','SG','St. Gallen'),(120,'CH','SH','Schaffhausen'),(121,'CH','SO','Solothurn'),(122,'CH','SZ','Schwyz'),(123,'CH','TG','Thurgau'),(124,'CH','TI','Tessin'),(125,'CH','UR','Uri'),(126,'CH','VD','Waadt'),(127,'CH','VS','Wallis'),(128,'CH','ZG','Zug'),(129,'CH','ZH','Zürich'),(130,'ES','A Coruсa','A Coruña'),(131,'ES','Alava','Alava'),(132,'ES','Albacete','Albacete'),(133,'ES','Alicante','Alicante'),(134,'ES','Almeria','Almeria'),(135,'ES','Asturias','Asturias'),(136,'ES','Avila','Avila'),(137,'ES','Badajoz','Badajoz'),(138,'ES','Baleares','Baleares'),(139,'ES','Barcelona','Barcelona'),(140,'ES','Burgos','Burgos'),(141,'ES','Caceres','Caceres'),(142,'ES','Cadiz','Cadiz'),(143,'ES','Cantabria','Cantabria'),(144,'ES','Castellon','Castellon'),(145,'ES','Ceuta','Ceuta'),(146,'ES','Ciudad Real','Ciudad Real'),(147,'ES','Cordoba','Cordoba'),(148,'ES','Cuenca','Cuenca'),(149,'ES','Girona','Girona'),(150,'ES','Granada','Granada'),(151,'ES','Guadalajara','Guadalajara'),(152,'ES','Guipuzcoa','Guipuzcoa'),(153,'ES','Huelva','Huelva'),(154,'ES','Huesca','Huesca'),(155,'ES','Jaen','Jaen'),(156,'ES','La Rioja','La Rioja'),(157,'ES','Las Palmas','Las Palmas'),(158,'ES','Leon','Leon'),(159,'ES','Lleida','Lleida'),(160,'ES','Lugo','Lugo'),(161,'ES','Madrid','Madrid'),(162,'ES','Malaga','Malaga'),(163,'ES','Melilla','Melilla'),(164,'ES','Murcia','Murcia'),(165,'ES','Navarra','Navarra'),(166,'ES','Ourense','Ourense'),(167,'ES','Palencia','Palencia'),(168,'ES','Pontevedra','Pontevedra'),(169,'ES','Salamanca','Salamanca'),(170,'ES','Santa Cruz de Tenerife','Santa Cruz de Tenerife'),(171,'ES','Segovia','Segovia'),(172,'ES','Sevilla','Sevilla'),(173,'ES','Soria','Soria'),(174,'ES','Tarragona','Tarragona'),(175,'ES','Teruel','Teruel'),(176,'ES','Toledo','Toledo'),(177,'ES','Valencia','Valencia'),(178,'ES','Valladolid','Valladolid'),(179,'ES','Vizcaya','Vizcaya'),(180,'ES','Zamora','Zamora'),(181,'ES','Zaragoza','Zaragoza'),(182,'FR','1','Ain'),(183,'FR','2','Aisne'),(184,'FR','3','Allier'),(185,'FR','4','Alpes-de-Haute-Provence'),(186,'FR','5','Hautes-Alpes'),(187,'FR','6','Alpes-Maritimes'),(188,'FR','7','Ardèche'),(189,'FR','8','Ardennes'),(190,'FR','9','Ariège'),(191,'FR','10','Aube'),(192,'FR','11','Aude'),(193,'FR','12','Aveyron'),(194,'FR','13','Bouches-du-Rhône'),(195,'FR','14','Calvados'),(196,'FR','15','Cantal'),(197,'FR','16','Charente'),(198,'FR','17','Charente-Maritime'),(199,'FR','18','Cher'),(200,'FR','19','Corrèze'),(201,'FR','2A','Corse-du-Sud'),(202,'FR','2B','Haute-Corse'),(203,'FR','21','Côte-d\'Or'),(204,'FR','22','Côtes-d\'Armor'),(205,'FR','23','Creuse'),(206,'FR','24','Dordogne'),(207,'FR','25','Doubs'),(208,'FR','26','Drôme'),(209,'FR','27','Eure'),(210,'FR','28','Eure-et-Loir'),(211,'FR','29','Finistère'),(212,'FR','30','Gard'),(213,'FR','31','Haute-Garonne'),(214,'FR','32','Gers'),(215,'FR','33','Gironde'),(216,'FR','34','Hérault'),(217,'FR','35','Ille-et-Vilaine'),(218,'FR','36','Indre'),(219,'FR','37','Indre-et-Loire'),(220,'FR','38','Isère'),(221,'FR','39','Jura'),(222,'FR','40','Landes'),(223,'FR','41','Loir-et-Cher'),(224,'FR','42','Loire'),(225,'FR','43','Haute-Loire'),(226,'FR','44','Loire-Atlantique'),(227,'FR','45','Loiret'),(228,'FR','46','Lot'),(229,'FR','47','Lot-et-Garonne'),(230,'FR','48','Lozère'),(231,'FR','49','Maine-et-Loire'),(232,'FR','50','Manche'),(233,'FR','51','Marne'),(234,'FR','52','Haute-Marne'),(235,'FR','53','Mayenne'),(236,'FR','54','Meurthe-et-Moselle'),(237,'FR','55','Meuse'),(238,'FR','56','Morbihan'),(239,'FR','57','Moselle'),(240,'FR','58','Nièvre'),(241,'FR','59','Nord'),(242,'FR','60','Oise'),(243,'FR','61','Orne'),(244,'FR','62','Pas-de-Calais'),(245,'FR','63','Puy-de-Dôme'),(246,'FR','64','Pyrénées-Atlantiques'),(247,'FR','65','Hautes-Pyrénées'),(248,'FR','66','Pyrénées-Orientales'),(249,'FR','67','Bas-Rhin'),(250,'FR','68','Haut-Rhin'),(251,'FR','69','Rhône'),(252,'FR','70','Haute-Saône'),(253,'FR','71','Saône-et-Loire'),(254,'FR','72','Sarthe'),(255,'FR','73','Savoie'),(256,'FR','74','Haute-Savoie'),(257,'FR','75','Paris'),(258,'FR','76','Seine-Maritime'),(259,'FR','77','Seine-et-Marne'),(260,'FR','78','Yvelines'),(261,'FR','79','Deux-Sèvres'),(262,'FR','80','Somme'),(263,'FR','81','Tarn'),(264,'FR','82','Tarn-et-Garonne'),(265,'FR','83','Var'),(266,'FR','84','Vaucluse'),(267,'FR','85','Vendée'),(268,'FR','86','Vienne'),(269,'FR','87','Haute-Vienne'),(270,'FR','88','Vosges'),(271,'FR','89','Yonne'),(272,'FR','90','Territoire-de-Belfort'),(273,'FR','91','Essonne'),(274,'FR','92','Hauts-de-Seine'),(275,'FR','93','Seine-Saint-Denis'),(276,'FR','94','Val-de-Marne'),(277,'FR','95','Val-d\'Oise'),(278,'RO','AB','Alba'),(279,'RO','AR','Arad'),(280,'RO','AG','Argeş'),(281,'RO','BC','Bacău'),(282,'RO','BH','Bihor'),(283,'RO','BN','Bistriţa-Năsăud'),(284,'RO','BT','Botoşani'),(285,'RO','BV','Braşov'),(286,'RO','BR','Brăila'),(287,'RO','B','Bucureşti'),(288,'RO','BZ','Buzău'),(289,'RO','CS','Caraş-Severin'),(290,'RO','CL','Călăraşi'),(291,'RO','CJ','Cluj'),(292,'RO','CT','Constanţa'),(293,'RO','CV','Covasna'),(294,'RO','DB','Dâmboviţa'),(295,'RO','DJ','Dolj'),(296,'RO','GL','Galaţi'),(297,'RO','GR','Giurgiu'),(298,'RO','GJ','Gorj'),(299,'RO','HR','Harghita'),(300,'RO','HD','Hunedoara'),(301,'RO','IL','Ialomiţa'),(302,'RO','IS','Iaşi'),(303,'RO','IF','Ilfov'),(304,'RO','MM','Maramureş'),(305,'RO','MH','Mehedinţi'),(306,'RO','MS','Mureş'),(307,'RO','NT','Neamţ'),(308,'RO','OT','Olt'),(309,'RO','PH','Prahova'),(310,'RO','SM','Satu-Mare'),(311,'RO','SJ','Sălaj'),(312,'RO','SB','Sibiu'),(313,'RO','SV','Suceava'),(314,'RO','TR','Teleorman'),(315,'RO','TM','Timiş'),(316,'RO','TL','Tulcea'),(317,'RO','VS','Vaslui'),(318,'RO','VL','Vâlcea'),(319,'RO','VN','Vrancea'),(320,'FI','Lappi','Lappi'),(321,'FI','Pohjois-Pohjanmaa','Pohjois-Pohjanmaa'),(322,'FI','Kainuu','Kainuu'),(323,'FI','Pohjois-Karjala','Pohjois-Karjala'),(324,'FI','Pohjois-Savo','Pohjois-Savo'),(325,'FI','Etelä-Savo','Etelä-Savo'),(326,'FI','Etelä-Pohjanmaa','Etelä-Pohjanmaa'),(327,'FI','Pohjanmaa','Pohjanmaa'),(328,'FI','Pirkanmaa','Pirkanmaa'),(329,'FI','Satakunta','Satakunta'),(330,'FI','Keski-Pohjanmaa','Keski-Pohjanmaa'),(331,'FI','Keski-Suomi','Keski-Suomi'),(332,'FI','Varsinais-Suomi','Varsinais-Suomi'),(333,'FI','Etelä-Karjala','Etelä-Karjala'),(334,'FI','Päijät-Häme','Päijät-Häme'),(335,'FI','Kanta-Häme','Kanta-Häme'),(336,'FI','Uusimaa','Uusimaa'),(337,'FI','Itä-Uusimaa','Itä-Uusimaa'),(338,'FI','Kymenlaakso','Kymenlaakso'),(339,'FI','Ahvenanmaa','Ahvenanmaa'),(340,'EE','EE-37','Harjumaa'),(341,'EE','EE-39','Hiiumaa'),(342,'EE','EE-44','Ida-Virumaa'),(343,'EE','EE-49','Jõgevamaa'),(344,'EE','EE-51','Järvamaa'),(345,'EE','EE-57','Läänemaa'),(346,'EE','EE-59','Lääne-Virumaa'),(347,'EE','EE-65','Põlvamaa'),(348,'EE','EE-67','Pärnumaa'),(349,'EE','EE-70','Raplamaa'),(350,'EE','EE-74','Saaremaa'),(351,'EE','EE-78','Tartumaa'),(352,'EE','EE-82','Valgamaa'),(353,'EE','EE-84','Viljandimaa'),(354,'EE','EE-86','Võrumaa'),(355,'LV','LV-DGV','Daugavpils'),(356,'LV','LV-JEL','Jelgava'),(357,'LV','Jēkabpils','Jēkabpils'),(358,'LV','LV-JUR','Jūrmala'),(359,'LV','LV-LPX','Liepāja'),(360,'LV','LV-LE','Liepājas novads'),(361,'LV','LV-REZ','Rēzekne'),(362,'LV','LV-RIX','Rīga'),(363,'LV','LV-RI','Rīgas novads'),(364,'LV','Valmiera','Valmiera'),(365,'LV','LV-VEN','Ventspils'),(366,'LV','Aglonas novads','Aglonas novads'),(367,'LV','LV-AI','Aizkraukles novads'),(368,'LV','Aizputes novads','Aizputes novads'),(369,'LV','Aknīstes novads','Aknīstes novads'),(370,'LV','Alojas novads','Alojas novads'),(371,'LV','Alsungas novads','Alsungas novads'),(372,'LV','LV-AL','Alūksnes novads'),(373,'LV','Amatas novads','Amatas novads'),(374,'LV','Apes novads','Apes novads'),(375,'LV','Auces novads','Auces novads'),(376,'LV','Babītes novads','Babītes novads'),(377,'LV','Baldones novads','Baldones novads'),(378,'LV','Baltinavas novads','Baltinavas novads'),(379,'LV','LV-BL','Balvu novads'),(380,'LV','LV-BU','Bauskas novads'),(381,'LV','Beverīnas novads','Beverīnas novads'),(382,'LV','Brocēnu novads','Brocēnu novads'),(383,'LV','Burtnieku novads','Burtnieku novads'),(384,'LV','Carnikavas novads','Carnikavas novads'),(385,'LV','Cesvaines novads','Cesvaines novads'),(386,'LV','Ciblas novads','Ciblas novads'),(387,'LV','LV-CE','Cēsu novads'),(388,'LV','Dagdas novads','Dagdas novads'),(389,'LV','LV-DA','Daugavpils novads'),(390,'LV','LV-DO','Dobeles novads'),(391,'LV','Dundagas novads','Dundagas novads'),(392,'LV','Durbes novads','Durbes novads'),(393,'LV','Engures novads','Engures novads'),(394,'LV','Garkalnes novads','Garkalnes novads'),(395,'LV','Grobiņas novads','Grobiņas novads'),(396,'LV','LV-GU','Gulbenes novads'),(397,'LV','Iecavas novads','Iecavas novads'),(398,'LV','Ikšķiles novads','Ikšķiles novads'),(399,'LV','Ilūkstes novads','Ilūkstes novads'),(400,'LV','Inčukalna novads','Inčukalna novads'),(401,'LV','Jaunjelgavas novads','Jaunjelgavas novads'),(402,'LV','Jaunpiebalgas novads','Jaunpiebalgas novads'),(403,'LV','Jaunpils novads','Jaunpils novads'),(404,'LV','LV-JL','Jelgavas novads'),(405,'LV','LV-JK','Jēkabpils novads'),(406,'LV','Kandavas novads','Kandavas novads'),(407,'LV','Kokneses novads','Kokneses novads'),(408,'LV','Krimuldas novads','Krimuldas novads'),(409,'LV','Krustpils novads','Krustpils novads'),(410,'LV','LV-KR','Krāslavas novads'),(411,'LV','LV-KU','Kuldīgas novads'),(412,'LV','Kārsavas novads','Kārsavas novads'),(413,'LV','Lielvārdes novads','Lielvārdes novads'),(414,'LV','LV-LM','Limbažu novads'),(415,'LV','Lubānas novads','Lubānas novads'),(416,'LV','LV-LU','Ludzas novads'),(417,'LV','Līgatnes novads','Līgatnes novads'),(418,'LV','Līvānu novads','Līvānu novads'),(419,'LV','LV-MA','Madonas novads'),(420,'LV','Mazsalacas novads','Mazsalacas novads'),(421,'LV','Mālpils novads','Mālpils novads'),(422,'LV','Mārupes novads','Mārupes novads'),(423,'LV','Naukšēnu novads','Naukšēnu novads'),(424,'LV','Neretas novads','Neretas novads'),(425,'LV','Nīcas novads','Nīcas novads'),(426,'LV','LV-OG','Ogres novads'),(427,'LV','Olaines novads','Olaines novads'),(428,'LV','Ozolnieku novads','Ozolnieku novads'),(429,'LV','LV-PR','Preiļu novads'),(430,'LV','Priekules novads','Priekules novads'),(431,'LV','Priekuļu novads','Priekuļu novads'),(432,'LV','Pārgaujas novads','Pārgaujas novads'),(433,'LV','Pāvilostas novads','Pāvilostas novads'),(434,'LV','Pļaviņu novads','Pļaviņu novads'),(435,'LV','Raunas novads','Raunas novads'),(436,'LV','Riebiņu novads','Riebiņu novads'),(437,'LV','Rojas novads','Rojas novads'),(438,'LV','Ropažu novads','Ropažu novads'),(439,'LV','Rucavas novads','Rucavas novads'),(440,'LV','Rugāju novads','Rugāju novads'),(441,'LV','Rundāles novads','Rundāles novads'),(442,'LV','LV-RE','Rēzeknes novads'),(443,'LV','Rūjienas novads','Rūjienas novads'),(444,'LV','Salacgrīvas novads','Salacgrīvas novads'),(445,'LV','Salas novads','Salas novads'),(446,'LV','Salaspils novads','Salaspils novads'),(447,'LV','LV-SA','Saldus novads'),(448,'LV','Saulkrastu novads','Saulkrastu novads'),(449,'LV','Siguldas novads','Siguldas novads'),(450,'LV','Skrundas novads','Skrundas novads'),(451,'LV','Skrīveru novads','Skrīveru novads'),(452,'LV','Smiltenes novads','Smiltenes novads'),(453,'LV','Stopiņu novads','Stopiņu novads'),(454,'LV','Strenču novads','Strenču novads'),(455,'LV','Sējas novads','Sējas novads'),(456,'LV','LV-TA','Talsu novads'),(457,'LV','LV-TU','Tukuma novads'),(458,'LV','Tērvetes novads','Tērvetes novads'),(459,'LV','Vaiņodes novads','Vaiņodes novads'),(460,'LV','LV-VK','Valkas novads'),(461,'LV','LV-VM','Valmieras novads'),(462,'LV','Varakļānu novads','Varakļānu novads'),(463,'LV','Vecpiebalgas novads','Vecpiebalgas novads'),(464,'LV','Vecumnieku novads','Vecumnieku novads'),(465,'LV','LV-VE','Ventspils novads'),(466,'LV','Viesītes novads','Viesītes novads'),(467,'LV','Viļakas novads','Viļakas novads'),(468,'LV','Viļānu novads','Viļānu novads'),(469,'LV','Vārkavas novads','Vārkavas novads'),(470,'LV','Zilupes novads','Zilupes novads'),(471,'LV','Ādažu novads','Ādažu novads'),(472,'LV','Ērgļu novads','Ērgļu novads'),(473,'LV','Ķeguma novads','Ķeguma novads'),(474,'LV','Ķekavas novads','Ķekavas novads'),(475,'LT','LT-AL','Alytaus Apskritis'),(476,'LT','LT-KU','Kauno Apskritis'),(477,'LT','LT-KL','Klaipėdos Apskritis'),(478,'LT','LT-MR','Marijampolės Apskritis'),(479,'LT','LT-PN','Panevėžio Apskritis'),(480,'LT','LT-SA','Šiaulių Apskritis'),(481,'LT','LT-TA','Tauragės Apskritis'),(482,'LT','LT-TE','Telšių Apskritis'),(483,'LT','LT-UT','Utenos Apskritis'),(484,'LT','LT-VL','Vilniaus Apskritis'); /*!40000 ALTER TABLE `directory_country_region` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `directory_country_region_name` -- DROP TABLE IF EXISTS `directory_country_region_name`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `directory_country_region_name` ( `locale` varchar(8) NOT NULL default '' COMMENT 'Locale', `region_id` int(10) unsigned NOT NULL default '0' COMMENT 'Region Id', `name` varchar(255) default NULL COMMENT 'Region Name', PRIMARY KEY (`locale`,`region_id`), KEY `IDX_DIRECTORY_COUNTRY_REGION_NAME_REGION_ID` (`region_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Directory Country Region Name'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `directory_country_region_name` -- LOCK TABLES `directory_country_region_name` WRITE; /*!40000 ALTER TABLE `directory_country_region_name` DISABLE KEYS */; INSERT INTO `directory_country_region_name` VALUES ('en_US',1,'Alabama'),('en_US',2,'Alaska'),('en_US',3,'American Samoa'),('en_US',4,'Arizona'),('en_US',5,'Arkansas'),('en_US',6,'Armed Forces Africa'),('en_US',7,'Armed Forces Americas'),('en_US',8,'Armed Forces Canada'),('en_US',9,'Armed Forces Europe'),('en_US',10,'Armed Forces Middle East'),('en_US',11,'Armed Forces Pacific'),('en_US',12,'California'),('en_US',13,'Colorado'),('en_US',14,'Connecticut'),('en_US',15,'Delaware'),('en_US',16,'District of Columbia'),('en_US',17,'Federated States Of Micronesia'),('en_US',18,'Florida'),('en_US',19,'Georgia'),('en_US',20,'Guam'),('en_US',21,'Hawaii'),('en_US',22,'Idaho'),('en_US',23,'Illinois'),('en_US',24,'Indiana'),('en_US',25,'Iowa'),('en_US',26,'Kansas'),('en_US',27,'Kentucky'),('en_US',28,'Louisiana'),('en_US',29,'Maine'),('en_US',30,'Marshall Islands'),('en_US',31,'Maryland'),('en_US',32,'Massachusetts'),('en_US',33,'Michigan'),('en_US',34,'Minnesota'),('en_US',35,'Mississippi'),('en_US',36,'Missouri'),('en_US',37,'Montana'),('en_US',38,'Nebraska'),('en_US',39,'Nevada'),('en_US',40,'New Hampshire'),('en_US',41,'New Jersey'),('en_US',42,'New Mexico'),('en_US',43,'New York'),('en_US',44,'North Carolina'),('en_US',45,'North Dakota'),('en_US',46,'Northern Mariana Islands'),('en_US',47,'Ohio'),('en_US',48,'Oklahoma'),('en_US',49,'Oregon'),('en_US',50,'Palau'),('en_US',51,'Pennsylvania'),('en_US',52,'Puerto Rico'),('en_US',53,'Rhode Island'),('en_US',54,'South Carolina'),('en_US',55,'South Dakota'),('en_US',56,'Tennessee'),('en_US',57,'Texas'),('en_US',58,'Utah'),('en_US',59,'Vermont'),('en_US',60,'Virgin Islands'),('en_US',61,'Virginia'),('en_US',62,'Washington'),('en_US',63,'West Virginia'),('en_US',64,'Wisconsin'),('en_US',65,'Wyoming'),('en_US',66,'Alberta'),('en_US',67,'British Columbia'),('en_US',68,'Manitoba'),('en_US',69,'Newfoundland and Labrador'),('en_US',70,'New Brunswick'),('en_US',71,'Nova Scotia'),('en_US',72,'Northwest Territories'),('en_US',73,'Nunavut'),('en_US',74,'Ontario'),('en_US',75,'Prince Edward Island'),('en_US',76,'Quebec'),('en_US',77,'Saskatchewan'),('en_US',78,'Yukon Territory'),('en_US',79,'Niedersachsen'),('en_US',80,'Baden-Württemberg'),('en_US',81,'Bayern'),('en_US',82,'Berlin'),('en_US',83,'Brandenburg'),('en_US',84,'Bremen'),('en_US',85,'Hamburg'),('en_US',86,'Hessen'),('en_US',87,'Mecklenburg-Vorpommern'),('en_US',88,'Nordrhein-Westfalen'),('en_US',89,'Rheinland-Pfalz'),('en_US',90,'Saarland'),('en_US',91,'Sachsen'),('en_US',92,'Sachsen-Anhalt'),('en_US',93,'Schleswig-Holstein'),('en_US',94,'Thüringen'),('en_US',95,'Wien'),('en_US',96,'Niederösterreich'),('en_US',97,'Oberösterreich'),('en_US',98,'Salzburg'),('en_US',99,'Kärnten'),('en_US',100,'Steiermark'),('en_US',101,'Tirol'),('en_US',102,'Burgenland'),('en_US',103,'Voralberg'),('en_US',104,'Aargau'),('en_US',105,'Appenzell Innerrhoden'),('en_US',106,'Appenzell Ausserrhoden'),('en_US',107,'Bern'),('en_US',108,'Basel-Landschaft'),('en_US',109,'Basel-Stadt'),('en_US',110,'Freiburg'),('en_US',111,'Genf'),('en_US',112,'Glarus'),('en_US',113,'Graubünden'),('en_US',114,'Jura'),('en_US',115,'Luzern'),('en_US',116,'Neuenburg'),('en_US',117,'Nidwalden'),('en_US',118,'Obwalden'),('en_US',119,'St. Gallen'),('en_US',120,'Schaffhausen'),('en_US',121,'Solothurn'),('en_US',122,'Schwyz'),('en_US',123,'Thurgau'),('en_US',124,'Tessin'),('en_US',125,'Uri'),('en_US',126,'Waadt'),('en_US',127,'Wallis'),('en_US',128,'Zug'),('en_US',129,'Zürich'),('en_US',130,'A Coruña'),('en_US',131,'Alava'),('en_US',132,'Albacete'),('en_US',133,'Alicante'),('en_US',134,'Almeria'),('en_US',135,'Asturias'),('en_US',136,'Avila'),('en_US',137,'Badajoz'),('en_US',138,'Baleares'),('en_US',139,'Barcelona'),('en_US',140,'Burgos'),('en_US',141,'Caceres'),('en_US',142,'Cadiz'),('en_US',143,'Cantabria'),('en_US',144,'Castellon'),('en_US',145,'Ceuta'),('en_US',146,'Ciudad Real'),('en_US',147,'Cordoba'),('en_US',148,'Cuenca'),('en_US',149,'Girona'),('en_US',150,'Granada'),('en_US',151,'Guadalajara'),('en_US',152,'Guipuzcoa'),('en_US',153,'Huelva'),('en_US',154,'Huesca'),('en_US',155,'Jaen'),('en_US',156,'La Rioja'),('en_US',157,'Las Palmas'),('en_US',158,'Leon'),('en_US',159,'Lleida'),('en_US',160,'Lugo'),('en_US',161,'Madrid'),('en_US',162,'Malaga'),('en_US',163,'Melilla'),('en_US',164,'Murcia'),('en_US',165,'Navarra'),('en_US',166,'Ourense'),('en_US',167,'Palencia'),('en_US',168,'Pontevedra'),('en_US',169,'Salamanca'),('en_US',170,'Santa Cruz de Tenerife'),('en_US',171,'Segovia'),('en_US',172,'Sevilla'),('en_US',173,'Soria'),('en_US',174,'Tarragona'),('en_US',175,'Teruel'),('en_US',176,'Toledo'),('en_US',177,'Valencia'),('en_US',178,'Valladolid'),('en_US',179,'Vizcaya'),('en_US',180,'Zamora'),('en_US',181,'Zaragoza'),('en_US',182,'Ain'),('en_US',183,'Aisne'),('en_US',184,'Allier'),('en_US',185,'Alpes-de-Haute-Provence'),('en_US',186,'Hautes-Alpes'),('en_US',187,'Alpes-Maritimes'),('en_US',188,'Ardèche'),('en_US',189,'Ardennes'),('en_US',190,'Ariège'),('en_US',191,'Aube'),('en_US',192,'Aude'),('en_US',193,'Aveyron'),('en_US',194,'Bouches-du-Rhône'),('en_US',195,'Calvados'),('en_US',196,'Cantal'),('en_US',197,'Charente'),('en_US',198,'Charente-Maritime'),('en_US',199,'Cher'),('en_US',200,'Corrèze'),('en_US',201,'Corse-du-Sud'),('en_US',202,'Haute-Corse'),('en_US',203,'Côte-d\'Or'),('en_US',204,'Côtes-d\'Armor'),('en_US',205,'Creuse'),('en_US',206,'Dordogne'),('en_US',207,'Doubs'),('en_US',208,'Drôme'),('en_US',209,'Eure'),('en_US',210,'Eure-et-Loir'),('en_US',211,'Finistère'),('en_US',212,'Gard'),('en_US',213,'Haute-Garonne'),('en_US',214,'Gers'),('en_US',215,'Gironde'),('en_US',216,'Hérault'),('en_US',217,'Ille-et-Vilaine'),('en_US',218,'Indre'),('en_US',219,'Indre-et-Loire'),('en_US',220,'Isère'),('en_US',221,'Jura'),('en_US',222,'Landes'),('en_US',223,'Loir-et-Cher'),('en_US',224,'Loire'),('en_US',225,'Haute-Loire'),('en_US',226,'Loire-Atlantique'),('en_US',227,'Loiret'),('en_US',228,'Lot'),('en_US',229,'Lot-et-Garonne'),('en_US',230,'Lozère'),('en_US',231,'Maine-et-Loire'),('en_US',232,'Manche'),('en_US',233,'Marne'),('en_US',234,'Haute-Marne'),('en_US',235,'Mayenne'),('en_US',236,'Meurthe-et-Moselle'),('en_US',237,'Meuse'),('en_US',238,'Morbihan'),('en_US',239,'Moselle'),('en_US',240,'Nièvre'),('en_US',241,'Nord'),('en_US',242,'Oise'),('en_US',243,'Orne'),('en_US',244,'Pas-de-Calais'),('en_US',245,'Puy-de-Dôme'),('en_US',246,'Pyrénées-Atlantiques'),('en_US',247,'Hautes-Pyrénées'),('en_US',248,'Pyrénées-Orientales'),('en_US',249,'Bas-Rhin'),('en_US',250,'Haut-Rhin'),('en_US',251,'Rhône'),('en_US',252,'Haute-Saône'),('en_US',253,'Saône-et-Loire'),('en_US',254,'Sarthe'),('en_US',255,'Savoie'),('en_US',256,'Haute-Savoie'),('en_US',257,'Paris'),('en_US',258,'Seine-Maritime'),('en_US',259,'Seine-et-Marne'),('en_US',260,'Yvelines'),('en_US',261,'Deux-Sèvres'),('en_US',262,'Somme'),('en_US',263,'Tarn'),('en_US',264,'Tarn-et-Garonne'),('en_US',265,'Var'),('en_US',266,'Vaucluse'),('en_US',267,'Vendée'),('en_US',268,'Vienne'),('en_US',269,'Haute-Vienne'),('en_US',270,'Vosges'),('en_US',271,'Yonne'),('en_US',272,'Territoire-de-Belfort'),('en_US',273,'Essonne'),('en_US',274,'Hauts-de-Seine'),('en_US',275,'Seine-Saint-Denis'),('en_US',276,'Val-de-Marne'),('en_US',277,'Val-d\'Oise'),('en_US',278,'Alba'),('en_US',279,'Arad'),('en_US',280,'Argeş'),('en_US',281,'Bacău'),('en_US',282,'Bihor'),('en_US',283,'Bistriţa-Năsăud'),('en_US',284,'Botoşani'),('en_US',285,'Braşov'),('en_US',286,'Brăila'),('en_US',287,'Bucureşti'),('en_US',288,'Buzău'),('en_US',289,'Caraş-Severin'),('en_US',290,'Călăraşi'),('en_US',291,'Cluj'),('en_US',292,'Constanţa'),('en_US',293,'Covasna'),('en_US',294,'Dâmboviţa'),('en_US',295,'Dolj'),('en_US',296,'Galaţi'),('en_US',297,'Giurgiu'),('en_US',298,'Gorj'),('en_US',299,'Harghita'),('en_US',300,'Hunedoara'),('en_US',301,'Ialomiţa'),('en_US',302,'Iaşi'),('en_US',303,'Ilfov'),('en_US',304,'Maramureş'),('en_US',305,'Mehedinţi'),('en_US',306,'Mureş'),('en_US',307,'Neamţ'),('en_US',308,'Olt'),('en_US',309,'Prahova'),('en_US',310,'Satu-Mare'),('en_US',311,'Sălaj'),('en_US',312,'Sibiu'),('en_US',313,'Suceava'),('en_US',314,'Teleorman'),('en_US',315,'Timiş'),('en_US',316,'Tulcea'),('en_US',317,'Vaslui'),('en_US',318,'Vâlcea'),('en_US',319,'Vrancea'),('en_US',320,'Lappi'),('en_US',321,'Pohjois-Pohjanmaa'),('en_US',322,'Kainuu'),('en_US',323,'Pohjois-Karjala'),('en_US',324,'Pohjois-Savo'),('en_US',325,'Etelä-Savo'),('en_US',326,'Etelä-Pohjanmaa'),('en_US',327,'Pohjanmaa'),('en_US',328,'Pirkanmaa'),('en_US',329,'Satakunta'),('en_US',330,'Keski-Pohjanmaa'),('en_US',331,'Keski-Suomi'),('en_US',332,'Varsinais-Suomi'),('en_US',333,'Etelä-Karjala'),('en_US',334,'Päijät-Häme'),('en_US',335,'Kanta-Häme'),('en_US',336,'Uusimaa'),('en_US',337,'Itä-Uusimaa'),('en_US',338,'Kymenlaakso'),('en_US',339,'Ahvenanmaa'),('en_US',340,'Harjumaa'),('en_US',341,'Hiiumaa'),('en_US',342,'Ida-Virumaa'),('en_US',343,'Jõgevamaa'),('en_US',344,'Järvamaa'),('en_US',345,'Läänemaa'),('en_US',346,'Lääne-Virumaa'),('en_US',347,'Põlvamaa'),('en_US',348,'Pärnumaa'),('en_US',349,'Raplamaa'),('en_US',350,'Saaremaa'),('en_US',351,'Tartumaa'),('en_US',352,'Valgamaa'),('en_US',353,'Viljandimaa'),('en_US',354,'Võrumaa'),('en_US',355,'Daugavpils'),('en_US',356,'Jelgava'),('en_US',357,'Jēkabpils'),('en_US',358,'Jūrmala'),('en_US',359,'Liepāja'),('en_US',360,'Liepājas novads'),('en_US',361,'Rēzekne'),('en_US',362,'Rīga'),('en_US',363,'Rīgas novads'),('en_US',364,'Valmiera'),('en_US',365,'Ventspils'),('en_US',366,'Aglonas novads'),('en_US',367,'Aizkraukles novads'),('en_US',368,'Aizputes novads'),('en_US',369,'Aknīstes novads'),('en_US',370,'Alojas novads'),('en_US',371,'Alsungas novads'),('en_US',372,'Alūksnes novads'),('en_US',373,'Amatas novads'),('en_US',374,'Apes novads'),('en_US',375,'Auces novads'),('en_US',376,'Babītes novads'),('en_US',377,'Baldones novads'),('en_US',378,'Baltinavas novads'),('en_US',379,'Balvu novads'),('en_US',380,'Bauskas novads'),('en_US',381,'Beverīnas novads'),('en_US',382,'Brocēnu novads'),('en_US',383,'Burtnieku novads'),('en_US',384,'Carnikavas novads'),('en_US',385,'Cesvaines novads'),('en_US',386,'Ciblas novads'),('en_US',387,'Cēsu novads'),('en_US',388,'Dagdas novads'),('en_US',389,'Daugavpils novads'),('en_US',390,'Dobeles novads'),('en_US',391,'Dundagas novads'),('en_US',392,'Durbes novads'),('en_US',393,'Engures novads'),('en_US',394,'Garkalnes novads'),('en_US',395,'Grobiņas novads'),('en_US',396,'Gulbenes novads'),('en_US',397,'Iecavas novads'),('en_US',398,'Ikšķiles novads'),('en_US',399,'Ilūkstes novads'),('en_US',400,'Inčukalna novads'),('en_US',401,'Jaunjelgavas novads'),('en_US',402,'Jaunpiebalgas novads'),('en_US',403,'Jaunpils novads'),('en_US',404,'Jelgavas novads'),('en_US',405,'Jēkabpils novads'),('en_US',406,'Kandavas novads'),('en_US',407,'Kokneses novads'),('en_US',408,'Krimuldas novads'),('en_US',409,'Krustpils novads'),('en_US',410,'Krāslavas novads'),('en_US',411,'Kuldīgas novads'),('en_US',412,'Kārsavas novads'),('en_US',413,'Lielvārdes novads'),('en_US',414,'Limbažu novads'),('en_US',415,'Lubānas novads'),('en_US',416,'Ludzas novads'),('en_US',417,'Līgatnes novads'),('en_US',418,'Līvānu novads'),('en_US',419,'Madonas novads'),('en_US',420,'Mazsalacas novads'),('en_US',421,'Mālpils novads'),('en_US',422,'Mārupes novads'),('en_US',423,'Naukšēnu novads'),('en_US',424,'Neretas novads'),('en_US',425,'Nīcas novads'),('en_US',426,'Ogres novads'),('en_US',427,'Olaines novads'),('en_US',428,'Ozolnieku novads'),('en_US',429,'Preiļu novads'),('en_US',430,'Priekules novads'),('en_US',431,'Priekuļu novads'),('en_US',432,'Pārgaujas novads'),('en_US',433,'Pāvilostas novads'),('en_US',434,'Pļaviņu novads'),('en_US',435,'Raunas novads'),('en_US',436,'Riebiņu novads'),('en_US',437,'Rojas novads'),('en_US',438,'Ropažu novads'),('en_US',439,'Rucavas novads'),('en_US',440,'Rugāju novads'),('en_US',441,'Rundāles novads'),('en_US',442,'Rēzeknes novads'),('en_US',443,'Rūjienas novads'),('en_US',444,'Salacgrīvas novads'),('en_US',445,'Salas novads'),('en_US',446,'Salaspils novads'),('en_US',447,'Saldus novads'),('en_US',448,'Saulkrastu novads'),('en_US',449,'Siguldas novads'),('en_US',450,'Skrundas novads'),('en_US',451,'Skrīveru novads'),('en_US',452,'Smiltenes novads'),('en_US',453,'Stopiņu novads'),('en_US',454,'Strenču novads'),('en_US',455,'Sējas novads'),('en_US',456,'Talsu novads'),('en_US',457,'Tukuma novads'),('en_US',458,'Tērvetes novads'),('en_US',459,'Vaiņodes novads'),('en_US',460,'Valkas novads'),('en_US',461,'Valmieras novads'),('en_US',462,'Varakļānu novads'),('en_US',463,'Vecpiebalgas novads'),('en_US',464,'Vecumnieku novads'),('en_US',465,'Ventspils novads'),('en_US',466,'Viesītes novads'),('en_US',467,'Viļakas novads'),('en_US',468,'Viļānu novads'),('en_US',469,'Vārkavas novads'),('en_US',470,'Zilupes novads'),('en_US',471,'Ādažu novads'),('en_US',472,'Ērgļu novads'),('en_US',473,'Ķeguma novads'),('en_US',474,'Ķekavas novads'),('en_US',475,'Alytaus Apskritis'),('en_US',476,'Kauno Apskritis'),('en_US',477,'Klaipėdos Apskritis'),('en_US',478,'Marijampolės Apskritis'),('en_US',479,'Panevėžio Apskritis'),('en_US',480,'Šiaulių Apskritis'),('en_US',481,'Tauragės Apskritis'),('en_US',482,'Telšių Apskritis'),('en_US',483,'Utenos Apskritis'),('en_US',484,'Vilniaus Apskritis'); /*!40000 ALTER TABLE `directory_country_region_name` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `directory_currency_rate` -- DROP TABLE IF EXISTS `directory_currency_rate`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `directory_currency_rate` ( `currency_from` varchar(3) NOT NULL default '' COMMENT 'Currency Code Convert From', `currency_to` varchar(3) NOT NULL default '' COMMENT 'Currency Code Convert To', `rate` decimal(24,12) NOT NULL default '0.000000000000' COMMENT 'Currency Conversion Rate', PRIMARY KEY (`currency_from`,`currency_to`), KEY `IDX_DIRECTORY_CURRENCY_RATE_CURRENCY_TO` (`currency_to`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Directory Currency Rate'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `directory_currency_rate` -- LOCK TABLES `directory_currency_rate` WRITE; /*!40000 ALTER TABLE `directory_currency_rate` DISABLE KEYS */; INSERT INTO `directory_currency_rate` VALUES ('EUR','EUR','1.000000000000'),('EUR','USD','1.415000000000'),('USD','EUR','0.923900000000'),('USD','GBP','0.675700000000'),('USD','USD','1.000000000000'); /*!40000 ALTER TABLE `directory_currency_rate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_link` -- DROP TABLE IF EXISTS `downloadable_link`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `downloadable_link` ( `link_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Link ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort order', `number_of_downloads` int(11) default NULL COMMENT 'Number of downloads', `is_shareable` smallint(5) unsigned NOT NULL default '0' COMMENT 'Shareable flag', `link_url` varchar(255) default NULL COMMENT 'Link Url', `link_file` varchar(255) default NULL COMMENT 'Link File', `link_type` varchar(20) default NULL COMMENT 'Link Type', `sample_url` varchar(255) default NULL COMMENT 'Sample Url', `sample_file` varchar(255) default NULL COMMENT 'Sample File', `sample_type` varchar(20) default NULL COMMENT 'Sample Type', PRIMARY KEY (`link_id`), KEY `IDX_DOWNLOADABLE_LINK_PRODUCT_ID` (`product_id`), KEY `IDX_DOWNLOADABLE_LINK_PRODUCT_ID_SORT_ORDER` (`product_id`,`sort_order`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `downloadable_link` -- LOCK TABLES `downloadable_link` WRITE; /*!40000 ALTER TABLE `downloadable_link` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_link_price` -- DROP TABLE IF EXISTS `downloadable_link_price`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `downloadable_link_price` ( `price_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Price ID', `link_id` int(10) unsigned NOT NULL default '0' COMMENT 'Link ID', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID', `price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Price', PRIMARY KEY (`price_id`), KEY `IDX_DOWNLOADABLE_LINK_PRICE_LINK_ID` (`link_id`), KEY `IDX_DOWNLOADABLE_LINK_PRICE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Price Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `downloadable_link_price` -- LOCK TABLES `downloadable_link_price` WRITE; /*!40000 ALTER TABLE `downloadable_link_price` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_link_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_link_purchased` -- DROP TABLE IF EXISTS `downloadable_link_purchased`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `downloadable_link_purchased` ( `purchased_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Purchased ID', `order_id` int(10) unsigned default '0' COMMENT 'Order ID', `order_increment_id` varchar(50) default NULL COMMENT 'Order Increment ID', `order_item_id` int(10) unsigned NOT NULL default '0' COMMENT 'Order Item ID', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Date of creation', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Date of modification', `customer_id` int(10) unsigned default '0' COMMENT 'Customer ID', `product_name` varchar(255) default NULL COMMENT 'Product name', `product_sku` varchar(255) default NULL COMMENT 'Product sku', `link_section_title` varchar(255) default NULL COMMENT 'Link_section_title', PRIMARY KEY (`purchased_id`), KEY `IDX_DOWNLOADABLE_LINK_PURCHASED_ORDER_ID` (`order_id`), KEY `IDX_DOWNLOADABLE_LINK_PURCHASED_ORDER_ITEM_ID` (`order_item_id`), KEY `IDX_DOWNLOADABLE_LINK_PURCHASED_CUSTOMER_ID` (`customer_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `downloadable_link_purchased` -- LOCK TABLES `downloadable_link_purchased` WRITE; /*!40000 ALTER TABLE `downloadable_link_purchased` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_link_purchased` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_link_purchased_item` -- DROP TABLE IF EXISTS `downloadable_link_purchased_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `downloadable_link_purchased_item` ( `item_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Item ID', `purchased_id` int(10) unsigned NOT NULL default '0' COMMENT 'Purchased ID', `order_item_id` int(10) unsigned default '0' COMMENT 'Order Item ID', `product_id` int(10) unsigned default '0' COMMENT 'Product ID', `link_hash` varchar(255) default NULL COMMENT 'Link hash', `number_of_downloads_bought` int(10) unsigned NOT NULL default '0' COMMENT 'Number of downloads bought', `number_of_downloads_used` int(10) unsigned NOT NULL default '0' COMMENT 'Number of downloads used', `link_id` int(10) unsigned NOT NULL default '0' COMMENT 'Link ID', `link_title` varchar(255) default NULL COMMENT 'Link Title', `is_shareable` smallint(5) unsigned NOT NULL default '0' COMMENT 'Shareable Flag', `link_url` varchar(255) default NULL COMMENT 'Link Url', `link_file` varchar(255) default NULL COMMENT 'Link File', `link_type` varchar(255) default NULL COMMENT 'Link Type', `status` varchar(50) default NULL COMMENT 'Status', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Creation Time', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Update Time', PRIMARY KEY (`item_id`), KEY `IDX_DOWNLOADABLE_LINK_PURCHASED_ITEM_LINK_HASH` (`link_hash`), KEY `IDX_DOWNLOADABLE_LINK_PURCHASED_ITEM_ORDER_ITEM_ID` (`order_item_id`), KEY `IDX_DOWNLOADABLE_LINK_PURCHASED_ITEM_PURCHASED_ID` (`purchased_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Item Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `downloadable_link_purchased_item` -- LOCK TABLES `downloadable_link_purchased_item` WRITE; /*!40000 ALTER TABLE `downloadable_link_purchased_item` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_link_purchased_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_link_title` -- DROP TABLE IF EXISTS `downloadable_link_title`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `downloadable_link_title` ( `title_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Title ID', `link_id` int(10) unsigned NOT NULL default '0' COMMENT 'Link ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `title` varchar(255) default NULL COMMENT 'Title', PRIMARY KEY (`title_id`), UNIQUE KEY `UNQ_DOWNLOADABLE_LINK_TITLE_LINK_ID_STORE_ID` (`link_id`,`store_id`), KEY `IDX_DOWNLOADABLE_LINK_TITLE_LINK_ID` (`link_id`), KEY `IDX_DOWNLOADABLE_LINK_TITLE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Link Title Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `downloadable_link_title` -- LOCK TABLES `downloadable_link_title` WRITE; /*!40000 ALTER TABLE `downloadable_link_title` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_link_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_sample` -- DROP TABLE IF EXISTS `downloadable_sample`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `downloadable_sample` ( `sample_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Sample ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `sample_url` varchar(255) default NULL COMMENT 'Sample URL', `sample_file` varchar(255) default NULL COMMENT 'Sample file', `sample_type` varchar(20) default NULL COMMENT 'Sample Type', `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort Order', PRIMARY KEY (`sample_id`), KEY `IDX_DOWNLOADABLE_SAMPLE_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `downloadable_sample` -- LOCK TABLES `downloadable_sample` WRITE; /*!40000 ALTER TABLE `downloadable_sample` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_sample` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `downloadable_sample_title` -- DROP TABLE IF EXISTS `downloadable_sample_title`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `downloadable_sample_title` ( `title_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Title ID', `sample_id` int(10) unsigned NOT NULL default '0' COMMENT 'Sample ID', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store ID', `title` varchar(255) default NULL COMMENT 'Title', PRIMARY KEY (`title_id`), UNIQUE KEY `UNQ_DOWNLOADABLE_SAMPLE_TITLE_SAMPLE_ID_STORE_ID` (`sample_id`,`store_id`), KEY `IDX_DOWNLOADABLE_SAMPLE_TITLE_SAMPLE_ID` (`sample_id`), KEY `IDX_DOWNLOADABLE_SAMPLE_TITLE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Title Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `downloadable_sample_title` -- LOCK TABLES `downloadable_sample_title` WRITE; /*!40000 ALTER TABLE `downloadable_sample_title` DISABLE KEYS */; /*!40000 ALTER TABLE `downloadable_sample_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute` -- DROP TABLE IF EXISTS `eav_attribute`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_attribute` ( `attribute_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Attribute Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_code` varchar(255) default NULL COMMENT 'Attribute Code', `attribute_model` varchar(255) default NULL COMMENT 'Attribute Model', `backend_model` varchar(255) default NULL COMMENT 'Backend Model', `backend_type` varchar(8) NOT NULL default 'static' COMMENT 'Backend Type', `backend_table` varchar(255) default NULL COMMENT 'Backend Table', `frontend_model` varchar(255) default NULL COMMENT 'Frontend Model', `frontend_input` varchar(50) default NULL COMMENT 'Frontend Input', `frontend_label` varchar(255) default NULL COMMENT 'Frontend Label', `frontend_class` varchar(255) default NULL COMMENT 'Frontend Class', `source_model` varchar(255) default NULL COMMENT 'Source Model', `is_required` smallint(5) unsigned NOT NULL default '0' COMMENT 'Defines Is Required', `is_user_defined` smallint(5) unsigned NOT NULL default '0' COMMENT 'Defines Is User Defined', `default_value` text COMMENT 'Default Value', `is_unique` smallint(5) unsigned NOT NULL default '0' COMMENT 'Defines Is Unique', `note` varchar(255) default NULL COMMENT 'Note', PRIMARY KEY (`attribute_id`), UNIQUE KEY `UNQ_EAV_ATTRIBUTE_ENTITY_TYPE_ID_ATTRIBUTE_CODE` (`entity_type_id`,`attribute_code`), KEY `IDX_EAV_ATTRIBUTE_ENTITY_TYPE_ID` (`entity_type_id`) ) ENGINE=MyISAM AUTO_INCREMENT=149 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_attribute` -- LOCK TABLES `eav_attribute` WRITE; /*!40000 ALTER TABLE `eav_attribute` DISABLE KEYS */; INSERT INTO `eav_attribute` VALUES (1,1,'website_id',NULL,'customer/customer_attribute_backend_website','static',NULL,NULL,'select','Associate to Website',NULL,'customer/customer_attribute_source_website',1,0,NULL,0,NULL),(2,1,'store_id',NULL,'customer/customer_attribute_backend_store','static',NULL,NULL,'select','Create In',NULL,'customer/customer_attribute_source_store',1,0,NULL,0,NULL),(3,1,'created_in',NULL,NULL,'varchar',NULL,NULL,'text','Created From',NULL,NULL,0,0,NULL,0,NULL),(4,1,'prefix',NULL,NULL,'varchar',NULL,NULL,'text','Prefix',NULL,NULL,0,0,NULL,0,NULL),(5,1,'firstname',NULL,NULL,'varchar',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(6,1,'middlename',NULL,NULL,'varchar',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(7,1,'lastname',NULL,NULL,'varchar',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(8,1,'suffix',NULL,NULL,'varchar',NULL,NULL,'text','Suffix',NULL,NULL,0,0,NULL,0,NULL),(9,1,'email',NULL,NULL,'static',NULL,NULL,'text','Email',NULL,NULL,1,0,NULL,0,NULL),(10,1,'group_id',NULL,NULL,'static',NULL,NULL,'select','Group',NULL,'customer/customer_attribute_source_group',1,0,NULL,0,NULL),(11,1,'dob',NULL,'eav/entity_attribute_backend_datetime','datetime',NULL,'eav/entity_attribute_frontend_datetime','date','Date Of Birth',NULL,NULL,0,0,NULL,0,NULL),(12,1,'password_hash',NULL,'customer/customer_attribute_backend_password','varchar',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(13,1,'default_billing',NULL,'customer/customer_attribute_backend_billing','int',NULL,NULL,'text','Default Billing Address',NULL,NULL,0,0,NULL,0,NULL),(14,1,'default_shipping',NULL,'customer/customer_attribute_backend_shipping','int',NULL,NULL,'text','Default Shipping Address',NULL,NULL,0,0,NULL,0,NULL),(15,1,'taxvat',NULL,NULL,'varchar',NULL,NULL,'text','Tax/VAT Number',NULL,NULL,0,0,NULL,0,NULL),(16,1,'confirmation',NULL,NULL,'varchar',NULL,NULL,'text','Is Confirmed',NULL,NULL,0,0,NULL,0,NULL),(17,1,'created_at',NULL,NULL,'static',NULL,NULL,'datetime','Created At',NULL,NULL,0,0,NULL,0,NULL),(18,1,'gender',NULL,NULL,'int',NULL,NULL,'select','Gender',NULL,'eav/entity_attribute_source_table',0,0,NULL,0,NULL),(19,2,'prefix',NULL,NULL,'varchar',NULL,NULL,'text','Prefix',NULL,NULL,0,0,NULL,0,NULL),(20,2,'firstname',NULL,NULL,'varchar',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(21,2,'middlename',NULL,NULL,'varchar',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(22,2,'lastname',NULL,NULL,'varchar',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(23,2,'suffix',NULL,NULL,'varchar',NULL,NULL,'text','Suffix',NULL,NULL,0,0,NULL,0,NULL),(24,2,'company',NULL,NULL,'varchar',NULL,NULL,'text','Company',NULL,NULL,0,0,NULL,0,NULL),(25,2,'street',NULL,'customer/entity_address_attribute_backend_street','text',NULL,NULL,'multiline','Street Address',NULL,NULL,1,0,NULL,0,NULL),(26,2,'city',NULL,NULL,'varchar',NULL,NULL,'text','City',NULL,NULL,1,0,NULL,0,NULL),(27,2,'country_id',NULL,NULL,'varchar',NULL,NULL,'select','Country',NULL,'customer/entity_address_attribute_source_country',1,0,NULL,0,NULL),(28,2,'region',NULL,'customer/entity_address_attribute_backend_region','varchar',NULL,NULL,'text','State/Province',NULL,NULL,0,0,NULL,0,NULL),(29,2,'region_id',NULL,NULL,'int',NULL,NULL,'hidden','State/Province',NULL,'customer/entity_address_attribute_source_region',0,0,NULL,0,NULL),(30,2,'postcode',NULL,NULL,'varchar',NULL,NULL,'text','Zip/Postal Code',NULL,NULL,1,0,NULL,0,NULL),(31,2,'telephone',NULL,NULL,'varchar',NULL,NULL,'text','Telephone',NULL,NULL,1,0,NULL,0,NULL),(32,2,'fax',NULL,NULL,'varchar',NULL,NULL,'text','Fax',NULL,NULL,0,0,NULL,0,NULL),(33,1,'rp_token',NULL,NULL,'varchar',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(34,1,'rp_token_created_at',NULL,NULL,'datetime',NULL,NULL,'date',NULL,NULL,NULL,0,0,NULL,0,NULL),(35,1,'disable_auto_group_change',NULL,'customer/attribute_backend_data_boolean','static',NULL,NULL,'boolean','Disable Automatic Group Change Based on VAT ID',NULL,NULL,0,0,NULL,0,NULL),(36,2,'vat_id',NULL,NULL,'varchar',NULL,NULL,'text','VAT number',NULL,NULL,0,0,NULL,0,NULL),(37,2,'vat_is_valid',NULL,NULL,'int',NULL,NULL,'text','VAT number validity',NULL,NULL,0,0,NULL,0,NULL),(38,2,'vat_request_id',NULL,NULL,'varchar',NULL,NULL,'text','VAT number validation request ID',NULL,NULL,0,0,NULL,0,NULL),(39,2,'vat_request_date',NULL,NULL,'varchar',NULL,NULL,'text','VAT number validation request date',NULL,NULL,0,0,NULL,0,NULL),(40,2,'vat_request_success',NULL,NULL,'int',NULL,NULL,'text','VAT number validation request success',NULL,NULL,0,0,NULL,0,NULL),(41,3,'name',NULL,NULL,'varchar',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(42,3,'is_active',NULL,NULL,'int',NULL,NULL,'select','Is Active',NULL,'eav/entity_attribute_source_boolean',1,0,NULL,0,NULL),(43,3,'url_key',NULL,'catalog/category_attribute_backend_urlkey','varchar',NULL,NULL,'text','URL Key',NULL,NULL,0,0,NULL,0,NULL),(44,3,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(45,3,'image',NULL,'catalog/category_attribute_backend_image','varchar',NULL,NULL,'image','Image',NULL,NULL,0,0,NULL,0,NULL),(46,3,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Page Title',NULL,NULL,0,0,NULL,0,NULL),(47,3,'meta_keywords',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(48,3,'meta_description',NULL,NULL,'text',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,NULL),(49,3,'display_mode',NULL,NULL,'varchar',NULL,NULL,'select','Display Mode',NULL,'catalog/category_attribute_source_mode',0,0,NULL,0,NULL),(50,3,'landing_page',NULL,NULL,'int',NULL,NULL,'select','CMS Block',NULL,'catalog/category_attribute_source_page',0,0,NULL,0,NULL),(51,3,'is_anchor',NULL,NULL,'int',NULL,NULL,'select','Is Anchor',NULL,'eav/entity_attribute_source_boolean',0,0,NULL,0,NULL),(52,3,'path',NULL,NULL,'static',NULL,NULL,'text','Path',NULL,NULL,0,0,NULL,0,NULL),(53,3,'position',NULL,NULL,'static',NULL,NULL,'text','Position',NULL,NULL,0,0,NULL,0,NULL),(54,3,'all_children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(55,3,'path_in_store',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(56,3,'children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(57,3,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(58,3,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','Custom Design',NULL,'core/design_source_design',0,0,NULL,0,NULL),(59,3,'custom_design_from',NULL,'eav/entity_attribute_backend_datetime','datetime',NULL,NULL,'date','Active From',NULL,NULL,0,0,NULL,0,NULL),(60,3,'custom_design_to',NULL,'eav/entity_attribute_backend_datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(61,3,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Page Layout',NULL,'catalog/category_attribute_source_layout',0,0,NULL,0,NULL),(62,3,'custom_layout_update',NULL,'catalog/attribute_backend_customlayoutupdate','text',NULL,NULL,'textarea','Custom Layout Update',NULL,NULL,0,0,NULL,0,NULL),(63,3,'level',NULL,NULL,'static',NULL,NULL,'text','Level',NULL,NULL,0,0,NULL,0,NULL),(64,3,'children_count',NULL,NULL,'static',NULL,NULL,'text','Children Count',NULL,NULL,0,0,NULL,0,NULL),(65,3,'available_sort_by',NULL,'catalog/category_attribute_backend_sortby','text',NULL,NULL,'multiselect','Available Product Listing Sort By',NULL,'catalog/category_attribute_source_sortby',1,0,NULL,0,NULL),(66,3,'default_sort_by',NULL,'catalog/category_attribute_backend_sortby','varchar',NULL,NULL,'select','Default Product Listing Sort By',NULL,'catalog/category_attribute_source_sortby',1,0,NULL,0,NULL),(67,3,'include_in_menu',NULL,NULL,'int',NULL,NULL,'select','Include in Navigation Menu',NULL,'eav/entity_attribute_source_boolean',1,0,'1',0,NULL),(68,3,'custom_use_parent_settings',NULL,NULL,'int',NULL,NULL,'select','Use Parent Category Settings',NULL,'eav/entity_attribute_source_boolean',0,0,NULL,0,NULL),(69,3,'custom_apply_to_products',NULL,NULL,'int',NULL,NULL,'select','Apply To Products',NULL,'eav/entity_attribute_source_boolean',0,0,NULL,0,NULL),(70,3,'filter_price_range',NULL,NULL,'decimal',NULL,NULL,'text','Layered Navigation Price Step',NULL,NULL,0,0,NULL,0,NULL),(71,4,'name',NULL,NULL,'varchar',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(72,4,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,1,0,NULL,0,NULL),(73,4,'short_description',NULL,NULL,'text',NULL,NULL,'textarea','Short Description',NULL,NULL,1,0,NULL,0,NULL),(74,4,'sku',NULL,'catalog/product_attribute_backend_sku','static',NULL,NULL,'text','SKU',NULL,NULL,1,0,NULL,1,NULL),(75,4,'price',NULL,'catalog/product_attribute_backend_price','decimal',NULL,NULL,'price','Price',NULL,NULL,1,0,NULL,0,NULL),(76,4,'special_price',NULL,'catalog/product_attribute_backend_price','decimal',NULL,NULL,'price','Special Price',NULL,NULL,0,0,NULL,0,NULL),(77,4,'special_from_date',NULL,'catalog/product_attribute_backend_startdate_specialprice','datetime',NULL,NULL,'date','Special Price From Date',NULL,NULL,0,0,NULL,0,NULL),(78,4,'special_to_date',NULL,'eav/entity_attribute_backend_datetime','datetime',NULL,NULL,'date','Special Price To Date',NULL,NULL,0,0,NULL,0,NULL),(79,4,'cost',NULL,'catalog/product_attribute_backend_price','decimal',NULL,NULL,'price','Cost',NULL,NULL,0,1,NULL,0,NULL),(80,4,'weight',NULL,NULL,'decimal',NULL,NULL,'weight','Weight',NULL,NULL,1,0,NULL,0,NULL),(81,4,'manufacturer',NULL,NULL,'int',NULL,NULL,'select','Manufacturer',NULL,NULL,0,1,'',0,NULL),(82,4,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Meta Title',NULL,NULL,0,0,NULL,0,NULL),(83,4,'meta_keyword',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(84,4,'meta_description',NULL,NULL,'varchar',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,'Maximum 255 chars'),(85,4,'image',NULL,NULL,'varchar',NULL,'catalog/product_attribute_frontend_image','media_image','Base Image',NULL,NULL,0,0,NULL,0,NULL),(86,4,'small_image',NULL,NULL,'varchar',NULL,'catalog/product_attribute_frontend_image','media_image','Small Image',NULL,NULL,0,0,NULL,0,NULL),(87,4,'thumbnail',NULL,NULL,'varchar',NULL,'catalog/product_attribute_frontend_image','media_image','Thumbnail',NULL,NULL,0,0,NULL,0,NULL),(88,4,'media_gallery',NULL,'catalog/product_attribute_backend_media','varchar',NULL,NULL,'gallery','Media Gallery',NULL,NULL,0,0,NULL,0,NULL),(89,4,'old_id',NULL,NULL,'int',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(90,4,'group_price',NULL,'catalog/product_attribute_backend_groupprice','decimal',NULL,NULL,'text','Group Price',NULL,NULL,0,0,NULL,0,NULL),(91,4,'tier_price',NULL,'catalog/product_attribute_backend_tierprice','decimal',NULL,NULL,'text','Tier Price',NULL,NULL,0,0,NULL,0,NULL),(92,4,'color',NULL,NULL,'int',NULL,NULL,'select','Color',NULL,NULL,0,1,NULL,0,NULL),(93,4,'news_from_date',NULL,'catalog/product_attribute_backend_startdate','datetime',NULL,NULL,'date','Set Product as New from Date',NULL,NULL,0,0,NULL,0,NULL),(94,4,'news_to_date',NULL,'eav/entity_attribute_backend_datetime','datetime',NULL,NULL,'date','Set Product as New to Date',NULL,NULL,0,0,NULL,0,NULL),(95,4,'gallery',NULL,NULL,'varchar',NULL,NULL,'gallery','Image Gallery',NULL,NULL,0,0,NULL,0,NULL),(96,4,'status',NULL,NULL,'int',NULL,NULL,'select','Status',NULL,'catalog/product_status',1,0,NULL,0,NULL),(97,4,'url_key',NULL,'catalog/product_attribute_backend_urlkey','varchar',NULL,NULL,'text','URL Key',NULL,NULL,0,0,NULL,0,NULL),(98,4,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(99,4,'minimal_price',NULL,NULL,'decimal',NULL,NULL,'price','Minimal Price',NULL,NULL,0,0,NULL,0,NULL),(100,4,'is_recurring',NULL,NULL,'int',NULL,NULL,'select','Enable Recurring Profile',NULL,'eav/entity_attribute_source_boolean',0,0,NULL,0,'Products with recurring profile participate in catalog as nominal items.'),(101,4,'recurring_profile',NULL,'catalog/product_attribute_backend_recurring','text',NULL,NULL,'text','Recurring Payment Profile',NULL,NULL,0,0,NULL,0,NULL),(102,4,'visibility',NULL,NULL,'int',NULL,NULL,'select','Visibility',NULL,'catalog/product_visibility',1,0,'4',0,NULL),(103,4,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','Custom Design',NULL,'core/design_source_design',0,0,NULL,0,NULL),(104,4,'custom_design_from',NULL,'catalog/product_attribute_backend_startdate','datetime',NULL,NULL,'date','Active From',NULL,NULL,0,0,NULL,0,NULL),(105,4,'custom_design_to',NULL,'eav/entity_attribute_backend_datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(106,4,'custom_layout_update',NULL,'catalog/attribute_backend_customlayoutupdate','text',NULL,NULL,'textarea','Custom Layout Update',NULL,NULL,0,0,NULL,0,NULL),(107,4,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Page Layout',NULL,'catalog/product_attribute_source_layout',0,0,NULL,0,NULL),(108,4,'category_ids',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(109,4,'options_container',NULL,NULL,'varchar',NULL,NULL,'select','Display Product Options In',NULL,'catalog/entity_product_attribute_design_options_container',0,0,'container1',0,NULL),(110,4,'required_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(111,4,'has_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(112,4,'image_label',NULL,NULL,'varchar',NULL,NULL,'text','Image Label',NULL,NULL,0,0,NULL,0,NULL),(113,4,'small_image_label',NULL,NULL,'varchar',NULL,NULL,'text','Small Image Label',NULL,NULL,0,0,NULL,0,NULL),(114,4,'thumbnail_label',NULL,NULL,'varchar',NULL,NULL,'text','Thumbnail Label',NULL,NULL,0,0,NULL,0,NULL),(115,4,'created_at',NULL,'eav/entity_attribute_backend_time_created','static',NULL,NULL,'text',NULL,NULL,NULL,1,0,NULL,0,NULL),(116,4,'updated_at',NULL,'eav/entity_attribute_backend_time_updated','static',NULL,NULL,'text',NULL,NULL,NULL,1,0,NULL,0,NULL),(117,4,'country_of_manufacture',NULL,NULL,'varchar',NULL,NULL,'select','Country of Manufacture',NULL,'catalog/product_attribute_source_countryofmanufacture',0,0,NULL,0,NULL),(118,4,'msrp_enabled',NULL,'catalog/product_attribute_backend_msrp','varchar',NULL,NULL,'select','Apply MAP',NULL,'catalog/product_attribute_source_msrp_type_enabled',0,0,'2',0,NULL),(119,4,'msrp_display_actual_price_type',NULL,'catalog/product_attribute_backend_boolean','varchar',NULL,NULL,'select','Display Actual Price',NULL,'catalog/product_attribute_source_msrp_type_price',0,0,'4',0,NULL),(120,4,'msrp',NULL,'catalog/product_attribute_backend_price','decimal',NULL,NULL,'price','Manufacturer\'s Suggested Retail Price',NULL,NULL,0,0,NULL,0,NULL),(121,4,'tax_class_id',NULL,NULL,'int',NULL,NULL,'select','Tax Class',NULL,'tax/class_source_product',1,0,NULL,0,NULL),(122,4,'gift_message_available',NULL,'catalog/product_attribute_backend_boolean','varchar',NULL,NULL,'select','Allow Gift Message',NULL,'eav/entity_attribute_source_boolean',0,0,NULL,0,NULL),(123,4,'price_type',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,0,NULL),(124,4,'sku_type',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,0,NULL),(125,4,'weight_type',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,0,NULL),(126,4,'price_view',NULL,NULL,'int',NULL,NULL,'select','Price View',NULL,'bundle/product_attribute_source_price_view',1,0,NULL,0,NULL),(127,4,'shipment_type',NULL,NULL,'int',NULL,NULL,NULL,'Shipment',NULL,NULL,1,0,NULL,0,NULL),(128,4,'links_purchased_separately',NULL,NULL,'int',NULL,NULL,NULL,'Links can be purchased separately',NULL,NULL,1,0,NULL,0,NULL),(129,4,'samples_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Samples title',NULL,NULL,1,0,NULL,0,NULL),(130,4,'links_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Links title',NULL,NULL,1,0,NULL,0,NULL),(131,4,'links_exist',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'0',0,NULL),(132,1,'le_sociallogin_gid',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(133,1,'le_sociallogin_gtoken',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(134,1,'le_sociallogin_fid',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(135,1,'le_sociallogin_ftoken',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(136,1,'le_sociallogin_tid',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(137,1,'le_sociallogin_ttoken',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(138,1,'le_sociallogin_lid',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(139,1,'le_sociallogin_ltoken',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(140,1,'le_sociallogin_yid',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(141,1,'le_sociallogin_ytoken',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(142,4,'new',NULL,NULL,'int',NULL,NULL,'boolean','New label',NULL,'eav/entity_attribute_source_boolean',0,1,'0',0,NULL),(143,4,'sale',NULL,NULL,'int',NULL,NULL,'boolean','Sale label',NULL,'eav/entity_attribute_source_boolean',0,1,'0',0,NULL),(144,4,'videoid',NULL,NULL,'varchar',NULL,NULL,'text','Video URL',NULL,NULL,0,1,NULL,0,NULL),(145,4,'publicationdate',NULL,NULL,'int',NULL,NULL,'select','Publication Date',NULL,'eav/entity_attribute_source_table',0,1,'',0,NULL),(146,4,'numberofpages',NULL,NULL,'int',NULL,NULL,'select','Number of pages',NULL,'eav/entity_attribute_source_table',0,1,'',0,NULL),(147,4,'format',NULL,NULL,'int',NULL,NULL,'select','Format',NULL,'eav/entity_attribute_source_table',0,1,'',0,NULL),(148,4,'ageranges',NULL,NULL,'int',NULL,NULL,'select','Age ranges',NULL,'eav/entity_attribute_source_table',0,1,'',0,NULL); /*!40000 ALTER TABLE `eav_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_group` -- DROP TABLE IF EXISTS `eav_attribute_group`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_attribute_group` ( `attribute_group_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Attribute Group Id', `attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Set Id', `attribute_group_name` varchar(255) default NULL COMMENT 'Attribute Group Name', `sort_order` smallint(6) NOT NULL default '0' COMMENT 'Sort Order', `default_id` smallint(5) unsigned default '0' COMMENT 'Default Id', PRIMARY KEY (`attribute_group_id`), UNIQUE KEY `UNQ_EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_NAME` (`attribute_set_id`,`attribute_group_name`), KEY `IDX_EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`) ) ENGINE=MyISAM AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Group'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_attribute_group` -- LOCK TABLES `eav_attribute_group` WRITE; /*!40000 ALTER TABLE `eav_attribute_group` DISABLE KEYS */; INSERT INTO `eav_attribute_group` VALUES (1,1,'General',1,1),(2,2,'General',1,1),(3,3,'General',10,1),(4,3,'General Information',2,0),(5,3,'Display Settings',20,0),(6,3,'Custom Design',30,0),(7,4,'General',1,1),(8,4,'Prices',2,0),(9,4,'Meta Information',3,0),(10,4,'Images',4,0),(11,4,'Recurring Profile',5,0),(12,4,'Design',6,0),(13,5,'General',1,1),(14,6,'General',1,1),(15,7,'General',1,1),(16,8,'General',1,1),(17,4,'Gift Options',7,0); /*!40000 ALTER TABLE `eav_attribute_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_label` -- DROP TABLE IF EXISTS `eav_attribute_label`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_attribute_label` ( `attribute_label_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Attribute Label Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `value` varchar(255) default NULL COMMENT 'Value', PRIMARY KEY (`attribute_label_id`), KEY `IDX_EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_EAV_ATTRIBUTE_LABEL_STORE_ID` (`store_id`), KEY `IDX_EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_STORE_ID` (`attribute_id`,`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=57 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Label'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_attribute_label` -- LOCK TABLES `eav_attribute_label` WRITE; /*!40000 ALTER TABLE `eav_attribute_label` DISABLE KEYS */; INSERT INTO `eav_attribute_label` VALUES (33,81,1,'Manufacturer'),(34,81,2,'Hersteller'),(35,81,3,'Fabricante'),(36,81,4,'Производитель'),(37,145,1,'Publication Date'),(38,145,2,'Erscheinungsdatum'),(39,145,3,'Fecha de publicación'),(40,145,4,'Дата публикации'),(45,147,1,'Format'),(46,147,2,'Format'),(47,147,3,'Formato'),(48,147,4,'Формат'),(49,148,1,'Age ranges'),(50,148,2,'Altersgruppen'),(51,148,3,'Los rangos de edad'),(52,148,4,'Возрастные диапазоны'),(53,146,1,'Number of pages'),(54,146,2,'Seitenzahl'),(55,146,3,'Número de páginas'),(56,146,4,'Количество страниц'); /*!40000 ALTER TABLE `eav_attribute_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_option` -- DROP TABLE IF EXISTS `eav_attribute_option`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_attribute_option` ( `option_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `sort_order` smallint(5) unsigned NOT NULL default '0' COMMENT 'Sort Order', PRIMARY KEY (`option_id`), KEY `IDX_EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID` (`attribute_id`) ) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_attribute_option` -- LOCK TABLES `eav_attribute_option` WRITE; /*!40000 ALTER TABLE `eav_attribute_option` DISABLE KEYS */; INSERT INTO `eav_attribute_option` VALUES (1,18,0),(2,18,1),(9,81,0),(10,81,1),(11,81,2),(12,81,3),(13,81,4),(14,81,5),(15,81,6),(16,81,7),(17,81,8),(18,81,9),(19,145,0),(20,145,1),(21,146,0),(22,146,1),(23,146,2),(24,147,0),(25,147,1),(26,148,0),(27,148,1),(28,148,2),(29,148,3),(30,148,4); /*!40000 ALTER TABLE `eav_attribute_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_option_value` -- DROP TABLE IF EXISTS `eav_attribute_option_value`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_attribute_option_value` ( `value_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Value Id', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Option Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `value` varchar(255) default NULL COMMENT 'Value', PRIMARY KEY (`value_id`), KEY `IDX_EAV_ATTRIBUTE_OPTION_VALUE_OPTION_ID` (`option_id`), KEY `IDX_EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=158 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option Value'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_attribute_option_value` -- LOCK TABLES `eav_attribute_option_value` WRITE; /*!40000 ALTER TABLE `eav_attribute_option_value` DISABLE KEYS */; INSERT INTO `eav_attribute_option_value` VALUES (1,1,0,'Male'),(2,2,0,'Female'),(33,9,0,'Harper Collins'),(34,9,1,'Harper Collins'),(35,9,2,'Harper Collins'),(36,9,3,'Harper Collins'),(37,9,4,'Harper Collins'),(38,10,0,'National Geographic'),(39,10,1,'National Geographic'),(40,10,2,'National Geographic'),(41,10,3,'National Geographic'),(42,10,4,'National Geographic'),(43,11,0,'Time'),(44,11,1,'Time'),(45,11,2,'Time'),(46,11,3,'Time'),(47,11,4,'Time'),(48,12,0,'Esquire'),(49,12,1,'Esquire'),(50,12,2,'Esquire'),(51,12,3,'Esquire'),(52,12,4,'Esquire'),(53,13,0,'Pearson'),(54,13,1,'Pearson'),(55,13,2,'Pearson'),(56,13,3,'Pearson'),(57,13,4,'Pearson'),(58,14,0,'Reader’s Digest'),(59,14,1,'Reader’s Digest'),(60,14,2,'Reader’s Digest'),(61,14,3,'Reader’s Digest'),(62,14,4,'Reader’s Digest'),(63,15,0,'Informa'),(64,15,1,'Informa'),(65,15,2,'Informa'),(66,15,3,'Informa'),(67,15,4,'Informa'),(68,16,0,'Oxford University'),(69,16,1,'Oxford University'),(70,16,2,'Oxford University'),(71,16,3,'Oxford University'),(72,16,4,'Oxford University'),(73,17,0,'Wiley'),(74,17,1,'Wiley'),(75,17,2,'Wiley'),(76,17,3,'Wiley'),(77,17,4,'Wiley'),(78,18,0,'Reed Elsevier'),(79,18,1,'Reed Elsevier'),(80,18,2,'Reed Elsevier'),(81,18,3,'Reed Elsevier'),(82,18,4,'Reed Elsevier'),(83,19,0,'01/01/2015'),(84,19,1,'01/01/2015'),(85,19,2,'01/01/2015'),(86,19,3,'01/01/2015'),(87,19,4,'01/01/2015'),(88,20,0,'01/02/2015'),(89,20,1,'01/02/2015'),(90,20,2,'01/02/2015'),(91,20,3,'01/02/2015'),(92,20,4,'01/02/2015'),(108,24,0,'170mmx215mm'),(109,24,1,'170mmx215mm'),(110,24,2,'170mmx215mm'),(111,24,3,'170mmx215mm'),(112,24,4,'170mmx215mm'),(113,25,0,'201mmx315mm'),(114,25,1,'201mmx315mm'),(115,25,2,'201mmx315mm'),(116,25,3,'201mmx315mm'),(117,25,4,'201mmx315mm'),(118,26,0,'3-6'),(119,26,1,'3-6'),(120,26,2,'3-6'),(121,26,3,'3-6'),(122,26,4,'3-6'),(123,27,0,'6-9'),(124,27,1,'6-9'),(125,27,2,'6-9'),(126,27,3,'6-9'),(127,27,4,'6-9'),(128,28,0,'9-12'),(129,28,1,'9-12'),(130,28,2,'9-12'),(131,28,3,'9-12'),(132,28,4,'9-12'),(133,29,0,'12-15'),(134,29,1,'12-15'),(135,29,2,'12-15'),(136,29,3,'12-15'),(137,29,4,'12-15'),(138,30,0,'15 +'),(139,30,1,'15 +'),(140,30,2,'15 +'),(141,30,3,'15 +'),(142,30,4,'15 +'),(143,21,0,'399p'),(144,21,1,'399p'),(145,21,2,'399s'),(146,21,3,'399p'),(147,21,4,'399стр'),(148,22,0,'498p'),(149,22,1,'498p'),(150,22,2,'498s'),(151,22,3,'498p'),(152,22,4,'498стр'),(153,23,0,'100p'),(154,23,1,'100p'),(155,23,2,'100s'),(156,23,3,'100p'),(157,23,4,'100стр'); /*!40000 ALTER TABLE `eav_attribute_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_set` -- DROP TABLE IF EXISTS `eav_attribute_set`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_attribute_set` ( `attribute_set_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Attribute Set Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_set_name` varchar(255) default NULL COMMENT 'Attribute Set Name', `sort_order` smallint(6) NOT NULL default '0' COMMENT 'Sort Order', PRIMARY KEY (`attribute_set_id`), UNIQUE KEY `UNQ_EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_ATTRIBUTE_SET_NAME` (`entity_type_id`,`attribute_set_name`), KEY `IDX_EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_SORT_ORDER` (`entity_type_id`,`sort_order`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Set'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_attribute_set` -- LOCK TABLES `eav_attribute_set` WRITE; /*!40000 ALTER TABLE `eav_attribute_set` DISABLE KEYS */; INSERT INTO `eav_attribute_set` VALUES (1,1,'Default',1),(2,2,'Default',1),(3,3,'Default',1),(4,4,'Default',1),(5,5,'Default',1),(6,6,'Default',1),(7,7,'Default',1),(8,8,'Default',1); /*!40000 ALTER TABLE `eav_attribute_set` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity` -- DROP TABLE IF EXISTS `eav_entity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_entity` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Set Id', `increment_id` varchar(50) default NULL COMMENT 'Increment Id', `parent_id` int(10) unsigned NOT NULL default '0' COMMENT 'Parent Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Updated At', `is_active` smallint(5) unsigned NOT NULL default '1' COMMENT 'Defines Is Entity Active', PRIMARY KEY (`entity_id`), KEY `IDX_EAV_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_EAV_ENTITY_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Eav Entity'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_entity` -- LOCK TABLES `eav_entity` WRITE; /*!40000 ALTER TABLE `eav_entity` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_attribute` -- DROP TABLE IF EXISTS `eav_entity_attribute`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_entity_attribute` ( `entity_attribute_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Attribute Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Set Id', `attribute_group_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Group Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `sort_order` smallint(6) NOT NULL default '0' COMMENT 'Sort Order', PRIMARY KEY (`entity_attribute_id`), UNIQUE KEY `UNQ_EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_ATTRIBUTE_ID` (`attribute_set_id`,`attribute_id`), UNIQUE KEY `UNQ_EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_GROUP_ID_ATTRIBUTE_ID` (`attribute_group_id`,`attribute_id`), KEY `IDX_EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`), KEY `IDX_EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`) ) ENGINE=MyISAM AUTO_INCREMENT=410 DEFAULT CHARSET=utf8 COMMENT='Eav Entity Attributes'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_entity_attribute` -- LOCK TABLES `eav_entity_attribute` WRITE; /*!40000 ALTER TABLE `eav_entity_attribute` DISABLE KEYS */; INSERT INTO `eav_entity_attribute` VALUES (1,1,1,1,1,10),(2,1,1,1,2,0),(3,1,1,1,3,20),(4,1,1,1,4,30),(5,1,1,1,5,40),(6,1,1,1,6,50),(7,1,1,1,7,60),(8,1,1,1,8,70),(9,1,1,1,9,80),(10,1,1,1,10,25),(11,1,1,1,11,90),(12,1,1,1,12,0),(13,1,1,1,13,0),(14,1,1,1,14,0),(15,1,1,1,15,100),(16,1,1,1,16,0),(17,1,1,1,17,86),(18,1,1,1,18,110),(19,2,2,2,19,10),(20,2,2,2,20,20),(21,2,2,2,21,30),(22,2,2,2,22,40),(23,2,2,2,23,50),(24,2,2,2,24,60),(25,2,2,2,25,70),(26,2,2,2,26,80),(27,2,2,2,27,90),(28,2,2,2,28,100),(29,2,2,2,29,100),(30,2,2,2,30,110),(31,2,2,2,31,120),(32,2,2,2,32,130),(33,1,1,1,33,111),(34,1,1,1,34,112),(35,1,1,1,35,28),(36,2,2,2,36,140),(37,2,2,2,37,132),(38,2,2,2,38,133),(39,2,2,2,39,134),(40,2,2,2,40,135),(41,3,3,4,41,1),(42,3,3,4,42,2),(43,3,3,4,43,3),(44,3,3,4,44,4),(45,3,3,4,45,5),(46,3,3,4,46,6),(47,3,3,4,47,7),(48,3,3,4,48,8),(49,3,3,5,49,10),(50,3,3,5,50,20),(51,3,3,5,51,30),(52,3,3,4,52,12),(53,3,3,4,53,13),(54,3,3,4,54,14),(55,3,3,4,55,15),(56,3,3,4,56,16),(57,3,3,4,57,17),(58,3,3,6,58,10),(59,3,3,6,59,30),(60,3,3,6,60,40),(61,3,3,6,61,50),(62,3,3,6,62,60),(63,3,3,4,63,24),(64,3,3,4,64,25),(65,3,3,5,65,40),(66,3,3,5,66,50),(67,3,3,4,67,10),(68,3,3,6,68,5),(69,3,3,6,69,6),(70,3,3,5,70,51),(88,4,4,7,89,6),(96,4,4,7,98,11),(97,4,4,8,99,8),(106,4,4,7,108,13),(108,4,4,7,110,14),(109,4,4,7,111,15),(110,4,4,7,112,16),(111,4,4,7,113,17),(112,4,4,7,114,18),(113,4,4,7,115,19),(114,4,4,7,116,20),(121,4,4,7,123,22),(122,4,4,7,124,23),(123,4,4,7,125,24),(125,4,4,7,127,25),(126,4,4,7,128,26),(127,4,4,7,129,27),(128,4,4,7,130,28),(129,4,4,7,131,29),(130,1,1,1,132,113),(131,1,1,1,133,114),(132,1,1,1,134,115),(133,1,1,1,135,116),(134,1,1,1,136,117),(135,1,1,1,137,118),(136,1,1,1,138,119),(137,1,1,1,139,120),(138,1,1,1,140,121),(139,1,1,1,141,122),(315,4,4,7,71,1),(317,4,4,7,72,2),(319,4,4,7,73,3),(321,4,4,7,74,4),(323,4,4,7,80,5),(325,4,4,7,81,6),(327,4,4,7,93,14),(329,4,4,7,94,15),(331,4,4,7,96,16),(333,4,4,7,97,17),(335,4,4,7,102,18),(337,4,4,7,117,19),(339,4,4,7,142,13),(341,4,4,7,143,12),(343,4,4,7,144,11),(345,4,4,7,145,7),(347,4,4,7,146,8),(349,4,4,7,147,9),(351,4,4,7,148,10),(353,4,4,8,75,1),(355,4,4,8,76,3),(357,4,4,8,77,4),(359,4,4,8,78,5),(361,4,4,8,79,6),(363,4,4,8,90,2),(365,4,4,8,91,7),(367,4,4,8,118,8),(369,4,4,8,119,9),(371,4,4,8,120,10),(373,4,4,8,121,11),(375,4,4,8,126,12),(377,4,4,9,82,1),(379,4,4,9,83,2),(381,4,4,9,84,3),(383,4,4,10,85,1),(385,4,4,10,86,2),(387,4,4,10,87,3),(389,4,4,10,88,4),(391,4,4,10,95,5),(393,4,4,11,100,1),(395,4,4,11,101,2),(397,4,4,12,103,1),(399,4,4,12,104,2),(401,4,4,12,105,3),(403,4,4,12,106,4),(405,4,4,12,107,5),(407,4,4,12,109,6),(409,4,4,17,122,1); /*!40000 ALTER TABLE `eav_entity_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_datetime` -- DROP TABLE IF EXISTS `eav_entity_datetime`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_entity_datetime` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` datetime NOT NULL default '0000-00-00 00:00:00' COMMENT 'Attribute Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_EAV_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_EAV_ENTITY_DATETIME_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_EAV_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_EAV_ENTITY_DATETIME_STORE_ID` (`store_id`), KEY `IDX_EAV_ENTITY_DATETIME_ENTITY_ID` (`entity_id`), KEY `IDX_EAV_ENTITY_DATETIME_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`), KEY `IDX_EAV_ENTITY_DATETIME_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_entity_datetime` -- LOCK TABLES `eav_entity_datetime` WRITE; /*!40000 ALTER TABLE `eav_entity_datetime` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_decimal` -- DROP TABLE IF EXISTS `eav_entity_decimal`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_entity_decimal` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Attribute Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_EAV_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_EAV_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_EAV_ENTITY_DECIMAL_STORE_ID` (`store_id`), KEY `IDX_EAV_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`), KEY `IDX_EAV_ENTITY_DECIMAL_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`), KEY `IDX_EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_entity_decimal` -- LOCK TABLES `eav_entity_decimal` WRITE; /*!40000 ALTER TABLE `eav_entity_decimal` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_decimal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_int` -- DROP TABLE IF EXISTS `eav_entity_int`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_entity_int` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` int(11) NOT NULL default '0' COMMENT 'Attribute Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_EAV_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_EAV_ENTITY_INT_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_EAV_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_EAV_ENTITY_INT_STORE_ID` (`store_id`), KEY `IDX_EAV_ENTITY_INT_ENTITY_ID` (`entity_id`), KEY `IDX_EAV_ENTITY_INT_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`), KEY `IDX_EAV_ENTITY_INT_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_entity_int` -- LOCK TABLES `eav_entity_int` WRITE; /*!40000 ALTER TABLE `eav_entity_int` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_store` -- DROP TABLE IF EXISTS `eav_entity_store`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_entity_store` ( `entity_store_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Store Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `increment_prefix` varchar(20) default NULL COMMENT 'Increment Prefix', `increment_last_id` varchar(50) default NULL COMMENT 'Last Incremented Id', PRIMARY KEY (`entity_store_id`), KEY `IDX_EAV_ENTITY_STORE_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_EAV_ENTITY_STORE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Eav Entity Store'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_entity_store` -- LOCK TABLES `eav_entity_store` WRITE; /*!40000 ALTER TABLE `eav_entity_store` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_text` -- DROP TABLE IF EXISTS `eav_entity_text`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_entity_text` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` text NOT NULL COMMENT 'Attribute Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_EAV_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_EAV_ENTITY_TEXT_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_EAV_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_EAV_ENTITY_TEXT_STORE_ID` (`store_id`), KEY `IDX_EAV_ENTITY_TEXT_ENTITY_ID` (`entity_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_entity_text` -- LOCK TABLES `eav_entity_text` WRITE; /*!40000 ALTER TABLE `eav_entity_text` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_text` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_type` -- DROP TABLE IF EXISTS `eav_entity_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_entity_type` ( `entity_type_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Entity Type Id', `entity_type_code` varchar(50) NOT NULL COMMENT 'Entity Type Code', `entity_model` varchar(255) NOT NULL COMMENT 'Entity Model', `attribute_model` varchar(255) default NULL COMMENT 'Attribute Model', `entity_table` varchar(255) default NULL COMMENT 'Entity Table', `value_table_prefix` varchar(255) default NULL COMMENT 'Value Table Prefix', `entity_id_field` varchar(255) default NULL COMMENT 'Entity Id Field', `is_data_sharing` smallint(5) unsigned NOT NULL default '1' COMMENT 'Defines Is Data Sharing', `data_sharing_key` varchar(100) default 'default' COMMENT 'Data Sharing Key', `default_attribute_set_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Default Attribute Set Id', `increment_model` varchar(255) default '' COMMENT 'Increment Model', `increment_per_store` smallint(5) unsigned NOT NULL default '0' COMMENT 'Increment Per Store', `increment_pad_length` smallint(5) unsigned NOT NULL default '8' COMMENT 'Increment Pad Length', `increment_pad_char` varchar(1) NOT NULL default '0' COMMENT 'Increment Pad Char', `additional_attribute_table` varchar(255) default '' COMMENT 'Additional Attribute Table', `entity_attribute_collection` varchar(255) default NULL COMMENT 'Entity Attribute Collection', PRIMARY KEY (`entity_type_id`), KEY `IDX_EAV_ENTITY_TYPE_ENTITY_TYPE_CODE` (`entity_type_code`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Eav Entity Type'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_entity_type` -- LOCK TABLES `eav_entity_type` WRITE; /*!40000 ALTER TABLE `eav_entity_type` DISABLE KEYS */; INSERT INTO `eav_entity_type` VALUES (1,'customer','customer/customer','customer/attribute','customer/entity',NULL,NULL,1,'default',1,'eav/entity_increment_numeric',0,8,'0','customer/eav_attribute','customer/attribute_collection'),(2,'customer_address','customer/address','customer/attribute','customer/address_entity',NULL,NULL,1,'default',2,NULL,0,8,'0','customer/eav_attribute','customer/address_attribute_collection'),(3,'catalog_category','catalog/category','catalog/resource_eav_attribute','catalog/category',NULL,NULL,1,'default',3,NULL,0,8,'0','catalog/eav_attribute','catalog/category_attribute_collection'),(4,'catalog_product','catalog/product','catalog/resource_eav_attribute','catalog/product',NULL,NULL,1,'default',4,NULL,0,8,'0','catalog/eav_attribute','catalog/product_attribute_collection'),(5,'order','sales/order',NULL,'sales/order',NULL,NULL,1,'default',0,'eav/entity_increment_numeric',1,8,'0',NULL,NULL),(6,'invoice','sales/order_invoice',NULL,'sales/invoice',NULL,NULL,1,'default',0,'eav/entity_increment_numeric',1,8,'0',NULL,NULL),(7,'creditmemo','sales/order_creditmemo',NULL,'sales/creditmemo',NULL,NULL,1,'default',0,'eav/entity_increment_numeric',1,8,'0',NULL,NULL),(8,'shipment','sales/order_shipment',NULL,'sales/shipment',NULL,NULL,1,'default',0,'eav/entity_increment_numeric',1,8,'0',NULL,NULL); /*!40000 ALTER TABLE `eav_entity_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_varchar` -- DROP TABLE IF EXISTS `eav_entity_varchar`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_entity_varchar` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `entity_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Attribute Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `value` varchar(255) default NULL COMMENT 'Attribute Value', PRIMARY KEY (`value_id`), UNIQUE KEY `UNQ_EAV_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`), KEY `IDX_EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID` (`entity_type_id`), KEY `IDX_EAV_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`), KEY `IDX_EAV_ENTITY_VARCHAR_STORE_ID` (`store_id`), KEY `IDX_EAV_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`), KEY `IDX_EAV_ENTITY_VARCHAR_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`), KEY `IDX_EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_entity_varchar` -- LOCK TABLES `eav_entity_varchar` WRITE; /*!40000 ALTER TABLE `eav_entity_varchar` DISABLE KEYS */; /*!40000 ALTER TABLE `eav_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_form_element` -- DROP TABLE IF EXISTS `eav_form_element`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_form_element` ( `element_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Element Id', `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type Id', `fieldset_id` smallint(5) unsigned default NULL COMMENT 'Fieldset Id', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id', `sort_order` int(11) NOT NULL default '0' COMMENT 'Sort Order', PRIMARY KEY (`element_id`), UNIQUE KEY `UNQ_EAV_FORM_ELEMENT_TYPE_ID_ATTRIBUTE_ID` (`type_id`,`attribute_id`), KEY `IDX_EAV_FORM_ELEMENT_TYPE_ID` (`type_id`), KEY `IDX_EAV_FORM_ELEMENT_FIELDSET_ID` (`fieldset_id`), KEY `IDX_EAV_FORM_ELEMENT_ATTRIBUTE_ID` (`attribute_id`) ) ENGINE=MyISAM AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 COMMENT='Eav Form Element'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_form_element` -- LOCK TABLES `eav_form_element` WRITE; /*!40000 ALTER TABLE `eav_form_element` DISABLE KEYS */; INSERT INTO `eav_form_element` VALUES (1,1,NULL,20,0),(2,1,NULL,22,1),(3,1,NULL,24,2),(4,1,NULL,9,3),(5,1,NULL,25,4),(6,1,NULL,26,5),(7,1,NULL,28,6),(8,1,NULL,30,7),(9,1,NULL,27,8),(10,1,NULL,31,9),(11,1,NULL,32,10),(12,2,NULL,20,0),(13,2,NULL,22,1),(14,2,NULL,24,2),(15,2,NULL,9,3),(16,2,NULL,25,4),(17,2,NULL,26,5),(18,2,NULL,28,6),(19,2,NULL,30,7),(20,2,NULL,27,8),(21,2,NULL,31,9),(22,2,NULL,32,10),(23,3,NULL,20,0),(24,3,NULL,22,1),(25,3,NULL,24,2),(26,3,NULL,25,3),(27,3,NULL,26,4),(28,3,NULL,28,5),(29,3,NULL,30,6),(30,3,NULL,27,7),(31,3,NULL,31,8),(32,3,NULL,32,9),(33,4,NULL,20,0),(34,4,NULL,22,1),(35,4,NULL,24,2),(36,4,NULL,25,3),(37,4,NULL,26,4),(38,4,NULL,28,5),(39,4,NULL,30,6),(40,4,NULL,27,7),(41,4,NULL,31,8),(42,4,NULL,32,9),(43,5,1,5,0),(44,5,1,7,1),(45,5,1,9,2),(46,5,2,24,0),(47,5,2,31,1),(48,5,2,25,2),(49,5,2,26,3),(50,5,2,28,4),(51,5,2,30,5),(52,5,2,27,6); /*!40000 ALTER TABLE `eav_form_element` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_form_fieldset` -- DROP TABLE IF EXISTS `eav_form_fieldset`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_form_fieldset` ( `fieldset_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Fieldset Id', `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type Id', `code` varchar(64) NOT NULL COMMENT 'Code', `sort_order` int(11) NOT NULL default '0' COMMENT 'Sort Order', PRIMARY KEY (`fieldset_id`), UNIQUE KEY `UNQ_EAV_FORM_FIELDSET_TYPE_ID_CODE` (`type_id`,`code`), KEY `IDX_EAV_FORM_FIELDSET_TYPE_ID` (`type_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_form_fieldset` -- LOCK TABLES `eav_form_fieldset` WRITE; /*!40000 ALTER TABLE `eav_form_fieldset` DISABLE KEYS */; INSERT INTO `eav_form_fieldset` VALUES (1,5,'general',1),(2,5,'address',2); /*!40000 ALTER TABLE `eav_form_fieldset` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_form_fieldset_label` -- DROP TABLE IF EXISTS `eav_form_fieldset_label`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_form_fieldset_label` ( `fieldset_id` smallint(5) unsigned NOT NULL COMMENT 'Fieldset Id', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id', `label` varchar(255) NOT NULL COMMENT 'Label', PRIMARY KEY (`fieldset_id`,`store_id`), KEY `IDX_EAV_FORM_FIELDSET_LABEL_FIELDSET_ID` (`fieldset_id`), KEY `IDX_EAV_FORM_FIELDSET_LABEL_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset Label'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_form_fieldset_label` -- LOCK TABLES `eav_form_fieldset_label` WRITE; /*!40000 ALTER TABLE `eav_form_fieldset_label` DISABLE KEYS */; INSERT INTO `eav_form_fieldset_label` VALUES (1,0,'Personal Information'),(2,0,'Address Information'); /*!40000 ALTER TABLE `eav_form_fieldset_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_form_type` -- DROP TABLE IF EXISTS `eav_form_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_form_type` ( `type_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Type Id', `code` varchar(64) NOT NULL COMMENT 'Code', `label` varchar(255) NOT NULL COMMENT 'Label', `is_system` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is System', `theme` varchar(64) default NULL COMMENT 'Theme', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id', PRIMARY KEY (`type_id`), UNIQUE KEY `UNQ_EAV_FORM_TYPE_CODE_THEME_STORE_ID` (`code`,`theme`,`store_id`), KEY `IDX_EAV_FORM_TYPE_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Eav Form Type'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_form_type` -- LOCK TABLES `eav_form_type` WRITE; /*!40000 ALTER TABLE `eav_form_type` DISABLE KEYS */; INSERT INTO `eav_form_type` VALUES (1,'checkout_onepage_register','checkout_onepage_register',1,'',0),(2,'checkout_onepage_register_guest','checkout_onepage_register_guest',1,'',0),(3,'checkout_onepage_billing_address','checkout_onepage_billing_address',1,'',0),(4,'checkout_onepage_shipping_address','checkout_onepage_shipping_address',1,'',0),(5,'checkout_multishipping_register','checkout_multishipping_register',1,'',0); /*!40000 ALTER TABLE `eav_form_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_form_type_entity` -- DROP TABLE IF EXISTS `eav_form_type_entity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `eav_form_type_entity` ( `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type Id', `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type Id', PRIMARY KEY (`type_id`,`entity_type_id`), KEY `IDX_EAV_FORM_TYPE_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Eav Form Type Entity'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `eav_form_type_entity` -- LOCK TABLES `eav_form_type_entity` WRITE; /*!40000 ALTER TABLE `eav_form_type_entity` DISABLE KEYS */; INSERT INTO `eav_form_type_entity` VALUES (1,1),(1,2),(2,1),(2,2),(3,2),(4,2),(5,1),(5,2); /*!40000 ALTER TABLE `eav_form_type_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gift_message` -- DROP TABLE IF EXISTS `gift_message`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `gift_message` ( `gift_message_id` int(10) unsigned NOT NULL auto_increment COMMENT 'GiftMessage Id', `customer_id` int(10) unsigned NOT NULL default '0' COMMENT 'Customer id', `sender` varchar(255) default NULL COMMENT 'Sender', `recipient` varchar(255) default NULL COMMENT 'Recipient', `message` text COMMENT 'Message', PRIMARY KEY (`gift_message_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Gift Message'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `gift_message` -- LOCK TABLES `gift_message` WRITE; /*!40000 ALTER TABLE `gift_message` DISABLE KEYS */; /*!40000 ALTER TABLE `gift_message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `importexport_importdata` -- DROP TABLE IF EXISTS `importexport_importdata`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `importexport_importdata` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `entity` varchar(50) NOT NULL COMMENT 'Entity', `behavior` varchar(10) NOT NULL default 'append' COMMENT 'Behavior', `data` longtext COMMENT 'Data', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Import Data Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `importexport_importdata` -- LOCK TABLES `importexport_importdata` WRITE; /*!40000 ALTER TABLE `importexport_importdata` DISABLE KEYS */; /*!40000 ALTER TABLE `importexport_importdata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `index_event` -- DROP TABLE IF EXISTS `index_event`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `index_event` ( `event_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Event Id', `type` varchar(64) NOT NULL COMMENT 'Type', `entity` varchar(64) NOT NULL COMMENT 'Entity', `entity_pk` bigint(20) default NULL COMMENT 'Entity Primary Key', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Creation Time', `old_data` mediumtext COMMENT 'Old Data', `new_data` mediumtext COMMENT 'New Data', PRIMARY KEY (`event_id`), UNIQUE KEY `UNQ_INDEX_EVENT_TYPE_ENTITY_ENTITY_PK` (`type`,`entity`,`entity_pk`) ) ENGINE=MyISAM AUTO_INCREMENT=139 DEFAULT CHARSET=utf8 COMMENT='Index Event'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `index_event` -- LOCK TABLES `index_event` WRITE; /*!40000 ALTER TABLE `index_event` DISABLE KEYS */; INSERT INTO `index_event` VALUES (1,'save','catalog_category',1,'2015-02-08 22:15:35',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(2,'save','catalog_category',2,'2015-02-08 22:15:36',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(3,'save','core_store',2,'2015-02-08 22:45:39',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(4,'save','core_store',3,'2015-02-08 22:47:51',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(5,'save','core_store',4,'2015-02-08 22:48:32',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(6,'save','core_config_data',164,'2015-02-09 01:05:34',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(7,'save','core_config_data',172,'2015-02-09 01:05:34',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(8,'save','core_config_data',106,'2015-02-09 01:07:26',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(9,'save','catalog_eav_attribute',81,'2015-02-09 01:30:21',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(10,'save','catalog_eav_attribute',142,'2015-02-09 01:31:38',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(11,'save','catalog_eav_attribute',143,'2015-02-09 01:32:33',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(12,'save','catalog_eav_attribute',144,'2015-02-09 01:40:32',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(13,'save','catalog_eav_attribute',145,'2015-02-24 20:26:57',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(14,'save','catalog_eav_attribute',146,'2015-02-24 20:29:20',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(15,'save','catalog_eav_attribute',147,'2015-02-24 20:34:29',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(16,'save','catalog_eav_attribute',148,'2015-02-24 20:37:40',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(17,'save','catalog_category',3,'2015-02-24 20:49:24',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(18,'save','catalog_category',4,'2015-02-24 20:50:30',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(19,'save','catalog_category',5,'2015-02-24 20:52:01',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(20,'save','catalog_category',6,'2015-02-24 20:52:35',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(21,'save','catalog_category',7,'2015-02-24 20:53:05',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(22,'save','catalog_category',8,'2015-02-24 20:53:37',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(23,'save','catalog_category',9,'2015-02-24 20:54:13',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(24,'save','catalog_category',10,'2015-02-24 20:54:47',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(25,'save','catalog_category',11,'2015-02-24 20:55:21',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(26,'save','catalog_category',12,'2015-02-24 20:55:48',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(27,'save','catalog_category',13,'2015-02-24 20:56:26',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(28,'save','catalog_category',14,'2015-02-24 20:56:49',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(29,'save','catalog_category',15,'2015-02-24 20:57:20',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(30,'save','catalog_category',16,'2015-02-24 20:57:45',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(31,'save','catalog_category',17,'2015-02-24 20:58:13',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(32,'save','catalog_category',18,'2015-02-24 20:58:41',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(33,'save','catalog_category',19,'2015-02-24 20:59:07',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(34,'save','catalog_category',20,'2015-02-24 20:59:31',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(35,'save','catalog_category',21,'2015-02-24 20:59:56',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(36,'save','cataloginventory_stock_item',1,'2015-02-24 21:10:32',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(37,'catalog_reindex_price','catalog_product',1,'2015-02-24 21:10:35',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(38,'save','catalog_product',1,'2015-02-24 21:10:37',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(39,'save','cataloginventory_stock_item',2,'2015-02-25 13:46:04',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(40,'catalog_reindex_price','catalog_product',2,'2015-02-25 13:46:06',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(41,'save','catalog_product',2,'2015-02-25 13:46:07',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(42,'save','cataloginventory_stock_item',3,'2015-02-25 13:53:53',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(43,'catalog_reindex_price','catalog_product',3,'2015-02-25 13:53:54',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(44,'save','catalog_product',3,'2015-02-25 13:53:54',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(45,'save','cataloginventory_stock_item',4,'2015-02-25 13:58:19',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(46,'catalog_reindex_price','catalog_product',4,'2015-02-25 13:58:20',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(47,'save','catalog_product',4,'2015-02-25 13:58:20',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(48,'save','cataloginventory_stock_item',5,'2015-02-25 14:02:20',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(49,'catalog_reindex_price','catalog_product',5,'2015-02-25 14:02:20',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(50,'save','catalog_product',5,'2015-02-25 14:02:21',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(51,'save','cataloginventory_stock_item',6,'2015-02-25 14:06:23',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(52,'catalog_reindex_price','catalog_product',6,'2015-02-25 14:06:24',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(53,'save','catalog_product',6,'2015-02-25 14:06:25',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(54,'save','cataloginventory_stock_item',7,'2015-02-25 14:24:25',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(55,'catalog_reindex_price','catalog_product',7,'2015-02-25 14:24:25',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(56,'save','catalog_product',7,'2015-02-25 14:24:27',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(57,'save','cataloginventory_stock_item',8,'2015-02-25 14:32:20',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(58,'catalog_reindex_price','catalog_product',8,'2015-02-25 14:32:21',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(59,'save','catalog_product',8,'2015-02-25 14:32:22',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(60,'save','cataloginventory_stock_item',9,'2015-02-25 14:36:40',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(61,'catalog_reindex_price','catalog_product',9,'2015-02-25 14:36:40',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(62,'save','catalog_product',9,'2015-02-25 14:36:41',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(63,'save','cataloginventory_stock_item',10,'2015-02-25 15:29:10',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(64,'catalog_reindex_price','catalog_product',10,'2015-02-25 15:29:11',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(65,'save','catalog_product',10,'2015-02-25 15:29:12',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(66,'save','cataloginventory_stock_item',11,'2015-02-25 16:28:38',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(67,'catalog_reindex_price','catalog_product',11,'2015-02-25 16:28:39',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(68,'save','catalog_product',11,'2015-02-25 16:28:41',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(69,'save','cataloginventory_stock_item',12,'2015-02-25 16:38:26',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(70,'catalog_reindex_price','catalog_product',12,'2015-02-25 16:38:26',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(71,'save','catalog_product',12,'2015-02-25 16:38:27',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(72,'save','cataloginventory_stock_item',13,'2015-02-25 16:56:55',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(73,'catalog_reindex_price','catalog_product',13,'2015-02-25 16:56:55',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(74,'save','catalog_product',13,'2015-02-25 16:56:56',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(75,'save','cataloginventory_stock_item',14,'2015-02-25 17:02:50',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(76,'catalog_reindex_price','catalog_product',14,'2015-02-25 17:02:51',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(77,'save','catalog_product',14,'2015-02-25 17:02:52',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(78,'save','cataloginventory_stock_item',15,'2015-02-25 17:20:42',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(79,'catalog_reindex_price','catalog_product',15,'2015-02-25 17:20:43',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(80,'save','catalog_product',15,'2015-02-25 17:20:44',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(81,'save','cataloginventory_stock_item',16,'2015-02-25 17:31:09',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(82,'catalog_reindex_price','catalog_product',16,'2015-02-25 17:31:09',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(83,'save','catalog_product',16,'2015-02-25 17:31:10',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(84,'save','cataloginventory_stock_item',17,'2015-02-25 17:45:17',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(85,'catalog_reindex_price','catalog_product',17,'2015-02-25 17:45:18',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(86,'save','catalog_product',17,'2015-02-25 17:45:18',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(87,'save','cataloginventory_stock_item',18,'2015-02-25 17:50:04',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(88,'catalog_reindex_price','catalog_product',18,'2015-02-25 17:50:04',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(89,'save','catalog_product',18,'2015-02-25 17:50:05',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(90,'save','cataloginventory_stock_item',19,'2015-02-25 17:55:30',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(91,'catalog_reindex_price','catalog_product',19,'2015-02-25 17:55:30',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(92,'save','catalog_product',19,'2015-02-25 17:55:31',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(93,'save','cataloginventory_stock_item',20,'2015-02-25 17:59:06',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(94,'catalog_reindex_price','catalog_product',20,'2015-02-25 17:59:06',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(95,'save','catalog_product',20,'2015-02-25 17:59:07',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:1;s:34:\"catalog_product_price_match_result\";b:1;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'),(96,'save','tag',1,'2015-02-25 18:14:15',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(97,'save','tag_relation',1,'2015-02-25 18:14:16',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(98,'save','tag',2,'2015-02-25 18:14:59',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(99,'save','tag_relation',2,'2015-02-25 18:14:59',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(100,'save','tag',3,'2015-02-25 18:18:40',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(101,'save','tag_relation',3,'2015-02-25 18:18:40',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(102,'save','tag',4,'2015-02-25 18:33:47',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(103,'save','tag_relation',4,'2015-02-25 18:33:47',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(104,'save','tag',5,'2015-02-25 18:35:36',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(105,'save','tag_relation',5,'2015-02-25 18:35:36',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(106,'save','tag',6,'2015-02-25 18:37:00',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(107,'save','tag_relation',6,'2015-02-25 18:37:00',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(108,'save','tag_relation',7,'2015-02-25 18:37:25',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(109,'save','tag',7,'2015-02-25 18:38:18',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(110,'save','tag_relation',8,'2015-02-25 18:38:18',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(111,'save','tag',8,'2015-02-25 18:39:08',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(112,'save','tag_relation',9,'2015-02-25 18:39:08',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(113,'save','tag_relation',10,'2015-02-25 18:40:42',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(114,'save','tag_relation',11,'2015-02-25 18:41:06',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(115,'save','tag',9,'2015-02-25 18:42:54',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(116,'save','tag_relation',12,'2015-02-25 18:42:54',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(117,'save','tag',10,'2015-02-25 18:43:44',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(118,'save','tag_relation',13,'2015-02-25 18:43:44',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(119,'save','tag',11,'2015-02-25 18:44:57',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(120,'save','tag_relation',14,'2015-02-25 18:44:57',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(121,'save','tag',12,'2015-02-25 18:45:17',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(122,'save','tag_relation',15,'2015-02-25 18:45:17',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(123,'save','tag',13,'2015-02-25 18:46:02',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(124,'save','tag_relation',16,'2015-02-25 18:46:02',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(125,'save','tag',14,'2015-02-25 18:46:41',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(126,'save','tag_relation',17,'2015-02-25 18:46:41',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(127,'save','tag_relation',18,'2015-02-25 18:48:14',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(128,'save','tag_relation',19,'2015-02-25 18:48:42',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(129,'save','tag',15,'2015-02-25 18:51:50',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(130,'save','tag_relation',20,'2015-02-25 18:51:50',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(131,'save','tag_relation',21,'2015-02-25 18:52:25',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(132,'save','tag_relation',22,'2015-02-25 18:52:57',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(133,'save','tag_relation',23,'2015-02-25 18:53:08',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(134,'save','tag_relation',24,'2015-02-25 18:53:18',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(135,'save','tag_relation',25,'2015-02-25 18:53:42',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(136,'save','tag_relation',26,'2015-02-25 18:54:04',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(137,'save','tag_relation',27,'2015-02-25 18:54:30',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(138,'save','catalog_category',22,'2015-04-07 13:36:47',NULL,'a:5:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:1;s:37:\"catalog_category_product_match_result\";b:1;s:35:\"catalogsearch_fulltext_match_result\";b:1;}'); /*!40000 ALTER TABLE `index_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `index_process` -- DROP TABLE IF EXISTS `index_process`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `index_process` ( `process_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Process Id', `indexer_code` varchar(32) NOT NULL COMMENT 'Indexer Code', `status` varchar(15) NOT NULL default 'pending' COMMENT 'Status', `started_at` timestamp NULL default NULL COMMENT 'Started At', `ended_at` timestamp NULL default NULL COMMENT 'Ended At', `mode` varchar(9) NOT NULL default 'real_time' COMMENT 'Mode', PRIMARY KEY (`process_id`), UNIQUE KEY `UNQ_INDEX_PROCESS_INDEXER_CODE` (`indexer_code`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Index Process'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `index_process` -- LOCK TABLES `index_process` WRITE; /*!40000 ALTER TABLE `index_process` DISABLE KEYS */; INSERT INTO `index_process` VALUES (1,'catalog_product_attribute','pending','2015-04-08 16:30:32','2015-04-08 16:30:32','real_time'),(2,'catalog_product_price','pending','2015-04-08 16:30:32','2015-04-08 16:30:32','real_time'),(3,'catalog_url','pending','2015-04-08 16:30:32','2015-04-08 16:30:32','real_time'),(4,'catalog_product_flat','pending','2015-02-08 22:27:18','2015-02-08 22:27:18','real_time'),(5,'catalog_category_flat','pending','2015-02-08 22:27:18','2015-02-08 22:27:19','real_time'),(6,'catalog_category_product','pending','2015-04-08 16:30:32','2015-04-08 16:30:32','real_time'),(7,'catalogsearch_fulltext','pending','2015-04-08 16:30:32','2015-04-08 16:30:33','real_time'),(8,'cataloginventory_stock','pending','2015-04-08 16:30:32','2015-04-08 16:30:32','real_time'),(9,'tag_summary','pending','2015-04-08 16:30:33','2015-04-08 16:30:33','real_time'); /*!40000 ALTER TABLE `index_process` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `index_process_event` -- DROP TABLE IF EXISTS `index_process_event`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `index_process_event` ( `process_id` int(10) unsigned NOT NULL COMMENT 'Process Id', `event_id` bigint(20) unsigned NOT NULL COMMENT 'Event Id', `status` varchar(7) NOT NULL default 'new' COMMENT 'Status', PRIMARY KEY (`process_id`,`event_id`), KEY `IDX_INDEX_PROCESS_EVENT_EVENT_ID` (`event_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Index Process Event'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `index_process_event` -- LOCK TABLES `index_process_event` WRITE; /*!40000 ALTER TABLE `index_process_event` DISABLE KEYS */; /*!40000 ALTER TABLE `index_process_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_customer` -- DROP TABLE IF EXISTS `log_customer`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `log_customer` ( `log_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Log ID', `visitor_id` bigint(20) unsigned default NULL COMMENT 'Visitor ID', `customer_id` int(11) NOT NULL default '0' COMMENT 'Customer ID', `login_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Login Time', `logout_at` timestamp NULL default NULL COMMENT 'Logout Time', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`log_id`), KEY `IDX_LOG_CUSTOMER_VISITOR_ID` (`visitor_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Log Customers Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `log_customer` -- LOCK TABLES `log_customer` WRITE; /*!40000 ALTER TABLE `log_customer` DISABLE KEYS */; INSERT INTO `log_customer` VALUES (1,8,1,'2015-02-25 17:35:43',NULL,1); /*!40000 ALTER TABLE `log_customer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_quote` -- DROP TABLE IF EXISTS `log_quote`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `log_quote` ( `quote_id` int(10) unsigned NOT NULL default '0' COMMENT 'Quote ID', `visitor_id` bigint(20) unsigned default NULL COMMENT 'Visitor ID', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Creation Time', `deleted_at` timestamp NULL default NULL COMMENT 'Deletion Time', PRIMARY KEY (`quote_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Log Quotes Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `log_quote` -- LOCK TABLES `log_quote` WRITE; /*!40000 ALTER TABLE `log_quote` DISABLE KEYS */; INSERT INTO `log_quote` VALUES (2,27,'2015-04-07 18:38:11',NULL),(3,36,'2015-04-09 17:29:43',NULL); /*!40000 ALTER TABLE `log_quote` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_summary` -- DROP TABLE IF EXISTS `log_summary`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `log_summary` ( `summary_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Summary ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', `type_id` smallint(5) unsigned default NULL COMMENT 'Type ID', `visitor_count` int(11) NOT NULL default '0' COMMENT 'Visitor Count', `customer_count` int(11) NOT NULL default '0' COMMENT 'Customer Count', `add_date` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Date', PRIMARY KEY (`summary_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Log Summary Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `log_summary` -- LOCK TABLES `log_summary` WRITE; /*!40000 ALTER TABLE `log_summary` DISABLE KEYS */; /*!40000 ALTER TABLE `log_summary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_summary_type` -- DROP TABLE IF EXISTS `log_summary_type`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `log_summary_type` ( `type_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Type ID', `type_code` varchar(64) default NULL COMMENT 'Type Code', `period` smallint(5) unsigned NOT NULL default '0' COMMENT 'Period', `period_type` varchar(6) NOT NULL default 'MINUTE' COMMENT 'Period Type', PRIMARY KEY (`type_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Log Summary Types Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `log_summary_type` -- LOCK TABLES `log_summary_type` WRITE; /*!40000 ALTER TABLE `log_summary_type` DISABLE KEYS */; INSERT INTO `log_summary_type` VALUES (1,'hour',1,'HOUR'),(2,'day',1,'DAY'); /*!40000 ALTER TABLE `log_summary_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_url` -- DROP TABLE IF EXISTS `log_url`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `log_url` ( `url_id` bigint(20) unsigned NOT NULL default '0' COMMENT 'URL ID', `visitor_id` bigint(20) unsigned default NULL COMMENT 'Visitor ID', `visit_time` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Visit Time', KEY `IDX_LOG_URL_VISITOR_ID` (`visitor_id`), KEY `url_id` (`url_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Log URL Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `log_url` -- LOCK TABLES `log_url` WRITE; /*!40000 ALTER TABLE `log_url` DISABLE KEYS */; INSERT INTO `log_url` VALUES (1,1,'2015-02-09 01:49:25'),(2,1,'2015-02-09 01:55:36'),(3,1,'2015-02-09 01:55:43'),(4,1,'2015-02-09 01:56:06'),(5,2,'2015-02-09 01:56:34'),(6,3,'2015-02-09 01:56:52'),(7,4,'2015-02-09 01:57:01'),(8,5,'2015-02-09 01:57:22'),(9,6,'2015-02-09 01:57:38'),(10,1,'2015-02-09 02:02:59'),(11,1,'2015-02-09 02:03:06'),(12,1,'2015-02-09 02:03:16'),(13,1,'2015-02-09 02:03:34'),(14,1,'2015-02-09 02:03:41'),(15,1,'2015-02-09 02:03:50'),(16,1,'2015-02-09 02:09:47'),(17,1,'2015-02-09 02:09:56'),(18,1,'2015-02-09 02:10:04'),(19,1,'2015-02-09 02:10:27'),(20,1,'2015-02-09 02:10:31'),(21,1,'2015-02-09 02:10:36'),(22,1,'2015-02-09 02:13:21'),(23,1,'2015-02-09 02:13:55'),(24,1,'2015-02-09 02:14:14'),(25,1,'2015-02-09 02:14:34'),(26,1,'2015-02-09 02:22:16'),(27,1,'2015-02-09 02:22:23'),(28,1,'2015-02-09 02:22:29'),(29,1,'2015-02-09 02:22:37'),(30,1,'2015-02-09 02:22:43'),(31,1,'2015-02-09 02:22:52'),(32,1,'2015-02-09 02:23:43'),(33,1,'2015-02-09 02:24:01'),(34,7,'2015-02-24 19:48:03'),(35,7,'2015-02-24 20:10:56'),(36,7,'2015-02-24 20:11:50'),(37,7,'2015-02-24 21:00:03'),(38,7,'2015-02-24 21:00:32'),(39,7,'2015-02-24 21:00:44'),(40,7,'2015-02-24 21:11:05'),(41,7,'2015-02-24 21:11:48'),(42,7,'2015-02-24 21:11:59'),(43,7,'2015-02-24 21:12:22'),(44,8,'2015-02-25 13:00:02'),(45,8,'2015-02-25 13:47:57'),(46,8,'2015-02-25 13:48:18'),(47,8,'2015-02-25 14:06:25'),(48,8,'2015-02-25 15:20:15'),(49,8,'2015-02-25 16:57:08'),(50,8,'2015-02-25 16:59:28'),(51,8,'2015-02-25 17:35:42'),(52,8,'2015-02-25 17:35:51'),(53,8,'2015-02-25 17:36:05'),(54,8,'2015-02-25 17:36:25'),(55,8,'2015-02-25 17:36:30'),(56,8,'2015-02-25 17:38:19'),(57,8,'2015-02-25 17:38:37'),(58,8,'2015-02-25 17:38:48'),(59,8,'2015-02-25 17:39:05'),(60,8,'2015-02-25 17:39:11'),(61,8,'2015-02-25 17:40:21'),(62,8,'2015-02-25 17:40:53'),(63,8,'2015-02-25 17:41:10'),(64,8,'2015-02-25 18:02:34'),(65,8,'2015-02-25 18:08:34'),(66,8,'2015-02-25 18:08:47'),(67,8,'2015-02-25 18:09:07'),(68,8,'2015-02-25 18:11:34'),(69,8,'2015-02-25 18:11:46'),(70,8,'2015-02-25 18:12:09'),(71,8,'2015-02-25 18:14:16'),(72,8,'2015-02-25 18:14:23'),(73,8,'2015-02-25 18:14:59'),(74,8,'2015-02-25 18:15:06'),(75,8,'2015-02-25 18:16:33'),(76,8,'2015-02-25 18:16:46'),(77,8,'2015-02-25 18:17:27'),(78,8,'2015-02-25 18:18:07'),(79,8,'2015-02-25 18:18:18'),(80,8,'2015-02-25 18:18:41'),(81,8,'2015-02-25 18:18:47'),(82,8,'2015-02-25 18:20:27'),(83,8,'2015-02-25 18:20:38'),(84,8,'2015-02-25 18:20:56'),(85,8,'2015-02-25 18:21:02'),(86,8,'2015-02-25 18:30:50'),(87,8,'2015-02-25 18:30:56'),(88,8,'2015-02-25 18:32:58'),(89,8,'2015-02-25 18:33:23'),(90,8,'2015-02-25 18:33:47'),(91,8,'2015-02-25 18:33:54'),(92,8,'2015-02-25 18:34:49'),(93,8,'2015-02-25 18:35:09'),(94,8,'2015-02-25 18:35:36'),(95,8,'2015-02-25 18:35:43'),(96,8,'2015-02-25 18:35:53'),(97,8,'2015-02-25 18:36:23'),(98,8,'2015-02-25 18:37:00'),(99,8,'2015-02-25 18:37:07'),(100,8,'2015-02-25 18:37:25'),(101,8,'2015-02-25 18:37:32'),(102,8,'2015-02-25 18:37:53'),(103,8,'2015-02-25 18:38:03'),(104,8,'2015-02-25 18:38:18'),(105,8,'2015-02-25 18:38:25'),(106,8,'2015-02-25 18:39:08'),(107,8,'2015-02-25 18:39:15'),(108,8,'2015-02-25 18:39:53'),(109,8,'2015-02-25 18:40:14'),(110,8,'2015-02-25 18:40:42'),(111,8,'2015-02-25 18:40:49'),(112,8,'2015-02-25 18:41:06'),(113,8,'2015-02-25 18:41:13'),(114,8,'2015-02-25 18:41:22'),(115,8,'2015-02-25 18:41:43'),(116,8,'2015-02-25 18:42:54'),(117,8,'2015-02-25 18:43:01'),(118,8,'2015-02-25 18:43:44'),(119,8,'2015-02-25 18:43:51'),(120,8,'2015-02-25 18:44:22'),(121,8,'2015-02-25 18:44:43'),(122,8,'2015-02-25 18:44:57'),(123,8,'2015-02-25 18:45:04'),(124,8,'2015-02-25 18:45:17'),(125,8,'2015-02-25 18:45:25'),(126,8,'2015-02-25 18:45:38'),(127,8,'2015-02-25 18:46:02'),(128,8,'2015-02-25 18:46:09'),(129,8,'2015-02-25 18:46:41'),(130,8,'2015-02-25 18:46:48'),(131,8,'2015-02-25 18:47:30'),(132,8,'2015-02-25 18:47:55'),(133,8,'2015-02-25 18:48:15'),(134,8,'2015-02-25 18:48:21'),(135,8,'2015-02-25 18:48:42'),(136,8,'2015-02-25 18:48:49'),(137,8,'2015-02-25 18:49:00'),(138,8,'2015-02-25 18:49:42'),(139,8,'2015-02-25 18:49:48'),(140,8,'2015-02-25 18:50:58'),(141,8,'2015-02-25 18:51:21'),(142,8,'2015-02-25 18:51:50'),(143,8,'2015-02-25 18:51:57'),(144,8,'2015-02-25 18:52:25'),(145,8,'2015-02-25 18:52:33'),(146,8,'2015-02-25 18:52:39'),(147,8,'2015-02-25 18:52:55'),(148,8,'2015-02-25 18:52:57'),(149,8,'2015-02-25 18:53:04'),(150,8,'2015-02-25 18:53:08'),(151,8,'2015-02-25 18:53:15'),(152,8,'2015-02-25 18:53:18'),(153,8,'2015-02-25 18:53:25'),(154,8,'2015-02-25 18:53:42'),(155,8,'2015-02-25 18:53:49'),(156,8,'2015-02-25 18:54:04'),(157,8,'2015-02-25 18:54:11'),(158,8,'2015-02-25 18:54:17'),(159,8,'2015-02-25 18:54:30'),(160,8,'2015-02-25 18:54:37'),(161,8,'2015-02-25 18:54:53'),(162,8,'2015-02-25 18:54:59'),(163,8,'2015-02-25 18:55:35'),(164,8,'2015-02-25 18:55:46'),(165,8,'2015-02-25 18:56:45'),(166,8,'2015-02-25 18:56:51'),(167,8,'2015-02-25 18:56:56'),(168,8,'2015-02-25 18:57:20'),(169,8,'2015-02-25 18:57:26'),(170,8,'2015-02-25 18:57:32'),(171,8,'2015-02-25 18:57:48'),(172,8,'2015-02-25 18:58:11'),(173,8,'2015-02-25 18:58:17'),(174,8,'2015-02-25 18:59:41'),(175,8,'2015-02-25 19:00:09'),(176,8,'2015-02-25 19:00:31'),(177,8,'2015-02-25 19:00:38'),(178,8,'2015-02-25 19:01:12'),(179,8,'2015-02-25 19:01:36'),(180,8,'2015-02-25 19:01:58'),(181,8,'2015-02-25 19:02:14'),(182,8,'2015-02-25 19:02:20'),(183,8,'2015-02-25 19:03:32'),(184,8,'2015-02-25 19:04:44'),(185,8,'2015-02-25 19:05:02'),(186,8,'2015-02-25 19:05:20'),(187,8,'2015-02-25 19:07:06'),(188,8,'2015-02-25 19:10:45'),(189,8,'2015-02-25 19:11:40'),(190,8,'2015-02-25 19:13:17'),(191,8,'2015-02-25 19:13:27'),(192,9,'2015-02-25 19:17:44'),(193,10,'2015-02-25 19:17:55'),(194,11,'2015-02-25 19:18:39'),(195,8,'2015-02-25 19:20:14'),(196,8,'2015-02-25 19:20:38'),(197,8,'2015-02-25 19:20:57'),(198,8,'2015-02-25 19:21:19'),(199,12,'2015-03-30 18:35:27'),(200,12,'2015-03-30 18:41:00'),(201,12,'2015-03-30 18:54:02'),(202,12,'2015-03-30 19:00:30'),(203,12,'2015-03-30 19:03:56'),(204,12,'2015-03-30 19:20:19'),(205,12,'2015-03-30 19:21:36'),(206,12,'2015-03-30 19:22:01'),(207,12,'2015-03-30 19:24:28'),(208,12,'2015-03-30 19:25:08'),(209,13,'2015-03-31 10:08:03'),(210,13,'2015-03-31 11:08:07'),(211,13,'2015-03-31 11:26:28'),(212,13,'2015-03-31 12:13:36'),(213,13,'2015-03-31 12:20:50'),(214,14,'2015-03-31 12:21:11'),(215,13,'2015-03-31 12:31:06'),(216,13,'2015-03-31 12:39:32'),(217,13,'2015-03-31 12:39:53'),(218,13,'2015-03-31 12:40:00'),(219,13,'2015-03-31 12:43:15'),(220,13,'2015-03-31 12:43:51'),(221,13,'2015-03-31 12:44:40'),(222,13,'2015-03-31 12:45:32'),(223,13,'2015-03-31 12:56:12'),(224,13,'2015-03-31 12:56:45'),(225,13,'2015-03-31 12:57:28'),(226,13,'2015-03-31 12:57:42'),(227,13,'2015-03-31 12:57:48'),(228,13,'2015-03-31 12:59:00'),(229,13,'2015-03-31 13:00:23'),(230,13,'2015-03-31 13:20:29'),(231,13,'2015-03-31 13:21:03'),(232,13,'2015-03-31 13:37:09'),(233,13,'2015-03-31 13:38:08'),(234,13,'2015-03-31 13:38:16'),(235,13,'2015-03-31 13:45:14'),(236,13,'2015-03-31 13:46:05'),(237,13,'2015-03-31 13:47:37'),(238,13,'2015-03-31 13:49:10'),(239,13,'2015-03-31 13:56:43'),(240,13,'2015-03-31 15:08:39'),(241,13,'2015-03-31 15:14:54'),(242,13,'2015-03-31 15:16:40'),(243,13,'2015-03-31 15:17:10'),(244,13,'2015-03-31 15:17:58'),(245,13,'2015-03-31 15:21:53'),(246,13,'2015-03-31 15:25:42'),(247,13,'2015-03-31 15:38:40'),(248,13,'2015-03-31 15:43:07'),(249,13,'2015-03-31 15:43:42'),(250,13,'2015-03-31 15:44:57'),(251,13,'2015-03-31 15:55:28'),(252,13,'2015-03-31 15:59:39'),(253,13,'2015-03-31 16:00:48'),(254,13,'2015-03-31 16:02:17'),(255,13,'2015-03-31 16:02:43'),(256,13,'2015-03-31 16:14:40'),(257,13,'2015-03-31 16:16:17'),(258,13,'2015-03-31 16:27:46'),(259,13,'2015-03-31 16:28:20'),(260,13,'2015-03-31 16:35:15'),(261,13,'2015-03-31 16:35:56'),(262,13,'2015-03-31 16:36:19'),(263,13,'2015-03-31 16:44:52'),(264,13,'2015-03-31 16:45:00'),(265,13,'2015-03-31 16:45:53'),(266,13,'2015-03-31 16:48:24'),(267,13,'2015-03-31 16:49:32'),(268,13,'2015-03-31 16:53:03'),(269,13,'2015-03-31 17:05:47'),(270,13,'2015-03-31 17:07:43'),(271,13,'2015-03-31 17:08:12'),(272,13,'2015-03-31 17:10:58'),(273,14,'2015-03-31 17:11:38'),(274,13,'2015-03-31 17:35:14'),(275,13,'2015-03-31 17:37:58'),(276,13,'2015-03-31 17:43:14'),(277,13,'2015-03-31 17:44:10'),(278,13,'2015-03-31 17:44:27'),(279,13,'2015-03-31 17:45:59'),(280,13,'2015-03-31 17:48:03'),(281,13,'2015-03-31 17:50:25'),(282,13,'2015-03-31 18:00:34'),(283,13,'2015-03-31 18:00:57'),(284,13,'2015-03-31 18:06:39'),(285,13,'2015-03-31 18:07:33'),(286,13,'2015-03-31 18:11:08'),(287,13,'2015-03-31 18:16:28'),(288,13,'2015-03-31 18:24:59'),(289,13,'2015-03-31 18:28:03'),(290,13,'2015-03-31 18:28:46'),(291,13,'2015-03-31 18:36:21'),(292,13,'2015-03-31 18:37:20'),(293,13,'2015-03-31 18:38:44'),(294,13,'2015-03-31 18:40:26'),(295,13,'2015-03-31 18:58:29'),(296,13,'2015-03-31 18:59:18'),(297,13,'2015-03-31 19:01:38'),(298,13,'2015-03-31 19:02:00'),(299,13,'2015-03-31 19:04:50'),(300,13,'2015-03-31 19:05:07'),(301,13,'2015-03-31 19:05:42'),(302,13,'2015-03-31 19:07:50'),(303,13,'2015-03-31 19:09:36'),(304,13,'2015-03-31 19:09:53'),(305,13,'2015-03-31 19:10:51'),(306,13,'2015-03-31 19:12:47'),(307,13,'2015-03-31 19:15:13'),(308,13,'2015-03-31 19:19:52'),(309,13,'2015-03-31 19:21:18'),(310,13,'2015-03-31 19:22:13'),(311,13,'2015-03-31 19:22:45'),(312,13,'2015-03-31 19:23:01'),(313,13,'2015-03-31 19:23:46'),(314,13,'2015-03-31 19:25:26'),(315,13,'2015-03-31 19:30:04'),(316,13,'2015-03-31 19:30:57'),(317,13,'2015-03-31 19:31:23'),(318,13,'2015-03-31 19:32:21'),(319,13,'2015-03-31 19:34:35'),(320,15,'2015-04-01 10:16:46'),(321,15,'2015-04-01 10:35:19'),(322,15,'2015-04-01 10:42:26'),(323,15,'2015-04-01 10:43:16'),(324,15,'2015-04-01 10:44:35'),(325,15,'2015-04-01 10:45:33'),(326,15,'2015-04-01 10:47:19'),(327,15,'2015-04-01 10:47:40'),(328,15,'2015-04-01 10:58:08'),(329,15,'2015-04-01 11:13:21'),(330,15,'2015-04-01 11:13:48'),(331,15,'2015-04-01 11:15:10'),(332,15,'2015-04-01 11:15:39'),(333,15,'2015-04-01 11:19:46'),(334,15,'2015-04-01 11:20:15'),(335,15,'2015-04-01 11:35:43'),(336,15,'2015-04-01 11:39:37'),(337,15,'2015-04-01 11:41:27'),(338,15,'2015-04-01 12:18:00'),(339,15,'2015-04-01 12:18:31'),(340,15,'2015-04-01 12:20:53'),(341,15,'2015-04-01 12:24:53'),(342,15,'2015-04-01 12:25:48'),(343,15,'2015-04-01 12:27:29'),(344,15,'2015-04-01 12:28:27'),(345,15,'2015-04-01 12:28:32'),(346,15,'2015-04-01 12:30:56'),(347,15,'2015-04-01 12:31:07'),(348,15,'2015-04-01 12:31:13'),(349,15,'2015-04-01 12:41:12'),(350,15,'2015-04-01 12:43:04'),(351,15,'2015-04-01 12:44:13'),(352,15,'2015-04-01 12:48:50'),(353,15,'2015-04-01 12:49:47'),(354,15,'2015-04-01 12:51:02'),(355,15,'2015-04-01 12:51:37'),(356,15,'2015-04-01 12:51:57'),(357,15,'2015-04-01 12:53:41'),(358,15,'2015-04-01 12:55:39'),(359,15,'2015-04-01 12:56:36'),(360,15,'2015-04-01 13:01:29'),(361,15,'2015-04-01 13:01:43'),(362,15,'2015-04-01 13:01:51'),(363,15,'2015-04-01 13:02:00'),(364,15,'2015-04-01 13:02:09'),(365,15,'2015-04-01 13:02:17'),(366,15,'2015-04-01 13:04:18'),(367,15,'2015-04-01 13:04:29'),(368,15,'2015-04-01 13:04:45'),(369,15,'2015-04-01 13:05:12'),(370,15,'2015-04-01 13:09:34'),(371,15,'2015-04-01 13:09:39'),(372,15,'2015-04-01 13:09:56'),(373,15,'2015-04-01 13:10:14'),(374,15,'2015-04-01 13:12:37'),(375,15,'2015-04-01 13:12:55'),(376,15,'2015-04-01 13:13:22'),(377,15,'2015-04-01 13:14:43'),(378,15,'2015-04-01 13:15:12'),(379,15,'2015-04-01 13:15:22'),(380,15,'2015-04-01 13:15:41'),(381,15,'2015-04-01 13:15:43'),(382,15,'2015-04-01 13:16:26'),(383,15,'2015-04-01 13:16:28'),(384,15,'2015-04-01 13:16:46'),(385,15,'2015-04-01 13:19:27'),(386,15,'2015-04-01 13:21:06'),(387,15,'2015-04-01 13:21:19'),(388,15,'2015-04-01 13:40:28'),(389,15,'2015-04-01 13:40:30'),(390,16,'2015-04-01 13:50:34'),(391,17,'2015-04-01 13:50:34'),(392,17,'2015-04-01 13:50:46'),(393,17,'2015-04-01 13:51:12'),(394,17,'2015-04-01 13:51:14'),(395,17,'2015-04-01 13:51:36'),(396,17,'2015-04-01 13:52:56'),(397,17,'2015-04-01 13:54:05'),(398,17,'2015-04-01 14:57:11'),(399,17,'2015-04-01 14:57:21'),(400,17,'2015-04-01 15:38:36'),(401,17,'2015-04-01 15:40:00'),(402,17,'2015-04-01 15:40:33'),(403,17,'2015-04-01 15:42:43'),(404,17,'2015-04-01 15:43:59'),(405,17,'2015-04-01 15:44:33'),(406,17,'2015-04-01 16:02:08'),(407,17,'2015-04-01 16:04:24'),(408,17,'2015-04-01 16:10:18'),(409,17,'2015-04-01 16:11:24'),(410,17,'2015-04-01 16:12:33'),(411,17,'2015-04-01 16:18:41'),(412,17,'2015-04-01 16:25:12'),(413,17,'2015-04-01 16:26:12'),(414,17,'2015-04-01 16:30:12'),(415,17,'2015-04-01 16:30:46'),(416,17,'2015-04-01 16:33:50'),(417,17,'2015-04-01 16:34:15'),(418,17,'2015-04-01 16:34:38'),(419,17,'2015-04-01 16:35:20'),(420,17,'2015-04-01 16:36:58'),(421,17,'2015-04-01 16:43:57'),(422,17,'2015-04-01 16:44:58'),(423,17,'2015-04-01 16:45:03'),(424,17,'2015-04-01 16:45:14'),(425,17,'2015-04-01 16:45:21'),(426,17,'2015-04-01 16:45:22'),(427,17,'2015-04-01 16:45:23'),(428,17,'2015-04-01 16:46:59'),(429,17,'2015-04-01 16:47:06'),(430,17,'2015-04-01 16:47:11'),(431,17,'2015-04-01 16:48:28'),(432,17,'2015-04-01 16:50:41'),(433,17,'2015-04-01 16:51:46'),(434,17,'2015-04-01 16:52:06'),(435,17,'2015-04-01 16:52:27'),(436,17,'2015-04-01 16:52:46'),(437,17,'2015-04-01 16:53:08'),(438,17,'2015-04-01 16:53:14'),(439,17,'2015-04-01 16:53:21'),(440,17,'2015-04-01 16:54:59'),(441,17,'2015-04-01 16:55:35'),(442,17,'2015-04-01 16:56:18'),(443,17,'2015-04-01 17:04:22'),(444,17,'2015-04-01 17:04:39'),(445,17,'2015-04-01 17:14:38'),(446,17,'2015-04-01 17:16:00'),(447,17,'2015-04-01 17:21:02'),(448,17,'2015-04-01 17:21:11'),(449,17,'2015-04-01 17:21:23'),(450,17,'2015-04-01 17:22:04'),(451,17,'2015-04-01 17:22:40'),(452,17,'2015-04-01 17:24:55'),(453,17,'2015-04-01 17:25:00'),(454,17,'2015-04-01 17:26:15'),(455,17,'2015-04-01 17:26:20'),(456,17,'2015-04-01 17:26:24'),(457,17,'2015-04-01 17:26:35'),(458,17,'2015-04-01 17:27:14'),(459,17,'2015-04-01 17:27:26'),(460,17,'2015-04-01 17:35:42'),(461,17,'2015-04-01 17:35:47'),(462,17,'2015-04-01 17:36:34'),(463,17,'2015-04-01 17:38:25'),(464,17,'2015-04-01 17:41:24'),(465,17,'2015-04-01 17:41:29'),(466,17,'2015-04-01 17:41:51'),(467,17,'2015-04-01 17:42:09'),(468,17,'2015-04-01 17:42:14'),(469,17,'2015-04-01 17:43:02'),(470,17,'2015-04-01 17:43:16'),(471,17,'2015-04-01 17:44:02'),(472,17,'2015-04-01 17:44:07'),(473,17,'2015-04-01 17:44:12'),(474,17,'2015-04-01 17:47:48'),(475,17,'2015-04-01 17:49:47'),(476,17,'2015-04-01 18:15:19'),(477,17,'2015-04-01 18:16:48'),(478,17,'2015-04-01 18:19:00'),(479,17,'2015-04-01 18:19:01'),(480,17,'2015-04-01 18:19:56'),(481,17,'2015-04-01 18:20:46'),(482,17,'2015-04-01 18:53:12'),(483,17,'2015-04-01 18:53:26'),(484,17,'2015-04-01 18:54:00'),(485,17,'2015-04-01 18:54:14'),(486,18,'2015-04-02 09:36:00'),(487,18,'2015-04-02 10:33:56'),(488,18,'2015-04-02 10:37:45'),(489,18,'2015-04-02 10:38:06'),(490,18,'2015-04-02 16:28:36'),(491,19,'2015-04-03 09:44:29'),(492,19,'2015-04-03 11:32:40'),(493,21,'2015-04-06 10:26:52'),(494,20,'2015-04-06 10:26:52'),(495,21,'2015-04-06 12:12:57'),(496,21,'2015-04-06 12:12:59'),(497,21,'2015-04-06 12:29:27'),(498,21,'2015-04-06 12:34:35'),(499,21,'2015-04-06 12:51:01'),(500,21,'2015-04-06 13:05:57'),(501,21,'2015-04-06 13:06:08'),(502,21,'2015-04-06 13:12:35'),(503,21,'2015-04-06 13:14:37'),(504,21,'2015-04-06 13:16:07'),(505,21,'2015-04-06 13:17:11'),(506,21,'2015-04-06 18:07:23'),(507,21,'2015-04-06 18:26:51'),(508,21,'2015-04-06 18:28:00'),(509,21,'2015-04-06 18:28:29'),(510,21,'2015-04-06 18:30:28'),(511,21,'2015-04-06 18:32:54'),(512,21,'2015-04-06 18:33:08'),(513,21,'2015-04-06 18:34:49'),(514,21,'2015-04-06 18:35:35'),(515,21,'2015-04-06 18:35:46'),(516,21,'2015-04-06 18:36:23'),(517,21,'2015-04-06 18:37:29'),(518,21,'2015-04-06 18:41:52'),(519,21,'2015-04-06 18:42:48'),(520,21,'2015-04-06 18:47:16'),(521,21,'2015-04-06 18:47:40'),(522,21,'2015-04-06 18:53:06'),(523,21,'2015-04-06 19:19:11'),(524,21,'2015-04-06 19:19:35'),(525,21,'2015-04-06 19:19:44'),(526,21,'2015-04-06 19:33:04'),(527,21,'2015-04-06 19:33:14'),(528,21,'2015-04-06 19:34:56'),(529,21,'2015-04-06 19:50:44'),(530,21,'2015-04-06 19:50:45'),(531,21,'2015-04-06 19:50:46'),(532,21,'2015-04-06 19:50:46'),(533,21,'2015-04-06 19:50:47'),(534,21,'2015-04-06 19:50:49'),(535,21,'2015-04-06 19:50:50'),(536,21,'2015-04-06 19:50:51'),(537,21,'2015-04-06 19:50:52'),(538,21,'2015-04-06 19:53:25'),(539,21,'2015-04-06 19:53:50'),(540,21,'2015-04-06 19:54:30'),(541,21,'2015-04-06 19:54:55'),(542,21,'2015-04-06 20:03:35'),(543,24,'2015-04-07 09:40:44'),(544,22,'2015-04-07 09:40:47'),(545,25,'2015-04-07 09:40:47'),(546,24,'2015-04-07 09:40:47'),(547,23,'2015-04-07 09:40:48'),(548,27,'2015-04-07 09:40:48'),(549,26,'2015-04-07 09:40:48'),(550,27,'2015-04-07 10:05:55'),(551,27,'2015-04-07 10:06:12'),(552,27,'2015-04-07 10:13:00'),(553,27,'2015-04-07 10:14:14'),(554,27,'2015-04-07 10:14:45'),(555,27,'2015-04-07 10:25:40'),(556,27,'2015-04-07 10:27:10'),(557,27,'2015-04-07 10:27:22'),(558,27,'2015-04-07 10:28:55'),(559,27,'2015-04-07 10:29:01'),(560,27,'2015-04-07 10:29:40'),(561,27,'2015-04-07 10:29:47'),(562,27,'2015-04-07 10:29:53'),(563,27,'2015-04-07 10:29:53'),(564,27,'2015-04-07 10:31:44'),(565,27,'2015-04-07 10:31:44'),(566,27,'2015-04-07 10:36:42'),(567,27,'2015-04-07 10:39:29'),(568,27,'2015-04-07 10:44:22'),(569,27,'2015-04-07 10:46:09'),(570,27,'2015-04-07 10:46:27'),(571,27,'2015-04-07 10:48:47'),(572,27,'2015-04-07 10:51:41'),(573,27,'2015-04-07 10:53:39'),(574,27,'2015-04-07 10:54:42'),(575,27,'2015-04-07 10:55:48'),(576,27,'2015-04-07 10:56:07'),(577,27,'2015-04-07 10:58:00'),(578,27,'2015-04-07 11:02:05'),(579,27,'2015-04-07 11:05:16'),(580,27,'2015-04-07 11:09:22'),(581,27,'2015-04-07 11:20:35'),(582,27,'2015-04-07 11:21:13'),(583,27,'2015-04-07 11:23:21'),(584,27,'2015-04-07 11:24:40'),(585,27,'2015-04-07 11:25:38'),(586,27,'2015-04-07 11:26:01'),(587,27,'2015-04-07 11:26:10'),(588,27,'2015-04-07 11:36:23'),(589,27,'2015-04-07 11:36:30'),(590,27,'2015-04-07 11:36:36'),(591,27,'2015-04-07 11:46:12'),(592,27,'2015-04-07 11:48:56'),(593,27,'2015-04-07 11:59:37'),(594,27,'2015-04-07 12:01:18'),(595,27,'2015-04-07 12:02:15'),(596,27,'2015-04-07 12:06:54'),(597,27,'2015-04-07 12:08:36'),(598,27,'2015-04-07 12:08:53'),(599,27,'2015-04-07 12:09:37'),(600,27,'2015-04-07 12:11:13'),(601,27,'2015-04-07 12:14:28'),(602,27,'2015-04-07 12:15:05'),(603,27,'2015-04-07 12:28:23'),(604,27,'2015-04-07 12:28:53'),(605,27,'2015-04-07 12:30:25'),(606,27,'2015-04-07 12:33:32'),(607,27,'2015-04-07 12:33:34'),(608,27,'2015-04-07 13:02:23'),(609,27,'2015-04-07 13:02:55'),(610,27,'2015-04-07 13:14:12'),(611,27,'2015-04-07 13:15:32'),(612,27,'2015-04-07 13:18:21'),(613,27,'2015-04-07 13:18:43'),(614,27,'2015-04-07 13:21:05'),(615,27,'2015-04-07 13:21:55'),(616,27,'2015-04-07 13:23:01'),(617,27,'2015-04-07 13:24:20'),(618,27,'2015-04-07 13:28:11'),(619,27,'2015-04-07 13:29:01'),(620,27,'2015-04-07 13:29:18'),(621,27,'2015-04-07 13:30:41'),(622,27,'2015-04-07 13:31:36'),(623,27,'2015-04-07 13:31:41'),(624,27,'2015-04-07 13:31:42'),(625,27,'2015-04-07 13:31:43'),(626,27,'2015-04-07 13:32:17'),(627,27,'2015-04-07 13:36:52'),(628,27,'2015-04-07 13:47:59'),(629,27,'2015-04-07 13:49:34'),(630,27,'2015-04-07 13:50:06'),(631,27,'2015-04-07 13:55:39'),(632,27,'2015-04-07 13:57:34'),(633,27,'2015-04-07 14:58:00'),(634,27,'2015-04-07 15:38:58'),(635,27,'2015-04-07 15:41:27'),(636,28,'2015-04-07 16:19:30'),(637,28,'2015-04-07 16:21:18'),(638,27,'2015-04-07 17:52:38'),(639,27,'2015-04-07 17:53:45'),(640,27,'2015-04-07 17:58:11'),(641,27,'2015-04-07 17:58:28'),(642,27,'2015-04-07 17:59:14'),(643,27,'2015-04-07 18:00:16'),(644,27,'2015-04-07 18:00:59'),(645,27,'2015-04-07 18:01:30'),(646,27,'2015-04-07 18:02:19'),(647,27,'2015-04-07 18:09:35'),(648,27,'2015-04-07 18:10:26'),(649,27,'2015-04-07 18:11:43'),(650,27,'2015-04-07 18:12:24'),(651,27,'2015-04-07 18:22:08'),(652,27,'2015-04-07 18:22:20'),(653,27,'2015-04-07 18:29:06'),(654,27,'2015-04-07 18:31:02'),(655,27,'2015-04-07 18:32:10'),(656,27,'2015-04-07 18:33:27'),(657,27,'2015-04-07 18:33:58'),(658,27,'2015-04-07 18:34:50'),(659,27,'2015-04-07 18:35:35'),(660,27,'2015-04-07 18:36:05'),(661,27,'2015-04-07 18:37:15'),(662,27,'2015-04-07 18:37:45'),(663,27,'2015-04-07 18:38:00'),(664,27,'2015-04-07 18:38:11'),(665,27,'2015-04-07 18:38:13'),(666,27,'2015-04-07 18:38:16'),(667,27,'2015-04-07 18:38:32'),(668,27,'2015-04-07 18:40:06'),(669,27,'2015-04-07 18:41:30'),(670,27,'2015-04-07 19:07:47'),(671,27,'2015-04-07 19:10:06'),(672,29,'2015-04-07 19:12:10'),(673,29,'2015-04-07 19:12:18'),(674,29,'2015-04-07 19:12:26'),(675,29,'2015-04-07 19:12:30'),(676,29,'2015-04-07 19:12:38'),(677,29,'2015-04-07 19:12:44'),(678,29,'2015-04-07 19:12:54'),(679,29,'2015-04-07 19:12:58'),(680,29,'2015-04-07 19:13:05'),(681,29,'2015-04-07 19:13:16'),(682,29,'2015-04-07 19:13:21'),(683,29,'2015-04-07 19:13:36'),(684,27,'2015-04-07 19:15:29'),(685,27,'2015-04-07 19:15:57'),(686,27,'2015-04-07 19:19:08'),(687,27,'2015-04-07 19:19:26'),(688,27,'2015-04-07 19:19:44'),(689,27,'2015-04-07 19:20:24'),(690,27,'2015-04-07 19:23:59'),(691,29,'2015-04-07 19:27:59'),(692,29,'2015-04-07 19:28:12'),(693,29,'2015-04-07 19:28:59'),(694,27,'2015-04-07 19:29:02'),(695,29,'2015-04-07 19:29:03'),(696,29,'2015-04-07 19:29:07'),(697,29,'2015-04-07 19:29:11'),(698,27,'2015-04-07 19:29:11'),(699,29,'2015-04-07 19:29:13'),(700,29,'2015-04-07 19:29:14'),(701,27,'2015-04-07 19:29:17'),(702,29,'2015-04-07 19:29:21'),(703,27,'2015-04-07 19:29:24'),(704,29,'2015-04-07 19:29:25'),(705,27,'2015-04-07 19:32:24'),(706,27,'2015-04-07 19:32:29'),(707,27,'2015-04-07 19:32:50'),(708,27,'2015-04-07 19:34:23'),(709,27,'2015-04-07 19:34:41'),(710,27,'2015-04-07 19:35:17'),(711,27,'2015-04-07 19:35:32'),(712,27,'2015-04-07 19:38:04'),(713,27,'2015-04-07 19:38:12'),(714,27,'2015-04-07 19:38:24'),(715,30,'2015-04-08 09:51:07'),(716,30,'2015-04-08 10:30:16'),(717,30,'2015-04-08 10:30:21'),(718,30,'2015-04-08 10:30:41'),(719,30,'2015-04-08 10:30:45'),(720,30,'2015-04-08 10:30:58'),(721,30,'2015-04-08 10:31:07'),(722,30,'2015-04-08 10:34:35'),(723,30,'2015-04-08 10:34:40'),(724,30,'2015-04-08 10:34:49'),(725,30,'2015-04-08 10:34:50'),(726,30,'2015-04-08 10:34:51'),(727,30,'2015-04-08 10:34:58'),(728,30,'2015-04-08 10:35:25'),(729,30,'2015-04-08 10:35:49'),(730,30,'2015-04-08 10:35:55'),(731,30,'2015-04-08 10:36:01'),(732,30,'2015-04-08 10:36:05'),(733,30,'2015-04-08 10:36:10'),(734,30,'2015-04-08 10:36:26'),(735,30,'2015-04-08 10:36:32'),(736,30,'2015-04-08 10:36:38'),(737,30,'2015-04-08 10:36:40'),(738,30,'2015-04-08 10:36:42'),(739,30,'2015-04-08 10:36:59'),(740,30,'2015-04-08 10:37:06'),(741,30,'2015-04-08 10:37:43'),(742,30,'2015-04-08 10:37:49'),(743,30,'2015-04-08 10:37:57'),(744,30,'2015-04-08 10:38:38'),(745,30,'2015-04-08 10:38:43'),(746,30,'2015-04-08 10:38:47'),(747,30,'2015-04-08 10:38:52'),(748,30,'2015-04-08 10:39:27'),(749,30,'2015-04-08 10:39:32'),(750,30,'2015-04-08 10:39:39'),(751,30,'2015-04-08 10:40:37'),(752,30,'2015-04-08 10:40:42'),(753,30,'2015-04-08 10:40:47'),(754,30,'2015-04-08 10:40:53'),(755,30,'2015-04-08 10:41:13'),(756,30,'2015-04-08 10:41:27'),(757,30,'2015-04-08 10:42:51'),(758,30,'2015-04-08 10:44:24'),(759,30,'2015-04-08 10:45:13'),(760,30,'2015-04-08 11:16:53'),(761,30,'2015-04-08 11:16:59'),(762,31,'2015-04-08 11:17:15'),(763,31,'2015-04-08 11:17:20'),(764,31,'2015-04-08 11:17:25'),(765,31,'2015-04-08 11:17:33'),(766,31,'2015-04-08 11:17:41'),(767,30,'2015-04-08 11:18:48'),(768,30,'2015-04-08 11:19:29'),(769,30,'2015-04-08 11:21:16'),(770,30,'2015-04-08 11:25:57'),(771,30,'2015-04-08 11:26:27'),(772,30,'2015-04-08 11:26:40'),(773,30,'2015-04-08 11:28:28'),(774,30,'2015-04-08 11:29:20'),(775,30,'2015-04-08 11:35:53'),(776,30,'2015-04-08 11:36:40'),(777,30,'2015-04-08 11:37:12'),(778,30,'2015-04-08 11:37:59'),(779,30,'2015-04-08 11:38:28'),(780,30,'2015-04-08 11:44:03'),(781,30,'2015-04-08 11:45:30'),(782,30,'2015-04-08 11:46:03'),(783,30,'2015-04-08 11:48:11'),(784,30,'2015-04-08 11:48:59'),(785,30,'2015-04-08 11:49:28'),(786,30,'2015-04-08 11:49:43'),(787,30,'2015-04-08 11:51:44'),(788,30,'2015-04-08 11:51:50'),(789,30,'2015-04-08 12:11:16'),(790,30,'2015-04-08 12:21:35'),(791,30,'2015-04-08 12:23:40'),(792,30,'2015-04-08 12:25:14'),(793,30,'2015-04-08 12:26:44'),(794,30,'2015-04-08 12:27:20'),(795,30,'2015-04-08 12:48:15'),(796,30,'2015-04-08 12:48:17'),(797,30,'2015-04-08 12:48:26'),(798,30,'2015-04-08 12:48:28'),(799,30,'2015-04-08 12:49:19'),(800,30,'2015-04-08 12:53:17'),(801,30,'2015-04-08 12:53:25'),(802,30,'2015-04-08 12:53:43'),(803,30,'2015-04-08 12:57:31'),(804,30,'2015-04-08 13:09:14'),(805,30,'2015-04-08 13:13:42'),(806,30,'2015-04-08 13:17:49'),(807,30,'2015-04-08 13:19:06'),(808,30,'2015-04-08 13:19:25'),(809,30,'2015-04-08 13:33:24'),(810,30,'2015-04-08 13:33:46'),(811,30,'2015-04-08 13:34:04'),(812,30,'2015-04-08 13:34:32'),(813,30,'2015-04-08 13:38:38'),(814,30,'2015-04-08 13:39:21'),(815,30,'2015-04-08 13:42:07'),(816,30,'2015-04-08 13:43:13'),(817,30,'2015-04-08 13:47:54'),(818,30,'2015-04-08 13:49:00'),(819,30,'2015-04-08 13:52:49'),(820,30,'2015-04-08 13:56:10'),(821,30,'2015-04-08 13:58:52'),(822,30,'2015-04-08 14:26:55'),(823,30,'2015-04-08 14:28:23'),(824,30,'2015-04-08 14:29:10'),(825,30,'2015-04-08 14:30:36'),(826,30,'2015-04-08 14:33:10'),(827,30,'2015-04-08 14:37:19'),(828,30,'2015-04-08 14:38:00'),(829,30,'2015-04-08 14:38:47'),(830,30,'2015-04-08 14:39:12'),(831,30,'2015-04-08 15:27:48'),(832,30,'2015-04-08 15:28:08'),(833,30,'2015-04-08 15:28:17'),(834,30,'2015-04-08 15:44:58'),(835,30,'2015-04-08 15:46:45'),(836,30,'2015-04-08 15:48:01'),(837,30,'2015-04-08 15:48:26'),(838,30,'2015-04-08 15:49:09'),(839,30,'2015-04-08 15:49:18'),(840,30,'2015-04-08 15:51:00'),(841,30,'2015-04-08 15:53:25'),(842,30,'2015-04-08 15:55:18'),(843,30,'2015-04-08 15:56:43'),(844,30,'2015-04-08 15:58:05'),(845,30,'2015-04-08 16:01:08'),(846,30,'2015-04-08 16:03:24'),(847,30,'2015-04-08 16:08:29'),(848,30,'2015-04-08 16:13:20'),(849,30,'2015-04-08 16:14:12'),(850,30,'2015-04-08 16:17:10'),(851,30,'2015-04-08 16:22:00'),(852,30,'2015-04-08 16:29:18'),(853,30,'2015-04-08 16:30:43'),(854,30,'2015-04-08 16:38:55'),(855,30,'2015-04-08 16:39:48'),(856,30,'2015-04-08 16:40:39'),(857,30,'2015-04-08 16:43:30'),(858,30,'2015-04-08 16:44:18'),(859,30,'2015-04-08 16:45:02'),(860,30,'2015-04-08 17:01:49'),(861,30,'2015-04-08 17:01:59'),(862,30,'2015-04-08 17:06:19'),(863,30,'2015-04-08 17:06:27'),(864,30,'2015-04-08 17:07:10'),(865,30,'2015-04-08 17:07:40'),(866,30,'2015-04-08 17:07:56'),(867,30,'2015-04-08 17:15:34'),(868,30,'2015-04-08 17:16:46'),(869,30,'2015-04-08 17:17:55'),(870,30,'2015-04-08 17:20:55'),(871,30,'2015-04-08 17:21:36'),(872,30,'2015-04-08 17:26:24'),(873,30,'2015-04-08 17:30:21'),(874,30,'2015-04-08 17:31:30'),(875,30,'2015-04-08 17:31:46'),(876,30,'2015-04-08 17:33:38'),(877,30,'2015-04-08 17:38:02'),(878,30,'2015-04-08 17:38:52'),(879,30,'2015-04-08 17:39:47'),(880,30,'2015-04-08 17:39:58'),(881,30,'2015-04-08 17:40:33'),(882,30,'2015-04-08 17:42:15'),(883,30,'2015-04-08 17:45:37'),(884,30,'2015-04-08 17:46:16'),(885,30,'2015-04-08 17:48:42'),(886,30,'2015-04-08 17:48:54'),(887,30,'2015-04-08 17:49:29'),(888,30,'2015-04-08 17:49:49'),(889,30,'2015-04-08 17:52:36'),(890,30,'2015-04-08 17:53:15'),(891,30,'2015-04-08 17:53:54'),(892,30,'2015-04-08 17:54:06'),(893,30,'2015-04-08 17:54:59'),(894,30,'2015-04-08 17:55:30'),(895,30,'2015-04-08 17:57:13'),(896,30,'2015-04-08 17:57:21'),(897,30,'2015-04-08 17:57:36'),(898,30,'2015-04-08 17:59:36'),(899,30,'2015-04-08 17:59:45'),(900,30,'2015-04-08 18:00:32'),(901,30,'2015-04-08 18:00:55'),(902,30,'2015-04-08 18:03:15'),(903,30,'2015-04-08 18:03:51'),(904,30,'2015-04-08 18:06:04'),(905,30,'2015-04-08 18:06:16'),(906,30,'2015-04-08 18:06:17'),(907,30,'2015-04-08 18:06:19'),(908,30,'2015-04-08 18:06:37'),(909,30,'2015-04-08 18:19:19'),(910,30,'2015-04-08 18:19:31'),(911,30,'2015-04-08 18:19:51'),(912,30,'2015-04-08 18:20:02'),(913,30,'2015-04-08 18:20:38'),(914,30,'2015-04-08 18:24:42'),(915,30,'2015-04-08 18:25:37'),(916,30,'2015-04-08 18:25:56'),(917,30,'2015-04-08 18:27:14'),(918,30,'2015-04-08 18:29:05'),(919,30,'2015-04-08 18:33:12'),(920,30,'2015-04-08 18:33:58'),(921,30,'2015-04-08 18:36:13'),(922,30,'2015-04-08 18:37:05'),(923,30,'2015-04-08 18:37:06'),(924,30,'2015-04-08 18:38:15'),(925,30,'2015-04-08 18:39:03'),(926,30,'2015-04-08 18:41:13'),(927,30,'2015-04-08 18:43:06'),(928,30,'2015-04-08 18:43:23'),(929,30,'2015-04-08 18:46:36'),(930,30,'2015-04-08 18:47:17'),(931,30,'2015-04-08 18:50:24'),(932,30,'2015-04-08 18:50:47'),(933,30,'2015-04-08 18:51:52'),(934,30,'2015-04-08 18:52:46'),(935,30,'2015-04-08 18:54:02'),(936,30,'2015-04-08 18:55:35'),(937,31,'2015-04-08 18:56:33'),(938,31,'2015-04-08 18:56:39'),(939,31,'2015-04-08 18:57:29'),(940,30,'2015-04-08 18:58:29'),(941,30,'2015-04-08 18:58:54'),(942,30,'2015-04-08 18:58:56'),(943,30,'2015-04-08 18:58:58'),(944,30,'2015-04-08 18:59:00'),(945,30,'2015-04-08 18:59:02'),(946,30,'2015-04-08 18:59:04'),(947,30,'2015-04-08 18:59:56'),(948,30,'2015-04-08 19:02:25'),(949,30,'2015-04-08 19:04:30'),(950,30,'2015-04-08 19:06:59'),(951,30,'2015-04-08 19:08:21'),(952,30,'2015-04-08 19:09:10'),(953,30,'2015-04-08 19:09:35'),(954,30,'2015-04-08 19:10:03'),(955,30,'2015-04-08 19:10:25'),(956,30,'2015-04-08 19:10:41'),(957,30,'2015-04-08 19:11:16'),(958,30,'2015-04-08 19:11:35'),(959,30,'2015-04-08 19:11:43'),(960,30,'2015-04-08 19:17:39'),(961,30,'2015-04-08 19:18:08'),(962,30,'2015-04-08 19:18:23'),(963,30,'2015-04-08 19:18:53'),(964,30,'2015-04-08 19:19:43'),(965,30,'2015-04-08 19:20:51'),(966,30,'2015-04-08 19:21:32'),(967,32,'2015-04-09 09:46:38'),(968,33,'2015-04-09 09:46:38'),(969,32,'2015-04-09 10:46:34'),(970,32,'2015-04-09 10:47:03'),(971,32,'2015-04-09 10:47:34'),(972,32,'2015-04-09 10:47:36'),(973,32,'2015-04-09 10:51:56'),(974,32,'2015-04-09 10:52:40'),(975,32,'2015-04-09 10:53:56'),(976,34,'2015-04-09 10:55:49'),(977,34,'2015-04-09 10:58:45'),(978,32,'2015-04-09 11:23:06'),(979,32,'2015-04-09 11:26:44'),(980,32,'2015-04-09 11:27:24'),(981,32,'2015-04-09 11:47:27'),(982,32,'2015-04-09 11:49:31'),(983,32,'2015-04-09 11:50:29'),(984,32,'2015-04-09 11:53:47'),(985,32,'2015-04-09 11:54:32'),(986,32,'2015-04-09 11:55:16'),(987,32,'2015-04-09 11:56:03'),(988,32,'2015-04-09 12:00:35'),(989,32,'2015-04-09 12:07:33'),(990,32,'2015-04-09 12:14:37'),(991,35,'2015-04-09 12:34:17'),(992,36,'2015-04-09 12:34:38'),(993,36,'2015-04-09 12:35:34'),(994,36,'2015-04-09 12:35:41'),(995,36,'2015-04-09 12:35:43'),(996,36,'2015-04-09 12:50:58'),(997,36,'2015-04-09 12:58:19'),(998,36,'2015-04-09 13:04:19'),(999,36,'2015-04-09 13:10:52'),(1000,36,'2015-04-09 13:11:36'),(1001,36,'2015-04-09 13:14:24'),(1002,36,'2015-04-09 13:14:44'),(1003,36,'2015-04-09 13:15:37'),(1004,36,'2015-04-09 13:16:03'),(1005,36,'2015-04-09 13:17:08'),(1006,36,'2015-04-09 13:20:32'),(1007,36,'2015-04-09 13:21:18'),(1008,36,'2015-04-09 13:24:32'),(1009,36,'2015-04-09 13:24:55'),(1010,36,'2015-04-09 13:28:26'),(1011,36,'2015-04-09 13:29:02'),(1012,36,'2015-04-09 13:29:49'),(1013,36,'2015-04-09 13:30:56'),(1014,36,'2015-04-09 13:31:42'),(1015,36,'2015-04-09 13:34:16'),(1016,36,'2015-04-09 13:34:42'),(1017,36,'2015-04-09 13:35:20'),(1018,36,'2015-04-09 13:37:41'),(1019,36,'2015-04-09 13:38:17'),(1020,36,'2015-04-09 13:38:59'),(1021,36,'2015-04-09 13:55:20'),(1022,36,'2015-04-09 14:14:08'),(1023,36,'2015-04-09 14:15:34'),(1024,36,'2015-04-09 14:16:57'),(1025,37,'2015-04-09 14:18:53'),(1026,37,'2015-04-09 14:19:06'),(1027,36,'2015-04-09 15:14:35'),(1028,36,'2015-04-09 15:15:48'),(1029,36,'2015-04-09 15:40:15'),(1030,36,'2015-04-09 15:52:56'),(1031,36,'2015-04-09 16:00:44'),(1032,36,'2015-04-09 16:01:46'),(1033,36,'2015-04-09 16:07:17'),(1034,36,'2015-04-09 16:07:47'),(1035,36,'2015-04-09 16:08:56'),(1036,36,'2015-04-09 16:10:07'),(1037,36,'2015-04-09 16:10:48'),(1038,36,'2015-04-09 16:28:58'),(1039,36,'2015-04-09 16:30:54'),(1040,37,'2015-04-09 16:32:03'),(1041,37,'2015-04-09 16:32:10'),(1042,37,'2015-04-09 16:32:12'),(1043,37,'2015-04-09 16:32:14'),(1044,37,'2015-04-09 16:32:16'),(1045,37,'2015-04-09 16:33:08'),(1046,36,'2015-04-09 16:37:24'),(1047,36,'2015-04-09 16:39:40'),(1048,36,'2015-04-09 16:41:05'),(1049,36,'2015-04-09 16:41:29'),(1050,36,'2015-04-09 16:42:41'),(1051,36,'2015-04-09 16:43:59'),(1052,36,'2015-04-09 16:44:42'),(1053,36,'2015-04-09 16:45:06'),(1054,36,'2015-04-09 16:45:57'),(1055,36,'2015-04-09 16:46:18'),(1056,36,'2015-04-09 16:47:09'),(1057,37,'2015-04-09 16:47:49'),(1058,37,'2015-04-09 16:47:54'),(1059,37,'2015-04-09 16:48:10'),(1060,36,'2015-04-09 16:53:29'),(1061,36,'2015-04-09 16:54:27'),(1062,36,'2015-04-09 16:56:59'),(1063,36,'2015-04-09 16:58:00'),(1064,36,'2015-04-09 17:03:28'),(1065,36,'2015-04-09 17:05:02'),(1066,36,'2015-04-09 17:05:10'),(1067,36,'2015-04-09 17:08:58'),(1068,36,'2015-04-09 17:09:41'),(1069,36,'2015-04-09 17:10:58'),(1070,36,'2015-04-09 17:11:05'),(1071,36,'2015-04-09 17:29:36'),(1072,36,'2015-04-09 17:29:43'),(1073,36,'2015-04-09 17:30:33'),(1074,36,'2015-04-09 17:31:08'),(1075,36,'2015-04-09 17:31:19'),(1076,36,'2015-04-09 17:31:29'),(1077,36,'2015-04-09 17:31:39'),(1078,36,'2015-04-09 17:32:25'),(1079,36,'2015-04-09 17:33:02'),(1080,36,'2015-04-09 17:40:10'),(1081,36,'2015-04-09 17:40:12'),(1082,36,'2015-04-09 17:43:26'),(1083,36,'2015-04-09 17:43:28'),(1084,36,'2015-04-09 17:49:55'),(1085,36,'2015-04-09 17:50:09'),(1086,37,'2015-04-09 18:07:53'),(1087,36,'2015-04-09 18:14:49'),(1088,36,'2015-04-09 18:18:04'),(1089,36,'2015-04-09 18:19:18'),(1090,36,'2015-04-09 18:19:57'),(1091,36,'2015-04-09 18:22:47'),(1092,36,'2015-04-09 18:23:15'),(1093,36,'2015-04-09 18:23:34'),(1094,36,'2015-04-09 18:41:40'),(1095,36,'2015-04-09 18:41:42'),(1096,36,'2015-04-09 18:43:16'),(1097,36,'2015-04-09 18:45:40'),(1098,36,'2015-04-09 18:49:57'),(1099,36,'2015-04-09 18:52:29'),(1100,36,'2015-04-09 19:01:44'),(1101,36,'2015-04-09 19:04:15'),(1102,36,'2015-04-09 19:04:23'),(1103,36,'2015-04-09 19:04:45'),(1104,38,'2015-04-10 10:31:07'),(1105,38,'2015-04-10 11:03:12'),(1106,38,'2015-04-10 11:11:42'),(1107,38,'2015-04-10 11:13:15'),(1108,38,'2015-04-10 11:21:36'),(1109,38,'2015-04-10 11:24:28'),(1110,38,'2015-04-10 11:24:55'),(1111,38,'2015-04-10 11:37:39'),(1112,38,'2015-04-10 11:38:16'),(1113,38,'2015-04-10 11:38:19'),(1114,38,'2015-04-10 11:38:31'),(1115,38,'2015-04-10 11:38:48'),(1116,38,'2015-04-10 11:38:51'),(1117,38,'2015-04-10 11:48:30'),(1118,38,'2015-04-10 11:49:44'),(1119,38,'2015-04-10 11:55:44'),(1120,38,'2015-04-10 11:58:21'),(1121,38,'2015-04-10 11:59:23'),(1122,38,'2015-04-10 12:00:42'),(1123,38,'2015-04-10 12:02:32'),(1124,38,'2015-04-10 12:05:13'),(1125,38,'2015-04-10 12:06:25'),(1126,38,'2015-04-10 12:25:51'),(1127,38,'2015-04-10 12:27:00'),(1128,38,'2015-04-10 12:40:37'),(1129,38,'2015-04-10 12:41:14'),(1130,38,'2015-04-10 12:50:42'),(1131,38,'2015-04-10 12:51:25'),(1132,38,'2015-04-10 12:51:27'),(1133,38,'2015-04-10 12:55:17'),(1134,38,'2015-04-10 12:56:38'),(1135,38,'2015-04-10 12:56:39'),(1136,38,'2015-04-10 12:57:58'),(1137,38,'2015-04-10 12:58:37'),(1138,38,'2015-04-10 12:59:09'),(1139,38,'2015-04-10 13:02:14'),(1140,38,'2015-04-10 13:06:06'),(1141,38,'2015-04-10 13:07:19'),(1142,38,'2015-04-10 13:08:33'),(1143,38,'2015-04-10 13:42:39'),(1144,38,'2015-04-10 13:43:12'),(1145,38,'2015-04-10 13:43:43'),(1146,38,'2015-04-10 13:47:12'),(1147,38,'2015-04-10 13:48:20'),(1148,38,'2015-04-10 13:53:49'),(1149,38,'2015-04-10 13:56:52'),(1150,38,'2015-04-10 13:57:38'),(1151,38,'2015-04-10 14:00:20'),(1152,38,'2015-04-10 14:00:50'),(1153,38,'2015-04-10 14:01:28'),(1154,38,'2015-04-10 14:02:17'),(1155,38,'2015-04-10 14:06:46'),(1156,38,'2015-04-10 14:12:17'),(1157,38,'2015-04-10 14:14:10'),(1158,38,'2015-04-10 14:15:19'),(1159,38,'2015-04-10 14:15:35'),(1160,38,'2015-04-10 14:16:18'),(1161,38,'2015-04-10 14:17:40'),(1162,38,'2015-04-10 14:18:04'),(1163,38,'2015-04-10 14:20:44'),(1164,38,'2015-04-10 14:21:28'),(1165,38,'2015-04-10 14:21:39'),(1166,38,'2015-04-10 16:56:04'),(1167,38,'2015-04-10 17:43:16'),(1168,38,'2015-04-10 17:43:19'),(1169,38,'2015-04-10 17:46:36'),(1170,38,'2015-04-10 17:47:12'),(1171,38,'2015-04-10 17:52:01'),(1172,38,'2015-04-10 17:54:35'),(1173,38,'2015-04-10 17:54:38'),(1174,38,'2015-04-10 18:04:15'),(1175,38,'2015-04-10 18:05:14'),(1176,38,'2015-04-10 18:10:01'),(1177,38,'2015-04-10 18:11:14'),(1178,38,'2015-04-10 18:11:16'),(1179,38,'2015-04-10 18:12:21'),(1180,38,'2015-04-10 18:12:23'),(1181,38,'2015-04-10 18:14:46'),(1182,38,'2015-04-10 18:35:51'),(1183,38,'2015-04-10 18:36:41'),(1184,38,'2015-04-10 18:36:43'),(1185,38,'2015-04-10 18:37:10'),(1186,38,'2015-04-10 18:38:13'),(1187,38,'2015-04-10 18:38:38'),(1188,38,'2015-04-10 18:39:55'),(1189,38,'2015-04-10 18:44:45'),(1190,38,'2015-04-10 18:44:47'),(1191,38,'2015-04-10 18:44:49'),(1192,38,'2015-04-10 18:44:51'),(1193,38,'2015-04-10 18:44:52'),(1194,38,'2015-04-10 18:44:54'),(1195,38,'2015-04-10 18:44:56'),(1196,38,'2015-04-10 18:44:58'),(1197,38,'2015-04-10 18:45:00'),(1198,38,'2015-04-10 18:45:01'),(1199,38,'2015-04-10 18:45:03'),(1200,38,'2015-04-10 18:45:05'),(1201,38,'2015-04-10 18:45:07'),(1202,38,'2015-04-10 18:45:10'),(1203,38,'2015-04-10 18:45:12'),(1204,38,'2015-04-10 18:52:18'),(1205,38,'2015-04-10 18:52:55'),(1206,38,'2015-04-10 18:55:26'),(1207,38,'2015-04-10 18:56:34'),(1208,38,'2015-04-10 18:59:35'),(1209,38,'2015-04-10 19:00:32'),(1210,38,'2015-04-10 19:01:05'),(1211,38,'2015-04-10 19:05:23'),(1212,38,'2015-04-10 19:17:13'),(1213,38,'2015-04-10 19:28:30'),(1214,38,'2015-04-10 19:34:43'),(1215,38,'2015-04-10 19:36:28'),(1216,38,'2015-04-10 19:37:01'),(1217,38,'2015-04-10 19:37:24'),(1218,38,'2015-04-10 19:39:02'),(1219,38,'2015-04-10 19:39:17'),(1220,38,'2015-04-10 19:39:59'),(1221,38,'2015-04-10 19:48:30'),(1222,38,'2015-04-10 19:50:08'),(1223,38,'2015-04-10 19:50:47'),(1224,38,'2015-04-10 19:52:03'),(1225,38,'2015-04-10 19:59:41'),(1226,38,'2015-04-10 20:01:50'),(1227,38,'2015-04-10 20:02:24'),(1228,38,'2015-04-10 20:03:39'),(1229,38,'2015-04-10 20:04:07'),(1230,38,'2015-04-10 20:04:21'),(1231,38,'2015-04-10 20:04:52'),(1232,38,'2015-04-10 20:05:16'),(1233,38,'2015-04-10 20:05:46'),(1234,38,'2015-04-10 20:06:57'),(1235,38,'2015-04-10 20:07:19'),(1236,38,'2015-04-10 20:08:18'),(1237,39,'2015-04-13 09:44:45'),(1238,39,'2015-04-13 10:01:04'),(1239,39,'2015-04-13 10:05:54'),(1240,39,'2015-04-13 10:06:11'),(1241,39,'2015-04-13 10:06:19'),(1242,39,'2015-04-13 10:06:20'),(1243,39,'2015-04-13 10:06:49'),(1244,39,'2015-04-13 10:06:50'),(1245,39,'2015-04-13 10:19:26'),(1246,39,'2015-04-13 10:19:27'),(1247,39,'2015-04-13 10:20:10'),(1248,39,'2015-04-13 10:20:11'),(1249,39,'2015-04-13 10:20:34'),(1250,39,'2015-04-13 10:20:34'),(1251,39,'2015-04-13 10:20:54'),(1252,39,'2015-04-13 10:20:54'),(1253,39,'2015-04-13 10:21:05'),(1254,39,'2015-04-13 10:21:06'),(1255,39,'2015-04-13 10:21:14'),(1256,39,'2015-04-13 10:21:15'),(1257,39,'2015-04-13 10:23:16'),(1258,39,'2015-04-13 10:32:37'),(1259,39,'2015-04-13 10:33:25'),(1260,39,'2015-04-13 10:34:02'),(1261,39,'2015-04-13 10:35:09'),(1262,39,'2015-04-13 10:36:05'),(1263,39,'2015-04-13 10:36:06'),(1264,39,'2015-04-13 10:36:50'),(1265,39,'2015-04-13 10:38:07'),(1266,39,'2015-04-13 10:39:55'),(1267,39,'2015-04-13 10:40:39'),(1268,39,'2015-04-13 10:42:02'),(1269,39,'2015-04-13 10:43:50'),(1270,39,'2015-04-13 10:44:26'),(1271,39,'2015-04-13 10:45:05'),(1272,39,'2015-04-13 10:45:28'),(1273,39,'2015-04-13 10:45:51'),(1274,39,'2015-04-13 10:46:14'),(1275,39,'2015-04-13 10:46:49'),(1276,39,'2015-04-13 10:47:59'),(1277,39,'2015-04-13 10:51:07'),(1278,39,'2015-04-13 10:51:34'),(1279,39,'2015-04-13 10:53:30'),(1280,39,'2015-04-13 10:53:46'),(1281,39,'2015-04-13 10:53:57'),(1282,39,'2015-04-13 10:55:09'),(1283,39,'2015-04-13 11:01:46'),(1284,39,'2015-04-13 11:02:18'),(1285,39,'2015-04-13 11:03:08'),(1286,39,'2015-04-13 11:03:53'),(1287,39,'2015-04-13 11:04:57'),(1288,39,'2015-04-13 11:07:49'),(1289,39,'2015-04-13 11:08:19'),(1290,39,'2015-04-13 11:13:35'),(1291,39,'2015-04-13 11:17:41'),(1292,39,'2015-04-13 11:20:12'),(1293,39,'2015-04-13 11:21:37'),(1294,39,'2015-04-13 11:22:35'),(1295,40,'2015-04-13 11:25:14'),(1296,40,'2015-04-13 11:26:22'),(1297,39,'2015-04-13 11:35:53'),(1298,39,'2015-04-13 11:50:03'),(1299,39,'2015-04-13 11:50:14'),(1300,39,'2015-04-13 11:52:07'),(1301,39,'2015-04-13 11:53:16'),(1302,39,'2015-04-13 11:55:10'),(1303,39,'2015-04-13 11:55:18'),(1304,39,'2015-04-13 11:55:47'),(1305,40,'2015-04-13 12:00:43'),(1306,40,'2015-04-13 12:00:58'),(1307,40,'2015-04-13 12:01:13'),(1308,39,'2015-04-13 12:16:08'),(1309,39,'2015-04-13 12:16:33'),(1310,40,'2015-04-13 12:20:18'),(1311,40,'2015-04-13 12:21:13'),(1312,40,'2015-04-13 12:23:01'),(1313,40,'2015-04-13 12:25:53'),(1314,40,'2015-04-13 12:28:54'),(1315,40,'2015-04-13 12:29:01'),(1316,39,'2015-04-13 12:30:34'),(1317,39,'2015-04-13 12:32:32'),(1318,39,'2015-04-13 12:33:30'),(1319,39,'2015-04-13 12:40:33'),(1320,39,'2015-04-13 12:55:56'),(1321,39,'2015-04-13 12:56:33'),(1322,39,'2015-04-13 12:57:58'),(1323,39,'2015-04-13 12:58:44'),(1324,39,'2015-04-13 13:07:50'),(1325,39,'2015-04-13 13:10:01'),(1326,39,'2015-04-13 13:11:01'),(1327,39,'2015-04-13 13:11:11'),(1328,39,'2015-04-13 13:11:35'),(1329,39,'2015-04-13 13:13:05'),(1330,39,'2015-04-13 14:57:02'),(1331,39,'2015-04-13 14:59:05'),(1332,39,'2015-04-13 15:13:24'),(1333,39,'2015-04-13 15:14:23'),(1334,39,'2015-04-13 15:15:02'),(1335,39,'2015-04-13 15:16:33'),(1336,39,'2015-04-13 15:17:01'),(1337,39,'2015-04-13 15:18:02'),(1338,39,'2015-04-13 15:18:52'),(1339,39,'2015-04-13 15:19:22'),(1340,39,'2015-04-13 15:19:55'),(1341,39,'2015-04-13 15:20:59'),(1342,39,'2015-04-13 15:22:58'),(1343,39,'2015-04-13 15:26:09'),(1344,39,'2015-04-13 15:26:35'),(1345,39,'2015-04-13 15:27:39'),(1346,39,'2015-04-13 15:28:01'),(1347,39,'2015-04-13 15:28:29'),(1348,39,'2015-04-13 15:29:00'),(1349,39,'2015-04-13 15:29:26'),(1350,39,'2015-04-13 15:29:46'),(1351,39,'2015-04-13 15:30:31'),(1352,39,'2015-04-13 15:31:30'),(1353,39,'2015-04-13 15:32:37'),(1354,39,'2015-04-13 15:36:30'),(1355,39,'2015-04-13 15:36:56'),(1356,39,'2015-04-13 15:37:19'),(1357,39,'2015-04-13 15:37:48'),(1358,39,'2015-04-13 15:39:17'),(1359,39,'2015-04-13 15:40:27'),(1360,39,'2015-04-13 15:41:37'),(1361,39,'2015-04-13 15:41:53'),(1362,39,'2015-04-13 15:42:08'),(1363,39,'2015-04-13 15:43:28'),(1364,39,'2015-04-13 15:44:23'),(1365,39,'2015-04-13 15:46:19'),(1366,39,'2015-04-13 15:46:26'),(1367,39,'2015-04-13 15:46:54'),(1368,39,'2015-04-13 15:47:02'),(1369,39,'2015-04-13 15:49:10'),(1370,39,'2015-04-13 15:50:42'),(1371,39,'2015-04-13 15:51:36'),(1372,39,'2015-04-13 15:52:18'),(1373,39,'2015-04-13 15:53:52'),(1374,39,'2015-04-13 15:54:01'),(1375,39,'2015-04-13 15:55:15'),(1376,39,'2015-04-13 15:59:41'),(1377,39,'2015-04-13 15:59:54'),(1378,39,'2015-04-13 16:00:47'),(1379,39,'2015-04-13 16:02:52'),(1380,39,'2015-04-13 16:04:50'),(1381,39,'2015-04-13 16:05:18'),(1382,39,'2015-04-13 16:05:44'),(1383,39,'2015-04-13 16:06:31'),(1384,39,'2015-04-13 16:07:55'),(1385,39,'2015-04-13 16:08:30'),(1386,39,'2015-04-13 16:09:27'),(1387,39,'2015-04-13 16:20:23'),(1388,39,'2015-04-13 16:22:41'),(1389,39,'2015-04-13 16:23:54'),(1390,39,'2015-04-13 16:24:21'),(1391,39,'2015-04-13 16:24:47'),(1392,39,'2015-04-13 16:25:12'),(1393,39,'2015-04-13 16:25:31'),(1394,39,'2015-04-13 16:28:16'),(1395,39,'2015-04-13 16:29:46'),(1396,39,'2015-04-13 16:31:19'),(1397,39,'2015-04-13 16:32:52'),(1398,39,'2015-04-13 16:46:28'),(1399,39,'2015-04-13 16:46:37'),(1400,39,'2015-04-13 16:47:59'),(1401,39,'2015-04-13 16:55:27'),(1402,39,'2015-04-13 16:56:00'),(1403,39,'2015-04-13 16:56:43'),(1404,39,'2015-04-13 16:57:27'),(1405,39,'2015-04-13 16:57:55'),(1406,39,'2015-04-13 16:58:20'),(1407,39,'2015-04-13 17:00:35'),(1408,39,'2015-04-13 17:02:01'),(1409,39,'2015-04-13 17:02:07'),(1410,39,'2015-04-13 17:03:16'),(1411,39,'2015-04-13 17:04:11'),(1412,39,'2015-04-13 17:05:01'),(1413,39,'2015-04-13 17:05:17'),(1414,39,'2015-04-13 17:05:48'),(1415,39,'2015-04-13 17:07:02'),(1416,39,'2015-04-13 17:07:04'),(1417,39,'2015-04-13 17:07:33'),(1418,39,'2015-04-13 17:07:34'),(1419,39,'2015-04-13 17:07:37'),(1420,39,'2015-04-13 17:07:39'),(1421,39,'2015-04-13 17:07:41'),(1422,39,'2015-04-13 17:07:43'),(1423,39,'2015-04-13 17:07:44'),(1424,39,'2015-04-13 17:07:46'),(1425,39,'2015-04-13 17:07:48'),(1426,39,'2015-04-13 17:08:24'),(1427,39,'2015-04-13 17:08:33'),(1428,39,'2015-04-13 17:08:41'),(1429,39,'2015-04-13 17:08:42'),(1430,39,'2015-04-13 17:08:44'),(1431,39,'2015-04-13 17:08:46'),(1432,39,'2015-04-13 17:08:48'),(1433,39,'2015-04-13 17:10:19'),(1434,39,'2015-04-13 17:10:40'),(1435,39,'2015-04-13 17:10:42'),(1436,39,'2015-04-13 17:10:53'),(1437,39,'2015-04-13 17:10:55'),(1438,39,'2015-04-13 17:11:13'),(1439,39,'2015-04-13 17:12:35'),(1440,39,'2015-04-13 17:12:57'),(1441,39,'2015-04-13 17:13:49'),(1442,39,'2015-04-13 17:17:26'),(1443,39,'2015-04-13 17:17:28'),(1444,39,'2015-04-13 17:19:02'),(1445,39,'2015-04-13 17:19:04'),(1446,39,'2015-04-13 17:19:55'),(1447,39,'2015-04-13 17:21:42'),(1448,39,'2015-04-13 17:22:49'),(1449,39,'2015-04-13 17:23:40'),(1450,39,'2015-04-13 17:24:35'),(1451,41,'2015-04-13 17:27:44'),(1452,39,'2015-04-13 17:29:28'),(1453,39,'2015-04-13 17:30:53'),(1454,39,'2015-04-13 17:32:08'),(1455,39,'2015-04-13 17:32:33'),(1456,39,'2015-04-13 17:32:56'),(1457,39,'2015-04-13 17:33:38'),(1458,39,'2015-04-13 17:34:43'),(1459,39,'2015-04-13 17:36:12'),(1460,39,'2015-04-13 17:36:32'),(1461,39,'2015-04-13 17:37:10'),(1462,39,'2015-04-13 17:38:57'),(1463,39,'2015-04-13 17:39:47'),(1464,39,'2015-04-13 17:41:49'),(1465,39,'2015-04-13 17:43:31'),(1466,39,'2015-04-13 17:44:22'),(1467,39,'2015-04-13 17:45:26'),(1468,39,'2015-04-13 17:45:56'),(1469,39,'2015-04-13 17:48:11'),(1470,42,'2015-04-14 10:25:30'),(1471,42,'2015-04-14 10:30:34'),(1472,42,'2015-04-14 10:30:37'); /*!40000 ALTER TABLE `log_url` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_url_info` -- DROP TABLE IF EXISTS `log_url_info`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `log_url_info` ( `url_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'URL ID', `url` varchar(255) default NULL COMMENT 'URL', `referer` varchar(255) default NULL COMMENT 'Referrer', PRIMARY KEY (`url_id`) ) ENGINE=MyISAM AUTO_INCREMENT=1473 DEFAULT CHARSET=utf8 COMMENT='Log URL Info Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `log_url_info` -- LOCK TABLES `log_url_info` WRITE; /*!40000 ALTER TABLE `log_url_info` DISABLE KEYS */; INSERT INTO `log_url_info` VALUES (1,'http://localhost/project1.com/',NULL),(2,'http://localhost/project1.com/',NULL),(3,'http://localhost/project1.com/?___store=spanish&___from_store=english','http://localhost/project1.com/'),(4,'http://localhost/project1.com/?___store=spanish&___from_store=english','http://localhost/project1.com/'),(5,'http://localhost/project1.com/',NULL),(6,'http://localhost/project1.com/',NULL),(7,'http://localhost/project1.com/',NULL),(8,'http://localhost/project1.com/',NULL),(9,'http://localhost/project1.com/',NULL),(10,'http://localhost/project1.com/?___store=spanish&___from_store=english','http://localhost/project1.com/'),(11,'http://localhost/project1.com/?___store=russian&___from_store=spanish','http://localhost/project1.com/?___store=spanish&___from_store=english'),(12,'http://localhost/project1.com/?___store=spanish&___from_store=russian','http://localhost/project1.com/?___store=russian&___from_store=spanish'),(13,'http://localhost/project1.com/?___store=spanish&___from_store=russian','http://localhost/project1.com/?___store=russian&___from_store=spanish'),(14,'http://localhost/project1.com/?___store=english&___from_store=spanish','http://localhost/project1.com/?___store=spanish&___from_store=russian'),(15,'http://localhost/project1.com/?___store=english&___from_store=spanish','http://localhost/project1.com/?___store=spanish&___from_store=russian'),(16,'http://localhost/project1.com/?___store=english&___from_store=spanish','http://localhost/project1.com/?___store=spanish&___from_store=russian'),(17,'http://localhost/project1.com/?___store=english&___from_store=spanish','http://localhost/project1.com/?___store=spanish&___from_store=russian'),(18,'http://localhost/project1.com/?___store=english&___from_store=spanish','http://localhost/project1.com/?___store=spanish&___from_store=russian'),(19,'http://localhost/project1.com/?___store=english&___from_store=spanish','http://localhost/project1.com/?___store=spanish&___from_store=russian'),(20,'http://localhost/project1.com/?___store=english&___from_store=spanish','http://localhost/project1.com/?___store=spanish&___from_store=russian'),(21,'http://localhost/project1.com/?___store=english&___from_store=spanish','http://localhost/project1.com/?___store=spanish&___from_store=russian'),(22,'http://localhost/project1.com/index.php/about-magento-demo-store',NULL),(23,'http://localhost/project1.com/','http://localhost/project1.com/index.php/about-magento-demo-store'),(24,'http://localhost/project1.com/','http://localhost/project1.com/index.php/about-magento-demo-store'),(25,'http://localhost/project1.com/index.php/customer-service',NULL),(26,'http://localhost/project1.com/','http://localhost/project1.com/index.php/customer-service'),(27,'http://localhost/project1.com/','http://localhost/project1.com/index.php/customer-service'),(28,'http://localhost/project1.com/index.php/about-magento-demo-store','http://localhost/project1.com/'),(29,'http://localhost/project1.com/','http://localhost/project1.com/index.php/customer-service'),(30,'http://localhost/project1.com/index.php/catalogsearch/advanced/','http://localhost/project1.com/'),(31,'http://localhost/project1.com/','http://localhost/project1.com/index.php/customer-service'),(32,'http://localhost/project1.com/index.php/about-magento-demo-store','http://localhost/project1.com/'),(33,'http://localhost/project1.com/index.php/','http://localhost/project1.com/index.php/about-magento-demo-store'),(34,'http://localhost/bookstore.com/index.php/','http://localhost/bookstore.com/index.php/install/wizard/end/'),(35,'http://localhost/bookstore.com/',NULL),(36,'http://localhost/bookstore.com/',NULL),(37,'http://localhost/bookstore.com/','http://localhost/bookstore.com/'),(38,'http://localhost/bookstore.com/catalog/category/view/id/13','http://localhost/bookstore.com/'),(39,'http://localhost/bookstore.com/catalog/category/view/id/13','http://localhost/bookstore.com/cd-dvd.html'),(40,'http://localhost/bookstore.com/catalog/category/view/id/3','http://localhost/bookstore.com/cd-dvd.html?___store=russian&___from_store=english'),(41,'http://localhost/bookstore.com/catalog/product/view/id/1','http://localhost/bookstore.com/books.html'),(42,'http://localhost/bookstore.com/catalog/product/view/id/1','http://localhost/bookstore.com/after-ever-happy.html'),(43,'http://localhost/bookstore.com/catalog/product/view/id/1','http://localhost/bookstore.com/after-ever-happy.html?___store=russian&___from_store=russian'),(44,'http://localhost/bookstore.com/catalog/product/view/id/1','http://localhost/bookstore.com/after-ever-happy.html?___store=russian&___from_store=russian'),(45,'http://localhost/bookstore.com/catalog/category/view/id/3','http://localhost/bookstore.com/after-ever-happy.html?___store=english&___from_store=russian'),(46,'http://localhost/bookstore.com/catalog/product/view/id/2','http://localhost/bookstore.com/books.html'),(47,'http://localhost/bookstore.com/catalog/category/view/id/11','http://localhost/bookstore.com/apples-and-pumpkins.html'),(48,'http://localhost/bookstore.com/catalog/product/view/id/1','http://localhost/bookstore.com/magazines.html'),(49,'http://localhost/bookstore.com/catalog/category/view/id/3','http://localhost/bookstore.com/after-ever-happy.html'),(50,'http://localhost/bookstore.com/catalog/product/view/id/9','http://localhost/bookstore.com/books.html'),(51,'http://localhost/bookstore.com/ajaxlogin/ajax/index/','http://localhost/bookstore.com/lost-lake-a-novel.html'),(52,'http://localhost/bookstore.com/catalog/product/view/id/9','http://localhost/bookstore.com/books.html'),(53,'http://localhost/bookstore.com/review/product/list/id/9/category/3/','http://localhost/bookstore.com/lost-lake-a-novel.html'),(54,'http://localhost/bookstore.com/review/product/post/id/9/','http://localhost/bookstore.com/review/product/list/id/9/category/3/'),(55,'http://localhost/bookstore.com/review/product/list/id/9/category/3/','http://localhost/bookstore.com/review/product/list/id/9/category/3/'),(56,'http://localhost/bookstore.com/catalog/category/view/id/15','http://localhost/bookstore.com/review/product/list/id/9/category/3/'),(57,'http://localhost/bookstore.com/catalog/product/view/id/4','http://localhost/bookstore.com/calendars.html'),(58,'http://localhost/bookstore.com/review/product/list/id/4/category/15/','http://localhost/bookstore.com/criterion-designs.html'),(59,'http://localhost/bookstore.com/review/product/post/id/4/','http://localhost/bookstore.com/review/product/list/id/4/category/15/'),(60,'http://localhost/bookstore.com/review/product/list/id/4/category/15/','http://localhost/bookstore.com/review/product/list/id/4/category/15/'),(61,'http://localhost/bookstore.com/review/product/list/id/4/category/15/',NULL),(62,'http://localhost/bookstore.com/review/product/list/id/4/category/15/?___store=russian&___from_store=english','http://localhost/bookstore.com/review/product/list/id/4/category/15/'),(63,'http://localhost/bookstore.com/','http://localhost/bookstore.com/review/product/list/id/4/category/15/?___store=russian&___from_store=english'),(64,'http://localhost/bookstore.com/catalog/category/view/id/3','http://localhost/bookstore.com/'),(65,'http://localhost/bookstore.com/catalog/category/view/id/11','http://localhost/bookstore.com/books.html'),(66,'http://localhost/bookstore.com/catalog/category/view/id/11','http://localhost/bookstore.com/magazines.html'),(67,'http://localhost/bookstore.com/catalog/category/view/id/12','http://localhost/bookstore.com/magazines.html?___store=english&___from_store=russian'),(68,'http://localhost/bookstore.com/catalog/category/view/id/15','http://localhost/bookstore.com/comics.html'),(69,'http://localhost/bookstore.com/catalog/category/view/id/21','http://localhost/bookstore.com/calendars.html'),(70,'http://localhost/bookstore.com/catalog/product/view/id/2','http://localhost/bookstore.com/visiting-cards.html'),(71,'http://localhost/bookstore.com/tag/index/save/product/2/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2FwcGxlcy1hbmQtcHVtcGtpbnMuaHRtbA,,/?productTagName=Books','http://localhost/bookstore.com/apples-and-pumpkins.html'),(72,'http://localhost/bookstore.com/catalog/product/view/id/2','http://localhost/bookstore.com/apples-and-pumpkins.html'),(73,'http://localhost/bookstore.com/tag/index/save/product/2/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2FwcGxlcy1hbmQtcHVtcGtpbnMuaHRtbA,,/?productTagName=Hobby','http://localhost/bookstore.com/apples-and-pumpkins.html'),(74,'http://localhost/bookstore.com/catalog/product/view/id/2','http://localhost/bookstore.com/apples-and-pumpkins.html'),(75,'http://localhost/bookstore.com/','http://localhost/bookstore.com/apples-and-pumpkins.html'),(76,'http://localhost/bookstore.com/?___store=russian&___from_store=english','http://localhost/bookstore.com/'),(77,'http://localhost/bookstore.com/?___store=english&___from_store=russian','http://localhost/bookstore.com/?___store=russian&___from_store=english'),(78,'http://localhost/bookstore.com/catalog/category/view/id/11','http://localhost/bookstore.com/?___store=english&___from_store=russian'),(79,'http://localhost/bookstore.com/catalog/product/view/id/1','http://localhost/bookstore.com/magazines.html'),(80,'http://localhost/bookstore.com/tag/index/save/product/1/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2FmdGVyLWV2ZXItaGFwcHkuaHRtbA,,/?productTagName=Happy','http://localhost/bookstore.com/after-ever-happy.html'),(81,'http://localhost/bookstore.com/catalog/product/view/id/1','http://localhost/bookstore.com/after-ever-happy.html'),(82,'http://localhost/bookstore.com/catalog/product/view/id/1',NULL),(83,'http://localhost/bookstore.com/review/product/list/id/1/category/11/','http://localhost/bookstore.com/after-ever-happy.html'),(84,'http://localhost/bookstore.com/review/product/post/id/1/','http://localhost/bookstore.com/review/product/list/id/1/category/11/'),(85,'http://localhost/bookstore.com/review/product/list/id/1/category/11/','http://localhost/bookstore.com/review/product/list/id/1/category/11/'),(86,'http://localhost/bookstore.com/review/product/post/id/1/','http://localhost/bookstore.com/review/product/list/id/1/category/11/'),(87,'http://localhost/bookstore.com/review/product/list/id/1/category/11/','http://localhost/bookstore.com/review/product/list/id/1/category/11/'),(88,'http://localhost/bookstore.com/catalog/category/view/id/11','http://localhost/bookstore.com/review/product/list/id/1/category/11/'),(89,'http://localhost/bookstore.com/catalog/product/view/id/13','http://localhost/bookstore.com/magazines.html'),(90,'http://localhost/bookstore.com/tag/index/save/product/13/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL3RoZS1jaGlsZHJlbi1zLWNydXNhZGUtYS1ub3ZlbC5odG1s/?productTagName=Novel','http://localhost/bookstore.com/the-children-s-crusade-a-novel.html'),(91,'http://localhost/bookstore.com/catalog/product/view/id/13','http://localhost/bookstore.com/the-children-s-crusade-a-novel.html'),(92,'http://localhost/bookstore.com/catalog/category/view/id/12','http://localhost/bookstore.com/the-children-s-crusade-a-novel.html'),(93,'http://localhost/bookstore.com/catalog/product/view/id/8','http://localhost/bookstore.com/comics.html'),(94,'http://localhost/bookstore.com/tag/index/save/product/8/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2xvc2UtdGhlLWNsdXR0ZXItbG9zZS10aGUtd2VpZ2h0Lmh0bWw,/?productTagName=Knowledge','http://localhost/bookstore.com/lose-the-clutter-lose-the-weight.html'),(95,'http://localhost/bookstore.com/catalog/product/view/id/8','http://localhost/bookstore.com/lose-the-clutter-lose-the-weight.html'),(96,'http://localhost/bookstore.com/catalog/category/view/id/12','http://localhost/bookstore.com/lose-the-clutter-lose-the-weight.html'),(97,'http://localhost/bookstore.com/catalog/product/view/id/5','http://localhost/bookstore.com/comics.html'),(98,'http://localhost/bookstore.com/tag/index/save/product/5/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2dldC13aGF0LXMteW91cnMtdGhlLXNlY3JldHMtdG8tbWF4aW5nLW91dC15b3VyLXNvY2lhbC1zZWN1cml0eS5odG1s/?productTagName=Reading','http://localhost/bookstore.com/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html'),(99,'http://localhost/bookstore.com/catalog/product/view/id/5','http://localhost/bookstore.com/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html'),(100,'http://localhost/bookstore.com/tag/index/save/product/5/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2dldC13aGF0LXMteW91cnMtdGhlLXNlY3JldHMtdG8tbWF4aW5nLW91dC15b3VyLXNvY2lhbC1zZWN1cml0eS5odG1s/?productTagName=Books','http://localhost/bookstore.com/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html'),(101,'http://localhost/bookstore.com/catalog/product/view/id/5','http://localhost/bookstore.com/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html'),(102,'http://localhost/bookstore.com/catalog/category/view/id/13','http://localhost/bookstore.com/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html'),(103,'http://localhost/bookstore.com/catalog/product/view/id/4','http://localhost/bookstore.com/cd-dvd.html'),(104,'http://localhost/bookstore.com/tag/index/save/product/4/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2NyaXRlcmlvbi1kZXNpZ25zLmh0bWw,/?productTagName=Designs','http://localhost/bookstore.com/criterion-designs.html'),(105,'http://localhost/bookstore.com/catalog/product/view/id/4','http://localhost/bookstore.com/criterion-designs.html'),(106,'http://localhost/bookstore.com/tag/index/save/product/4/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2NyaXRlcmlvbi1kZXNpZ25zLmh0bWw,/?productTagName=On-line','http://localhost/bookstore.com/criterion-designs.html'),(107,'http://localhost/bookstore.com/catalog/product/view/id/4','http://localhost/bookstore.com/criterion-designs.html'),(108,'http://localhost/bookstore.com/catalog/category/view/id/14','http://localhost/bookstore.com/criterion-designs.html'),(109,'http://localhost/bookstore.com/catalog/product/view/id/3','http://localhost/bookstore.com/cards.html'),(110,'http://localhost/bookstore.com/tag/index/save/product/3/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2JlaW5nLW1vcnRhbC1tZWRpY2luZS1hbmQtd2hhdC1tYXR0ZXJzLWluLXRoZS1lbmQuaHRtbA,,/?productTagName=Novel','http://localhost/bookstore.com/being-mortal-medicine-and-what-matters-in-the-end.html'),(111,'http://localhost/bookstore.com/catalog/product/view/id/3','http://localhost/bookstore.com/being-mortal-medicine-and-what-matters-in-the-end.html'),(112,'http://localhost/bookstore.com/tag/index/save/product/3/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2JlaW5nLW1vcnRhbC1tZWRpY2luZS1hbmQtd2hhdC1tYXR0ZXJzLWluLXRoZS1lbmQuaHRtbA,,/?productTagName=Hobby','http://localhost/bookstore.com/being-mortal-medicine-and-what-matters-in-the-end.html'),(113,'http://localhost/bookstore.com/catalog/product/view/id/3','http://localhost/bookstore.com/being-mortal-medicine-and-what-matters-in-the-end.html'),(114,'http://localhost/bookstore.com/catalog/category/view/id/15','http://localhost/bookstore.com/being-mortal-medicine-and-what-matters-in-the-end.html'),(115,'http://localhost/bookstore.com/catalog/product/view/id/14','http://localhost/bookstore.com/calendars.html'),(116,'http://localhost/bookstore.com/tag/index/save/product/14/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL3RoZS1mYXJtZXItYW5kLXRoZS1jbG93bi5odG1s/?productTagName=Stores','http://localhost/bookstore.com/the-farmer-and-the-clown.html'),(117,'http://localhost/bookstore.com/catalog/product/view/id/14','http://localhost/bookstore.com/the-farmer-and-the-clown.html'),(118,'http://localhost/bookstore.com/tag/index/save/product/14/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL3RoZS1mYXJtZXItYW5kLXRoZS1jbG93bi5odG1s/?productTagName=Quality','http://localhost/bookstore.com/the-farmer-and-the-clown.html'),(119,'http://localhost/bookstore.com/catalog/product/view/id/14','http://localhost/bookstore.com/the-farmer-and-the-clown.html'),(120,'http://localhost/bookstore.com/catalog/category/view/id/16','http://localhost/bookstore.com/the-farmer-and-the-clown.html'),(121,'http://localhost/bookstore.com/catalog/product/view/id/19','http://localhost/bookstore.com/blanks.html'),(122,'http://localhost/bookstore.com/tag/index/save/product/19/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL3RoZS13ZXMtYW5kZXJzb24tY29sbGVjdGlvbi10aGUtZ3JhbmQtYnVkYXBlc3QtaG90ZWwuaHRtbA,,/?productTagName=Collection','http://localhost/bookstore.com/the-wes-anderson-collection-the-grand-budapest-hotel.html'),(123,'http://localhost/bookstore.com/catalog/product/view/id/19','http://localhost/bookstore.com/the-wes-anderson-collection-the-grand-budapest-hotel.html'),(124,'http://localhost/bookstore.com/tag/index/save/product/19/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL3RoZS13ZXMtYW5kZXJzb24tY29sbGVjdGlvbi10aGUtZ3JhbmQtYnVkYXBlc3QtaG90ZWwuaHRtbA,,/?productTagName=Grand','http://localhost/bookstore.com/the-wes-anderson-collection-the-grand-budapest-hotel.html'),(125,'http://localhost/bookstore.com/catalog/product/view/id/19','http://localhost/bookstore.com/the-wes-anderson-collection-the-grand-budapest-hotel.html'),(126,'http://localhost/bookstore.com/catalog/product/view/id/10','http://localhost/bookstore.com/the-wes-anderson-collection-the-grand-budapest-hotel.html'),(127,'http://localhost/bookstore.com/tag/index/save/product/10/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL21hZ251bS1jb250YWN0LXNoZWV0cy5odG1s/?productTagName=Useful','http://localhost/bookstore.com/magnum-contact-sheets.html'),(128,'http://localhost/bookstore.com/catalog/product/view/id/10','http://localhost/bookstore.com/magnum-contact-sheets.html'),(129,'http://localhost/bookstore.com/tag/index/save/product/10/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL21hZ251bS1jb250YWN0LXNoZWV0cy5odG1s/?productTagName=Authors','http://localhost/bookstore.com/magnum-contact-sheets.html'),(130,'http://localhost/bookstore.com/catalog/product/view/id/10','http://localhost/bookstore.com/magnum-contact-sheets.html'),(131,'http://localhost/bookstore.com/catalog/category/view/id/17','http://localhost/bookstore.com/the-wes-anderson-collection-the-grand-budapest-hotel.html'),(132,'http://localhost/bookstore.com/catalog/product/view/id/12','http://localhost/bookstore.com/rarity.html'),(133,'http://localhost/bookstore.com/tag/index/save/product/12/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL3N0ZWxsYWx1bmEuaHRtbA,,/?productTagName=Reading','http://localhost/bookstore.com/stellaluna.html'),(134,'http://localhost/bookstore.com/catalog/product/view/id/12','http://localhost/bookstore.com/stellaluna.html'),(135,'http://localhost/bookstore.com/tag/index/save/product/12/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL3N0ZWxsYWx1bmEuaHRtbA,,/?productTagName=Stores','http://localhost/bookstore.com/stellaluna.html'),(136,'http://localhost/bookstore.com/catalog/product/view/id/12','http://localhost/bookstore.com/stellaluna.html'),(137,'http://localhost/bookstore.com/review/product/list/id/12/category/17/','http://localhost/bookstore.com/stellaluna.html'),(138,'http://localhost/bookstore.com/review/product/post/id/12/','http://localhost/bookstore.com/review/product/list/id/12/category/17/'),(139,'http://localhost/bookstore.com/review/product/list/id/12/category/17/','http://localhost/bookstore.com/review/product/list/id/12/category/17/'),(140,'http://localhost/bookstore.com/catalog/category/view/id/18','http://localhost/bookstore.com/review/product/list/id/12/category/17/'),(141,'http://localhost/bookstore.com/catalog/product/view/id/15','http://localhost/bookstore.com/antiques.html'),(142,'http://localhost/bookstore.com/tag/index/save/product/15/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL3RoZS1taWRkbGUtc2Nob29sLXJ1bGVzLW9mLWJyaWFuLXVybGFjaGVyLmh0bWw,/?productTagName=School','http://localhost/bookstore.com/the-middle-school-rules-of-brian-urlacher.html'),(143,'http://localhost/bookstore.com/catalog/product/view/id/15','http://localhost/bookstore.com/the-middle-school-rules-of-brian-urlacher.html'),(144,'http://localhost/bookstore.com/tag/index/save/product/15/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL3RoZS1taWRkbGUtc2Nob29sLXJ1bGVzLW9mLWJyaWFuLXVybGFjaGVyLmh0bWw,/?productTagName=Grand','http://localhost/bookstore.com/the-middle-school-rules-of-brian-urlacher.html'),(145,'http://localhost/bookstore.com/catalog/product/view/id/15','http://localhost/bookstore.com/the-middle-school-rules-of-brian-urlacher.html'),(146,'http://localhost/bookstore.com/catalog/product/view/id/8','http://localhost/bookstore.com/the-middle-school-rules-of-brian-urlacher.html'),(147,'http://localhost/bookstore.com/catalog/product/view/id/6','http://localhost/bookstore.com/the-middle-school-rules-of-brian-urlacher.html'),(148,'http://localhost/bookstore.com/tag/index/save/product/15/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL3RoZS1taWRkbGUtc2Nob29sLXJ1bGVzLW9mLWJyaWFuLXVybGFjaGVyLmh0bWw,/?productTagName=Books','http://localhost/bookstore.com/the-middle-school-rules-of-brian-urlacher.html'),(149,'http://localhost/bookstore.com/catalog/product/view/id/15','http://localhost/bookstore.com/the-middle-school-rules-of-brian-urlacher.html'),(150,'http://localhost/bookstore.com/tag/index/save/product/8/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2xvc2UtdGhlLWNsdXR0ZXItbG9zZS10aGUtd2VpZ2h0Lmh0bWw,/?productTagName=Quality','http://localhost/bookstore.com/lose-the-clutter-lose-the-weight.html'),(151,'http://localhost/bookstore.com/catalog/product/view/id/8','http://localhost/bookstore.com/lose-the-clutter-lose-the-weight.html'),(152,'http://localhost/bookstore.com/tag/index/save/product/6/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2hvbGx5d29vZC1mcmFtZS1ieS1mcmFtZS5odG1s/?productTagName=On-line','http://localhost/bookstore.com/hollywood-frame-by-frame.html'),(153,'http://localhost/bookstore.com/catalog/product/view/id/6','http://localhost/bookstore.com/hollywood-frame-by-frame.html'),(154,'http://localhost/bookstore.com/tag/index/save/product/6/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2hvbGx5d29vZC1mcmFtZS1ieS1mcmFtZS5odG1s/?productTagName=Novel','http://localhost/bookstore.com/hollywood-frame-by-frame.html'),(155,'http://localhost/bookstore.com/catalog/product/view/id/6','http://localhost/bookstore.com/hollywood-frame-by-frame.html'),(156,'http://localhost/bookstore.com/tag/index/save/product/8/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2xvc2UtdGhlLWNsdXR0ZXItbG9zZS10aGUtd2VpZ2h0Lmh0bWw,/?productTagName=Reading','http://localhost/bookstore.com/lose-the-clutter-lose-the-weight.html'),(157,'http://localhost/bookstore.com/catalog/product/view/id/8','http://localhost/bookstore.com/lose-the-clutter-lose-the-weight.html'),(158,'http://localhost/bookstore.com/review/product/list/id/15/category/18/','http://localhost/bookstore.com/the-middle-school-rules-of-brian-urlacher.html'),(159,'http://localhost/bookstore.com/tag/index/save/product/8/uenc/aHR0cDovL2xvY2FsaG9zdC9ib29rc3RvcmUuY29tL2xvc2UtdGhlLWNsdXR0ZXItbG9zZS10aGUtd2VpZ2h0Lmh0bWw,/?productTagName=Stores','http://localhost/bookstore.com/lose-the-clutter-lose-the-weight.html'),(160,'http://localhost/bookstore.com/catalog/product/view/id/8','http://localhost/bookstore.com/lose-the-clutter-lose-the-weight.html'),(161,'http://localhost/bookstore.com/review/product/post/id/15/','http://localhost/bookstore.com/review/product/list/id/15/category/18/'),(162,'http://localhost/bookstore.com/review/product/list/id/15/category/18/','http://localhost/bookstore.com/review/product/list/id/15/category/18/'),(163,'http://localhost/bookstore.com/',NULL),(164,'http://localhost/bookstore.com/catalog/category/view/id/20','http://localhost/bookstore.com/'),(165,'http://localhost/bookstore.com/catalog/product/view/id/17','http://localhost/bookstore.com/posters.html'),(166,'http://localhost/bookstore.com/catalog/category/view/id/21','http://localhost/bookstore.com/posters.html'),(167,'http://localhost/bookstore.com/review/product/list/id/17/category/20/','http://localhost/bookstore.com/the-rosie-project-a-nove.html'),(168,'http://localhost/bookstore.com/review/product/post/id/17/','http://localhost/bookstore.com/review/product/list/id/17/category/20/'),(169,'http://localhost/bookstore.com/review/product/list/id/17/category/20/','http://localhost/bookstore.com/review/product/list/id/17/category/20/'),(170,'http://localhost/bookstore.com/catalog/product/view/id/5','http://localhost/bookstore.com/visiting-cards.html'),(171,'http://localhost/bookstore.com/review/product/list/id/5/category/21/','http://localhost/bookstore.com/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html'),(172,'http://localhost/bookstore.com/review/product/post/id/5/','http://localhost/bookstore.com/review/product/list/id/5/category/21/'),(173,'http://localhost/bookstore.com/review/product/list/id/5/category/21/','http://localhost/bookstore.com/review/product/list/id/5/category/21/'),(174,'http://localhost/bookstore.com/catalog/category/view/id/16','http://localhost/bookstore.com/review/product/list/id/5/category/21/'),(175,'http://localhost/bookstore.com/catalog/category/view/id/3','http://localhost/bookstore.com/blanks.html'),(176,'http://localhost/bookstore.com/poll/vote/add/poll_id/2/','http://localhost/bookstore.com/books.html'),(177,'http://localhost/bookstore.com/catalog/category/view/id/3','http://localhost/bookstore.com/books.html'),(178,'http://localhost/bookstore.com/catalog/category/view/id/11','http://localhost/bookstore.com/books.html'),(179,'http://localhost/bookstore.com/catalog/product/view/id/18','http://localhost/bookstore.com/magazines.html'),(180,'http://localhost/bookstore.com/review/product/list/id/18/category/11/','http://localhost/bookstore.com/the-sugar-queen.html'),(181,'http://localhost/bookstore.com/review/product/post/id/18/','http://localhost/bookstore.com/review/product/list/id/18/category/11/'),(182,'http://localhost/bookstore.com/review/product/list/id/18/category/11/','http://localhost/bookstore.com/review/product/list/id/18/category/11/'),(183,'http://localhost/bookstore.com/catalog/category/view/id/12','http://localhost/bookstore.com/review/product/list/id/18/category/11/'),(184,'http://localhost/bookstore.com/catalog/category/view/id/17','http://localhost/bookstore.com/comics.html'),(185,'http://localhost/bookstore.com/catalog/category/view/id/17','http://localhost/bookstore.com/rarity.html'),(186,'http://localhost/bookstore.com/catalog/category/view/id/17','http://localhost/bookstore.com/rarity.html?___store=russian&___from_store=english'),(187,'http://localhost/bookstore.com/','http://localhost/bookstore.com/rarity.html?___store=english&___from_store=russian'),(188,'http://localhost/bookstore.com/','http://localhost/bookstore.com/'),(189,'http://localhost/bookstore.com/','http://localhost/bookstore.com/'),(190,'http://localhost/bookstore.com/catalog/category/view/id/19','http://localhost/bookstore.com/'),(191,'http://localhost/bookstore.com/','http://localhost/bookstore.com/writing-materials.html'),(192,'http://localhost/bookstore.com/',NULL),(193,'http://localhost/bookstore.com/catalog/category/view/id/15','http://localhost/bookstore.com/'),(194,'http://localhost/bookstore.com/catalog/product/view/id/4','http://localhost/bookstore.com/calendars.html'),(195,'http://localhost/bookstore.com/catalog/category/view/id/17','http://localhost/bookstore.com/'),(196,'http://localhost/bookstore.com/catalog/product/view/id/3','http://localhost/bookstore.com/rarity.html'),(197,'http://localhost/bookstore.com/catalog/category/view/id/6','http://localhost/bookstore.com/being-mortal-medicine-and-what-matters-in-the-end.html'),(198,'http://localhost/bookstore.com/catalog/product/view/id/17','http://localhost/bookstore.com/books/detective-stories.html'),(199,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(200,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(201,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/14','http://192.168.9.48/2015/March/25812_book-store_707/'),(202,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(203,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(204,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(205,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(206,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(207,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(208,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(209,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(210,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(211,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(212,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(213,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(214,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(215,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(216,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(217,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(218,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(219,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(220,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(221,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(222,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(223,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(224,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(225,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(226,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(227,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(228,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(229,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(230,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(231,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(232,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(233,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(234,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(235,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(236,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(237,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(238,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(239,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(240,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(241,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(242,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(243,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(244,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(245,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(246,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(247,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(248,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(249,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(250,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(251,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(252,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(253,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(254,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(255,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(256,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(257,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(258,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(259,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(260,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(261,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(262,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(263,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(264,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(265,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(266,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(267,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(268,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(269,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(270,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(271,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(272,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(273,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(274,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(275,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(276,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(277,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(278,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(279,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(280,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(281,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(282,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(283,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(284,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(285,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(286,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(287,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(288,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(289,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(290,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(291,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(292,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(293,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(294,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(295,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(296,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(297,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(298,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(299,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(300,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(301,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(302,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(303,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(304,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(305,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(306,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(307,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(308,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(309,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(310,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(311,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(312,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(313,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(314,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(315,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(316,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(317,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(318,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(319,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(320,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(321,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(322,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(323,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(324,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(325,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(326,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(327,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(328,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(329,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(330,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(331,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(332,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(333,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(334,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(335,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(336,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(337,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(338,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(339,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(340,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(341,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(342,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(343,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(344,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(345,'http://192.168.9.48/2015/March/25812_book-store_707/catalogsearch/ajax/suggest/?q=book','http://192.168.9.48/2015/March/25812_book-store_707/'),(346,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(347,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(348,'http://192.168.9.48/2015/March/25812_book-store_707/catalogsearch/ajax/suggest/?q=After','http://192.168.9.48/2015/March/25812_book-store_707/'),(349,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(350,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(351,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(352,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(353,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(354,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(355,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(356,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(357,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(358,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(359,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(360,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(361,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english','http://192.168.9.48/2015/March/25812_book-store_707/'),(362,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=spanish&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english'),(363,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=russian&___from_store=spanish','http://192.168.9.48/2015/March/25812_book-store_707/?___store=spanish&___from_store=german'),(364,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=russian','http://192.168.9.48/2015/March/25812_book-store_707/?___store=russian&___from_store=spanish'),(365,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(366,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(367,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(368,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(369,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(370,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/14','http://192.168.9.48/2015/March/25812_book-store_707/'),(371,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/product/view/id/3','http://192.168.9.48/2015/March/25812_book-store_707/cards.html'),(372,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/product/view/id/3','http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html'),(373,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(374,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(375,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(376,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(377,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(378,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/14','http://192.168.9.48/2015/March/25812_book-store_707/'),(379,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/product/view/id/3','http://192.168.9.48/2015/March/25812_book-store_707/cards.html'),(380,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/product/view/id/3','http://192.168.9.48/2015/March/25812_book-store_707/cards.html'),(381,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(382,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/product/view/id/3','http://192.168.9.48/2015/March/25812_book-store_707/cards.html'),(383,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(384,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html'),(385,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html'),(386,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html'),(387,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(388,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html'),(389,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(390,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(391,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html'),(392,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html'),(393,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html'),(394,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html'),(395,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html'),(396,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html'),(397,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(398,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(399,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(400,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(401,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(402,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(403,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(404,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(405,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(406,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(407,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(408,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(409,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(410,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(411,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(412,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(413,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(414,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(415,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(416,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(417,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(418,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(419,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(420,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(421,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(422,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(423,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(424,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(425,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(426,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(427,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(428,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(429,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(430,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(431,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(432,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(433,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(434,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(435,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(436,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(437,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(438,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(439,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(440,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(441,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(442,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(443,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(444,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(445,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(446,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(447,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(448,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(449,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(450,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(451,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(452,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(453,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(454,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(455,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(456,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(457,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(458,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(459,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(460,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(461,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(462,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(463,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(464,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(465,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(466,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(467,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(468,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(469,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(470,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(471,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(472,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(473,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(474,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(475,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(476,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(477,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(478,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(479,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(480,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(481,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(482,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(483,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(484,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(485,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(486,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(487,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(488,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(489,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(490,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(491,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(492,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(493,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(494,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(495,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(496,'http://192.168.9.48/2015/March/25812_book-store_707/skin/frontend/default/theme707/css/skin/frontend/default/theme707/css/ripples.css.map','http://192.168.9.48/2015/March/25812_book-store_707/'),(497,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(498,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(499,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(500,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(501,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(502,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(503,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(504,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(505,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(506,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(507,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(508,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(509,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(510,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(511,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(512,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(513,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(514,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(515,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(516,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(517,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(518,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(519,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(520,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/'),(521,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/'),(522,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(523,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/'),(524,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/'),(525,'http://192.168.9.48/2015/March/25812_book-store_707/about-magento-demo-store','http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/'),(526,'http://192.168.9.48/2015/March/25812_book-store_707/about-magento-demo-store','http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/'),(527,'http://192.168.9.48/2015/March/25812_book-store_707/about','http://192.168.9.48/2015/March/25812_book-store_707/about-magento-demo-store'),(528,'http://192.168.9.48/2015/March/25812_book-store_707/about','http://192.168.9.48/2015/March/25812_book-store_707/about-magento-demo-store'),(529,'http://192.168.9.48/2015/March/25812_book-store_707/customer-service','http://192.168.9.48/2015/March/25812_book-store_707/'),(530,'http://192.168.9.48/2015/March/25812_book-store_707/privacy-policy-cookie-restriction-mode','http://192.168.9.48/2015/March/25812_book-store_707/'),(531,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/seo_sitemap/category/','http://192.168.9.48/2015/March/25812_book-store_707/'),(532,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/'),(533,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/'),(534,'http://192.168.9.48/2015/March/25812_book-store_707/catalogsearch/term/popular/','http://192.168.9.48/2015/March/25812_book-store_707/'),(535,'http://192.168.9.48/2015/March/25812_book-store_707/catalogsearch/advanced/','http://192.168.9.48/2015/March/25812_book-store_707/'),(536,'http://192.168.9.48/2015/March/25812_book-store_707/sales/guest/form/','http://192.168.9.48/2015/March/25812_book-store_707/'),(537,'http://192.168.9.48/2015/March/25812_book-store_707/contacts/','http://192.168.9.48/2015/March/25812_book-store_707/'),(538,'http://192.168.9.48/2015/March/25812_book-store_707/contacts/','http://192.168.9.48/2015/March/25812_book-store_707/'),(539,'http://192.168.9.48/2015/March/25812_book-store_707/%D1%84%D0%B2%D1%8C%D1%88%D1%82',NULL),(540,'http://192.168.9.48/2015/March/25812_book-store_707/contacts/','http://192.168.9.48/2015/March/25812_book-store_707/'),(541,'http://192.168.9.48/2015/March/25812_book-store_707/contacts/','http://192.168.9.48/2015/March/25812_book-store_707/'),(542,'http://192.168.9.48/2015/March/25812_book-store_707/contacts/','http://192.168.9.48/2015/March/25812_book-store_707/'),(543,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/'),(544,'http://192.168.9.48/2015/March/25812_book-store_707/catalogsearch/term/popular/','http://192.168.9.48/2015/March/25812_book-store_707/'),(545,'http://192.168.9.48/2015/March/25812_book-store_707/sales/guest/form/','http://192.168.9.48/2015/March/25812_book-store_707/'),(546,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/'),(547,'http://192.168.9.48/2015/March/25812_book-store_707/catalogsearch/advanced/','http://192.168.9.48/2015/March/25812_book-store_707/'),(548,'http://192.168.9.48/2015/March/25812_book-store_707/contacts/','http://192.168.9.48/2015/March/25812_book-store_707/'),(549,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(550,'http://192.168.9.48/2015/March/25812_book-store_707/contacts/','http://192.168.9.48/2015/March/25812_book-store_707/'),(551,'http://192.168.9.48/2015/March/25812_book-store_707/contacts/','http://192.168.9.48/2015/March/25812_book-store_707/'),(552,'http://192.168.9.48/2015/March/25812_book-store_707/about','http://192.168.9.48/2015/March/25812_book-store_707/contacts/'),(553,'http://192.168.9.48/2015/March/25812_book-store_707/contacts/','http://192.168.9.48/2015/March/25812_book-store_707/'),(554,'http://192.168.9.48/2015/March/25812_book-store_707/sales/guest/form/','http://192.168.9.48/2015/March/25812_book-store_707/'),(555,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(556,'http://192.168.9.48/2015/March/25812_book-store_707/sales/guest/form/','http://192.168.9.48/2015/March/25812_book-store_707/'),(557,'http://192.168.9.48/2015/March/25812_book-store_707/sales/guest/form/','http://192.168.9.48/2015/March/25812_book-store_707/'),(558,'http://192.168.9.48/2015/March/25812_book-store_707/sales/guest/form/','http://192.168.9.48/2015/March/25812_book-store_707/'),(559,'http://192.168.9.48/2015/March/25812_book-store_707/sales/guest/form/','http://192.168.9.48/2015/March/25812_book-store_707/'),(560,'http://192.168.9.48/2015/March/25812_book-store_707/catalogsearch/advanced/','http://192.168.9.48/2015/March/25812_book-store_707/'),(561,'http://192.168.9.48/2015/March/25812_book-store_707/catalogsearch/term/popular/','http://192.168.9.48/2015/March/25812_book-store_707/'),(562,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/'),(563,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/'),(564,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/'),(565,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/'),(566,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(567,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(568,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(569,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(570,'http://192.168.9.48/2015/March/25812_book-store_707/catalogsearch/term/popular/','http://192.168.9.48/2015/March/25812_book-store_707/'),(571,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(572,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(573,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(574,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(575,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(576,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(577,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(578,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(579,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(580,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(581,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(582,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(583,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(584,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(585,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(586,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english','http://192.168.9.48/2015/March/25812_book-store_707/'),(587,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english'),(588,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english'),(589,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(590,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english'),(591,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(592,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(593,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(594,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(595,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(596,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(597,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(598,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(599,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(600,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(601,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(602,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(603,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(604,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(605,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(606,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(607,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(608,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(609,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(610,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(611,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(612,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(613,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(614,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(615,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(616,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(617,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(618,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(619,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(620,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(621,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(622,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(623,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(624,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(625,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(626,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(627,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(628,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(629,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(630,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(631,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(632,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(633,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(634,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(635,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(636,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(637,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(638,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(639,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(640,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(641,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(642,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(643,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(644,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(645,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(646,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(647,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(648,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(649,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(650,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(651,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(652,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(653,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(654,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(655,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(656,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(657,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(658,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(659,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(660,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(661,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(662,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(663,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/product/view/id/6','http://192.168.9.48/2015/March/25812_book-store_707/magazines.html'),(664,'http://192.168.9.48/2015/March/25812_book-store_707/ajaxcart/index/index/?form_key=QH4z7RUrdqVMRASz&product=6&related_product=&options%5B11%5D=29&options%5B12%5D=33&qty=1&_=1428417480927','http://192.168.9.48/2015/March/25812_book-store_707/hollywood-frame-by-frame.html'),(665,'http://192.168.9.48/2015/March/25812_book-store_707/checkout/','http://192.168.9.48/2015/March/25812_book-store_707/hollywood-frame-by-frame.html'),(666,'http://192.168.9.48/2015/March/25812_book-store_707/checkout/onepage/','http://192.168.9.48/2015/March/25812_book-store_707/hollywood-frame-by-frame.html'),(667,'http://192.168.9.48/2015/March/25812_book-store_707/checkout/cart/','http://192.168.9.48/2015/March/25812_book-store_707/checkout/onepage/'),(668,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(669,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(670,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(671,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(672,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(673,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(674,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(675,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(676,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(677,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(678,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(679,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(680,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(681,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(682,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(683,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(684,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(685,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(686,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(687,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(688,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(689,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(690,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(691,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(692,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(693,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(694,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(695,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(696,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(697,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(698,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(699,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(700,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(701,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(702,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(703,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(704,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(705,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(706,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(707,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(708,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(709,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(710,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(711,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(712,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(713,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(714,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(715,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(716,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(717,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(718,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(719,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(720,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(721,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(722,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(723,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(724,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(725,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(726,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(727,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(728,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(729,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(730,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(731,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(732,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(733,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(734,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(735,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(736,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(737,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(738,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(739,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(740,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(741,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(742,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(743,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(744,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(745,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(746,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(747,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(748,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(749,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(750,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(751,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(752,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(753,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(754,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(755,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(756,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(757,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(758,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(759,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(760,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(761,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(762,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(763,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(764,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(765,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(766,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(767,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(768,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(769,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(770,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(771,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(772,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(773,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(774,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(775,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(776,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(777,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(778,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(779,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(780,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(781,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(782,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(783,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(784,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(785,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(786,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(787,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(788,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(789,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(790,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(791,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(792,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(793,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(794,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(795,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(796,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/12','http://192.168.9.48/2015/March/25812_book-store_707/'),(797,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/15','http://192.168.9.48/2015/March/25812_book-store_707/'),(798,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/16','http://192.168.9.48/2015/March/25812_book-store_707/'),(799,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/17','http://192.168.9.48/2015/March/25812_book-store_707/'),(800,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(801,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(802,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(803,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(804,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(805,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(806,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(807,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(808,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(809,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(810,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(811,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(812,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(813,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(814,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(815,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(816,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(817,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(818,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(819,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(820,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(821,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(822,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(823,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(824,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(825,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(826,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(827,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(828,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(829,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(830,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(831,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/19','http://192.168.9.48/2015/March/25812_book-store_707/'),(832,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/19?mode=list','http://192.168.9.48/2015/March/25812_book-store_707/writing-materials.html'),(833,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/19?mode=grid','http://192.168.9.48/2015/March/25812_book-store_707/writing-materials.html?mode=list'),(834,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/18','http://192.168.9.48/2015/March/25812_book-store_707/'),(835,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/18','http://192.168.9.48/2015/March/25812_book-store_707/'),(836,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/18','http://192.168.9.48/2015/March/25812_book-store_707/'),(837,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/18?mode=list','http://192.168.9.48/2015/March/25812_book-store_707/antiques.html'),(838,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/18?mode=list','http://192.168.9.48/2015/March/25812_book-store_707/antiques.html'),(839,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/18?mode=grid','http://192.168.9.48/2015/March/25812_book-store_707/antiques.html?mode=list'),(840,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(841,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(842,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(843,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(844,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(845,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(846,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(847,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(848,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(849,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(850,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(851,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(852,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(853,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(854,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(855,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(856,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(857,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(858,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(859,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(860,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(861,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(862,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(863,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(864,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(865,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(866,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(867,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(868,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(869,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(870,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(871,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(872,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(873,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(874,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(875,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(876,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(877,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(878,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(879,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(880,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(881,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(882,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(883,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(884,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(885,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(886,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(887,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(888,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(889,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(890,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(891,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(892,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(893,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(894,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(895,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(896,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(897,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(898,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(899,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(900,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(901,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(902,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(903,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(904,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(905,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(906,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(907,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(908,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(909,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(910,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(911,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(912,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(913,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(914,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(915,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(916,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(917,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(918,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(919,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(920,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(921,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(922,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(923,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(924,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(925,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(926,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(927,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(928,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(929,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(930,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(931,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(932,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(933,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(934,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(935,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(936,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(937,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(938,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(939,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(940,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(941,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(942,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(943,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(944,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(945,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(946,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(947,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(948,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(949,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(950,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(951,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(952,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(953,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(954,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(955,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(956,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(957,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(958,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(959,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(960,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(961,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(962,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(963,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(964,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(965,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(966,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(967,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(968,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(969,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(970,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(971,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(972,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(973,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(974,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(975,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(976,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(977,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(978,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(979,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(980,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(981,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(982,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(983,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(984,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(985,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(986,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(987,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(988,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(989,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(990,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(991,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(992,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(993,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(994,'http://192.168.9.48/2015/March/25812_book-store_707/newsletter/subscriber/new/','http://192.168.9.48/2015/March/25812_book-store_707/'),(995,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(996,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(997,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(998,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(999,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1000,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1001,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1002,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1003,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1004,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1005,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1006,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1007,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1008,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1009,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1010,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1011,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1012,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1013,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1014,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1015,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1016,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1017,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1018,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1019,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1020,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1021,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1022,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1023,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1024,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1025,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1026,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1027,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1028,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1029,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1030,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1031,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1032,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1033,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1034,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1035,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1036,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1037,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1038,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1039,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1040,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1041,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1042,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1043,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1044,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1045,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1046,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1047,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1048,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1049,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1050,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1051,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1052,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1053,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1054,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1055,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1056,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1057,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1058,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1059,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1060,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1061,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1062,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1063,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1064,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1065,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1066,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1067,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1068,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/product/view/id/9','http://192.168.9.48/2015/March/25812_book-store_707/'),(1069,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1070,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1071,'http://192.168.9.48/2015/March/25812_book-store_707/ajaxcart/index/index/id/the-children-s-crusade-a-novel.html?_=1428585066161','http://192.168.9.48/2015/March/25812_book-store_707/'),(1072,'http://192.168.9.48/2015/March/25812_book-store_707/ajaxcart/index/index/?product=13&related_product=&options%5B24%5D=64&options%5B25%5D=66&qty=1&_=1428585066162','http://192.168.9.48/2015/March/25812_book-store_707/'),(1073,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1074,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1075,'http://192.168.9.48/2015/March/25812_book-store_707/ajaxcart/index/index/delete/2?_=1428586269090','http://192.168.9.48/2015/March/25812_book-store_707/'),(1076,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1077,'http://192.168.9.48/2015/March/25812_book-store_707/ajaxcart/index/index/id/get-what-s-yours-the-secrets-to-maxing-out-your-social-security.html?_=1428586289803','http://192.168.9.48/2015/March/25812_book-store_707/'),(1078,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1079,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1080,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1081,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1082,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1083,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1084,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1085,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1086,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1087,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1088,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1089,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1090,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1091,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1092,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1093,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1094,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1095,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1096,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1097,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1098,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1099,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1100,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1101,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1102,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1103,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1104,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1105,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1106,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1107,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1108,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1109,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1110,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html'),(1111,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english','http://192.168.9.48/2015/March/25812_book-store_707/'),(1112,'http://192.168.9.48/2015/March/25812_book-store_707/directory/currency/switch/currency/GBP/uenc/aHR0cDovLzE5Mi4xNjguOS40OC8yMDE1L01hcmNoLzI1ODEyX2Jvb2stc3RvcmVfNzA3Lz9fX19zdG9yZT1nZXJtYW4mX19fZnJvbV9zdG9yZT1lbmdsaXNo/','http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english'),(1113,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english','http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english'),(1114,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=german&___from_store=english'),(1115,'http://192.168.9.48/2015/March/25812_book-store_707/directory/currency/switch/currency/GBP/uenc/aHR0cDovLzE5Mi4xNjguOS40OC8yMDE1L01hcmNoLzI1ODEyX2Jvb2stc3RvcmVfNzA3Lz9fX19zdG9yZT1lbmdsaXNoJl9fX2Zyb21fc3RvcmU9Z2VybWFu/','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1116,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1117,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1118,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1119,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1120,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1121,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1122,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1123,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1124,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1125,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1126,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1127,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1128,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1129,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1130,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1131,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1132,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1133,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1134,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1135,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1136,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1137,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1138,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1139,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1140,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1141,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1142,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1143,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1144,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1145,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1146,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1147,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1148,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1149,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1150,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1151,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1152,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1153,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1154,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1155,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1156,'http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1157,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1158,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1159,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1160,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1161,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/?___store=english&___from_store=german'),(1162,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11?mode=list','http://192.168.9.48/2015/March/25812_book-store_707/magazines.html'),(1163,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11?mode=list','http://192.168.9.48/2015/March/25812_book-store_707/magazines.html'),(1164,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11?mode=list','http://192.168.9.48/2015/March/25812_book-store_707/magazines.html'),(1165,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11?mode=grid','http://192.168.9.48/2015/March/25812_book-store_707/magazines.html?mode=list'),(1166,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1167,'http://192.168.9.48/2015/March/25812_book-store_707/directory/currency/switch/currency/USD/uenc/aHR0cDovLzE5Mi4xNjguOS40OC8yMDE1L01hcmNoLzI1ODEyX2Jvb2stc3RvcmVfNzA3Lw,,/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1168,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1169,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1170,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1171,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1172,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/product_compare/add/product/1/uenc/aHR0cDovLzE5Mi4xNjguOS40OC8yMDE1L01hcmNoLzI1ODEyX2Jvb2stc3RvcmVfNzA3Lw,,/form_key/6vQiPgSGPUrCA1ih/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1173,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1174,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1175,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/product/view/id/9','http://192.168.9.48/2015/March/25812_book-store_707/'),(1176,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1177,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1178,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1179,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1180,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1181,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1182,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1183,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1184,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1185,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1186,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1187,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1188,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1189,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1190,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1191,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1192,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1193,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1194,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1195,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1196,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1197,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1198,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1199,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1200,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1201,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1202,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1203,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1204,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1205,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1206,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1207,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(1208,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/11','http://192.168.9.48/2015/March/25812_book-store_707/'),(1209,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1210,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1211,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1212,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1213,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1214,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1215,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1216,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1217,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1218,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1219,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1220,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1221,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1222,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1223,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1224,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1225,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1226,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1227,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1228,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1229,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1230,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1231,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1232,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1233,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1234,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1235,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1236,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1237,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1238,'http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1239,'http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1240,'http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1241,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1242,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1243,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1244,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1245,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1246,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1247,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1248,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1249,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1250,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1251,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1252,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1253,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1254,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1255,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1256,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1257,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1258,'http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1259,'http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1260,'http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1261,'http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1262,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1263,'http://192.168.9.48/2015/March/25812_book-store_707/blog/','http://192.168.9.48/2015/March/25812_book-store_707/blog/lorem-ipsum/'),(1264,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1265,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1266,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1267,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1268,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1269,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1270,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1271,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1272,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1273,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1274,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1275,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1276,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1277,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1278,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1279,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1280,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1281,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/category/view/id/15','http://192.168.9.48/2015/March/25812_book-store_707/'),(1282,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1283,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1284,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1285,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1286,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1287,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1288,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1289,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1290,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1291,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1292,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1293,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1294,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1295,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1296,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1297,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1298,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1299,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1300,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1301,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1302,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1303,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1304,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1305,'http://192.168.9.48/2015/March/25812_book-store_707/catalog/product/view/id/6','http://192.168.9.48/2015/March/25812_book-store_707/'),(1306,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/hollywood-frame-by-frame.html'),(1307,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/hollywood-frame-by-frame.html'),(1308,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1309,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1310,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1311,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1312,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1313,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1314,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1315,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1316,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1317,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1318,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1319,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1320,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1321,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1322,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1323,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1324,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1325,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1326,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1327,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1328,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1329,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1330,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1331,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1332,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1333,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1334,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1335,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1336,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1337,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1338,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1339,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1340,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1341,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1342,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1343,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1344,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1345,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1346,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1347,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1348,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1349,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1350,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1351,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1352,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1353,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1354,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1355,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1356,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1357,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1358,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1359,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1360,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1361,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1362,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1363,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1364,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1365,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1366,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1367,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1368,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1369,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1370,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1371,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1372,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1373,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1374,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1375,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1376,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1377,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1378,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1379,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1380,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1381,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1382,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1383,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1384,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1385,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1386,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1387,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1388,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1389,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1390,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1391,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1392,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1393,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1394,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1395,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1396,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1397,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1398,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1399,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1400,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1401,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1402,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1403,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1404,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1405,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1406,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1407,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1408,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1409,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1410,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1411,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1412,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1413,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1414,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1415,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1416,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1417,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1418,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1419,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1420,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1421,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1422,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1423,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1424,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1425,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/25812_book-store_707/'),(1426,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1427,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1428,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1429,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1430,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1431,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1432,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1433,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1434,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1435,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1436,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1437,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1438,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1439,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1440,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1441,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1442,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1443,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1444,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1445,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1446,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1447,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1448,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1449,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1450,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1451,'http://192.168.9.48/2015/March/25812_book-store_707/',NULL),(1452,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1453,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1454,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1455,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1456,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1457,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1458,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1459,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1460,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1461,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1462,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1463,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1464,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1465,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1466,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1467,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1468,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1469,'http://192.168.9.48/2015/March/25812_book-store_707/ajaxcart/index/index/id/lost-lake-a-novel.html?_=1428932757034','http://192.168.9.48/2015/March/25812_book-store_707/'),(1470,'http://192.168.9.48/2015/March/25812_book-store_707/','http://192.168.9.48/2015/March/'),(1471,'http://192.168.9.48/2015/March/25812_book-store_707/template-settings','http://192.168.9.48/2015/March/25812_book-store_707/'),(1472,'http://192.168.9.48/2015/March/25812_book-store_707/about','http://192.168.9.48/2015/March/25812_book-store_707/'); /*!40000 ALTER TABLE `log_url_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_visitor` -- DROP TABLE IF EXISTS `log_visitor`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `log_visitor` ( `visitor_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Visitor ID', `session_id` varchar(64) default NULL COMMENT 'Session ID', `first_visit_at` timestamp NULL default NULL COMMENT 'First Visit Time', `last_visit_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Last Visit Time', `last_url_id` bigint(20) unsigned NOT NULL default '0' COMMENT 'Last URL ID', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID', PRIMARY KEY (`visitor_id`) ) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=utf8 COMMENT='Log Visitors Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `log_visitor` -- LOCK TABLES `log_visitor` WRITE; /*!40000 ALTER TABLE `log_visitor` DISABLE KEYS */; INSERT INTO `log_visitor` VALUES (1,'207r6k01g64lnv1bkl78e72a47','2015-02-09 01:49:21','2015-02-09 02:24:01',33,1),(2,'r35ep868u3v5ri5e87u4ne53e3','2015-02-09 01:56:33','2015-02-09 01:56:34',5,1),(3,'v567c5t5dm6t1n6i8l6phkpb37','2015-02-09 01:56:50','2015-02-09 01:56:52',6,1),(4,'cqkkq85ak6974dtmsdbkslh974','2015-02-09 01:57:00','2015-02-09 01:57:01',7,1),(5,'ekd0lg8le2vp5v1jlakkjagcu2','2015-02-09 01:57:20','2015-02-09 01:57:22',8,1),(6,'e4njv4269pmcj6f1quslk4lt51','2015-02-09 01:57:36','2015-02-09 01:57:38',9,1),(7,'tka6tk96enptrrh2q65c4l0s97','2015-02-24 19:47:55','2015-02-24 21:12:22',43,1),(8,'t4qd070n1g8j3kmm32fnl0l366','2015-02-25 12:59:37','2015-02-25 19:21:19',198,1),(9,'rf7om6limqo87543m9fj0qc9n1','2015-02-25 19:17:41','2015-02-25 19:17:44',192,1),(10,'f8r220m5gr5t3pj3q2v4s6v5p2','2015-02-25 19:17:50','2015-02-25 19:17:55',193,1),(11,'b82iobll8u4lldha1fb9uaos91','2015-02-25 19:18:25','2015-02-25 19:18:39',194,1),(12,'u0qqt495b7lk1opmo6ibt0kps2','2015-03-30 18:35:26','2015-03-30 19:25:08',208,1),(13,'4l71q1s3g97pfke0okqbhqi353','2015-03-31 10:07:58','2015-03-31 19:34:35',319,1),(14,'km7kcre4upnbf251abclk91qr0','2015-03-31 12:21:10','2015-03-31 17:11:38',273,1),(15,'9pu8125dtt0iln2ocnjk695ij0','2015-04-01 10:16:41','2015-04-01 13:40:30',389,2),(16,'k0j4qcer1tsiv9rcpi9nqnvo23','2015-04-01 13:50:32','2015-04-01 13:50:34',390,1),(17,'2ar6s13i7stc4nu7n7bos77l95','2015-04-01 13:50:33','2015-04-01 18:54:14',485,1),(18,'upbl7n6hibv9b8vqp1e3nombr6','2015-04-02 09:35:55','2015-04-02 16:28:36',490,1),(19,'ij4q4fjv9ojp80pj8cdsfliq92','2015-04-03 09:44:25','2015-04-03 11:32:40',492,1),(20,'fs3sg80m78664pedih5lviom43','2015-04-06 10:26:48','2015-04-06 10:26:52',494,1),(21,'4in6ugftcggtfbl7bgu7qq27c4','2015-04-06 10:26:49','2015-04-06 20:03:35',542,1),(22,'9vj8asmv1l0u5ekgd9p5lqu3l2','2015-04-07 09:40:44','2015-04-07 09:40:47',544,1),(23,'k318q153hp6ib67efg53pngsm3','2015-04-07 09:40:44','2015-04-07 09:40:48',547,1),(24,'v6jlegevp5dpp92509q5rc4d70','2015-04-07 09:40:44','2015-04-07 09:40:47',546,1),(25,'ja0qmfsjt80cng6ce4o2e04rt2','2015-04-07 09:40:44','2015-04-07 09:40:47',545,1),(26,'g9kra0eg32n052tt0j2td95p63','2015-04-07 09:40:44','2015-04-07 09:40:48',549,1),(27,'1hun05fk99os0j95m65ppgc9a6','2015-04-07 09:40:45','2015-04-07 19:38:24',714,1),(28,'fqe54cemcbltps98dcg7sulom3','2015-04-07 16:19:29','2015-04-07 16:21:18',637,1),(29,'fblu96cp8rsi077fmbjimqarm2','2015-04-07 19:12:09','2015-04-07 19:29:25',704,1),(30,'doaf9jolq66ln0341o7ot7ncj6','2015-04-08 09:50:59','2015-04-08 19:21:32',966,1),(31,'up4n9dm3em38e8f0bmks5jbbc3','2015-04-08 11:17:14','2015-04-08 18:57:29',939,1),(32,'pa3uoj3ce1hhtauqdnn534r9t0','2015-04-09 09:46:30','2015-04-09 12:14:37',990,1),(33,'s5mktr5vprb154isnp98lbbpm4','2015-04-09 09:46:30','2015-04-09 09:46:37',968,1),(34,'on19gbnn705v8nlpor96pa2ga4','2015-04-09 10:55:48','2015-04-09 10:58:45',977,1),(35,'senudc77chu05m02vplnbeunr4','2015-04-09 12:34:15','2015-04-09 12:34:17',991,1),(36,'bpbn24q57cfkepakl8lik6spv1','2015-04-09 12:34:37','2015-04-09 19:04:45',1103,1),(37,'snmegjsbr4ssudbmbuo4mq4117','2015-04-09 14:18:52','2015-04-09 18:07:53',1086,1),(38,'u4t9nu66fhkkugu6ngetog4pd7','2015-04-10 10:30:59','2015-04-10 20:08:18',1236,1),(39,'nqs2mubdvmais25dn6tm6t0a97','2015-04-13 09:44:35','2015-04-13 17:48:11',1469,1),(40,'itln0bvtqvn76gh65upcnt1ck4','2015-04-13 11:25:13','2015-04-13 12:29:01',1315,1),(41,'h1po5h59od11us3u6v877srfi6','2015-04-13 17:27:43','2015-04-13 17:27:44',1451,1),(42,'7cke2gqjgdvlpnfuisklh6m2u7','2015-04-14 10:25:22','2015-04-14 10:30:37',1472,1); /*!40000 ALTER TABLE `log_visitor` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_visitor_info` -- DROP TABLE IF EXISTS `log_visitor_info`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `log_visitor_info` ( `visitor_id` bigint(20) unsigned NOT NULL default '0' COMMENT 'Visitor ID', `http_referer` varchar(255) default NULL COMMENT 'HTTP Referrer', `http_user_agent` varchar(255) default NULL COMMENT 'HTTP User-Agent', `http_accept_charset` varchar(255) default NULL COMMENT 'HTTP Accept-Charset', `http_accept_language` varchar(255) default NULL COMMENT 'HTTP Accept-Language', `server_addr` bigint(20) default NULL COMMENT 'Server Address', `remote_addr` bigint(20) default NULL COMMENT 'Remote Address', PRIMARY KEY (`visitor_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Log Visitor Info Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `log_visitor_info` -- LOCK TABLES `log_visitor_info` WRITE; /*!40000 ALTER TABLE `log_visitor_info` DISABLE KEYS */; INSERT INTO `log_visitor_info` VALUES (1,NULL,'Mozilla/5.0 (Windows NT 5.1; rv:35.0) Gecko/20100101 Firefox/35.0',NULL,'ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3',2130706433,2130706433),(2,NULL,'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36',NULL,'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',2130706433,2130706433),(3,NULL,'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36',NULL,'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',2130706433,2130706433),(4,NULL,'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36',NULL,'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',2130706433,2130706433),(5,NULL,'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36',NULL,'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',2130706433,2130706433),(6,NULL,'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.111 Safari/537.36',NULL,'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',2130706433,2130706433),(7,'http://localhost/bookstore.com/index.php/install/wizard/end/','Mozilla/5.0 (Windows NT 5.1; rv:35.0) Gecko/20100101 Firefox/35.0',NULL,'ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3',2130706433,2130706433),(8,'http://localhost/bookstore.com/after-ever-happy.html?___store=russian&___from_store=russian','Mozilla/5.0 (Windows NT 5.1; rv:35.0) Gecko/20100101 Firefox/35.0',NULL,'ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3',2130706433,2130706433),(9,NULL,'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36',NULL,'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',2130706433,2130706433),(10,'http://localhost/bookstore.com/','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36',NULL,'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',2130706433,2130706433),(11,'http://localhost/bookstore.com/calendars.html','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36',NULL,'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',2130706433,2130706433),(12,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(13,'http://192.168.9.48/2015/March/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(14,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0',NULL,'en-US,en;q=0.5',-1062729424,-1062729424),(15,'http://192.168.9.48/2015/March/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(16,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(17,'http://192.168.9.48/2015/March/25812_book-store_707/being-mortal-medicine-and-what-matters-in-the-end.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(18,'http://192.168.9.48/2015/March/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(19,'http://192.168.9.48/2015/March/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(20,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(21,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(22,'http://192.168.9.48/2015/March/25812_book-store_707/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(23,'http://192.168.9.48/2015/March/25812_book-store_707/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(24,'http://192.168.9.48/2015/March/25812_book-store_707/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(25,'http://192.168.9.48/2015/March/25812_book-store_707/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(26,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(27,'http://192.168.9.48/2015/March/25812_book-store_707/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(28,'http://192.168.9.48/2015/March/','Mozilla/5.0 (Linux; U; Android 4.3.1; uk-ua; ST18i Build/JLS36I) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30 CyanogenMod/10.2/urushi','utf-8, iso-8859-1, utf-16, *;q=0.7','uk-UA, en-US',-1062729424,-1062708929),(29,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',-1062729424,-1062729453),(30,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(31,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:39.0) Gecko/20100101 Firefox/39.0',NULL,'en-US,en;q=0.5',-1062729424,-1062729424),(32,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(33,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(34,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',-1062729424,-1062729389),(35,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(36,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(37,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4',-1062729424,-1062729453),(38,'http://192.168.9.48/2015/March/25812_book-store_707/lost-lake-a-novel.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(39,'http://192.168.9.48/2015/March/25812_book-store_707/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424),(40,'http://192.168.9.48/2015/March/','Mozilla/5.0 (iPad; CPU OS 8_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12D508 Safari/600.1.4',NULL,'en-us',-1062729424,-1062729471),(41,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0',NULL,'en-US,en;q=0.5',-1062729424,-1062729471),(42,'http://192.168.9.48/2015/March/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.118 Safari/537.36',NULL,'en-US,en;q=0.8,ru;q=0.6,it;q=0.4,und;q=0.2',-1062729424,-1062729424); /*!40000 ALTER TABLE `log_visitor_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_visitor_online` -- DROP TABLE IF EXISTS `log_visitor_online`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `log_visitor_online` ( `visitor_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Visitor ID', `visitor_type` varchar(1) NOT NULL COMMENT 'Visitor Type', `remote_addr` bigint(20) NOT NULL COMMENT 'Remote Address', `first_visit_at` timestamp NULL default NULL COMMENT 'First Visit Time', `last_visit_at` timestamp NULL default NULL COMMENT 'Last Visit Time', `customer_id` int(10) unsigned default NULL COMMENT 'Customer ID', `last_url` varchar(255) default NULL COMMENT 'Last URL', PRIMARY KEY (`visitor_id`), KEY `IDX_LOG_VISITOR_ONLINE_VISITOR_TYPE` (`visitor_type`), KEY `IDX_LOG_VISITOR_ONLINE_FIRST_VISIT_AT_LAST_VISIT_AT` (`first_visit_at`,`last_visit_at`), KEY `IDX_LOG_VISITOR_ONLINE_CUSTOMER_ID` (`customer_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Log Visitor Online Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `log_visitor_online` -- LOCK TABLES `log_visitor_online` WRITE; /*!40000 ALTER TABLE `log_visitor_online` DISABLE KEYS */; /*!40000 ALTER TABLE `log_visitor_online` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_problem` -- DROP TABLE IF EXISTS `newsletter_problem`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `newsletter_problem` ( `problem_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Problem Id', `subscriber_id` int(10) unsigned default NULL COMMENT 'Subscriber Id', `queue_id` int(10) unsigned NOT NULL default '0' COMMENT 'Queue Id', `problem_error_code` int(10) unsigned default '0' COMMENT 'Problem Error Code', `problem_error_text` varchar(200) default NULL COMMENT 'Problem Error Text', PRIMARY KEY (`problem_id`), KEY `IDX_NEWSLETTER_PROBLEM_SUBSCRIBER_ID` (`subscriber_id`), KEY `IDX_NEWSLETTER_PROBLEM_QUEUE_ID` (`queue_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Newsletter Problems'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `newsletter_problem` -- LOCK TABLES `newsletter_problem` WRITE; /*!40000 ALTER TABLE `newsletter_problem` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletter_problem` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_queue` -- DROP TABLE IF EXISTS `newsletter_queue`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `newsletter_queue` ( `queue_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Queue Id', `template_id` int(10) unsigned NOT NULL default '0' COMMENT 'Template Id', `newsletter_type` int(11) default NULL COMMENT 'Newsletter Type', `newsletter_text` text COMMENT 'Newsletter Text', `newsletter_styles` text COMMENT 'Newsletter Styles', `newsletter_subject` varchar(200) default NULL COMMENT 'Newsletter Subject', `newsletter_sender_name` varchar(200) default NULL COMMENT 'Newsletter Sender Name', `newsletter_sender_email` varchar(200) default NULL COMMENT 'Newsletter Sender Email', `queue_status` int(10) unsigned NOT NULL default '0' COMMENT 'Queue Status', `queue_start_at` timestamp NULL default NULL COMMENT 'Queue Start At', `queue_finish_at` timestamp NULL default NULL COMMENT 'Queue Finish At', PRIMARY KEY (`queue_id`), KEY `IDX_NEWSLETTER_QUEUE_TEMPLATE_ID` (`template_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `newsletter_queue` -- LOCK TABLES `newsletter_queue` WRITE; /*!40000 ALTER TABLE `newsletter_queue` DISABLE KEYS */; INSERT INTO `newsletter_queue` VALUES (1,1,NULL,'{{template config_path=\"design/email/header\"}}\r\n{{inlinecss file=\"email-inline.css\"}}\r\n\r\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\r\n<tr>\r\n <td class=\"full\">\r\n <table class=\"columns\">\r\n <tr>\r\n <td class=\"email-heading\">\r\n <h1>Welcome</h1>\r\n <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit,\r\n sed do eiusmod tempor incididunt ut labore et.</p>\r\n </td>\r\n <td class=\"store-info\">\r\n <h4>Contact Us</h4>\r\n <p>\r\n {{depend store_phone}}\r\n <b>Call Us:</b>\r\n <a href=\"tel:{{var phone}}\">{{var store_phone}}</a><br>\r\n {{/depend}}\r\n {{depend store_hours}}\r\n <span class=\"no-link\">{{var store_hours}}</span><br>\r\n {{/depend}}\r\n {{depend store_email}}\r\n <b>Email:</b> <a href=\"mailto:{{var store_email}}\">{{var store_email}}</a>\r\n {{/depend}}\r\n </p>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n</tr>\r\n<tr>\r\n <td class=\"full\">\r\n <table class=\"columns\">\r\n <tr>\r\n <td>\r\n <img width=\"600\" src=\"http://placehold.it/600x200\" class=\"main-image\">\r\n </td>\r\n <td class=\"expander\"></td>\r\n </tr>\r\n </table>\r\n <table class=\"columns\">\r\n <tr>\r\n <td class=\"panel\">\r\n <p>Phasellus dictum sapien a neque luctus cursus. Pellentesque sem dolor, fringilla et pharetra\r\n vitae. <a href=\"#\">Click it! »</a></p>\r\n </td>\r\n <td class=\"expander\"></td>\r\n </tr>\r\n </table>\r\n </td>\r\n</tr>\r\n<tr>\r\n <td>\r\n <table class=\"row\">\r\n <tr>\r\n <td class=\"half left wrapper\">\r\n <table class=\"columns\">\r\n <tr>\r\n <td>\r\n <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor\r\n incididunt ut labore et. Lorem ipsum dolor sit amet, consectetur adipisicing elit,\r\n sed do eiusmod tempor incididunt ut labore et. Lorem ipsum dolor sit amet.</p>\r\n <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor\r\n incididunt ut labore et. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed\r\n do eiusmod tempor incididunt ut labore et. Lorem ipsum dolor sit amet.</p>\r\n <table class=\"button\">\r\n <tr>\r\n <td>\r\n <a href=\"#\">Click Me!</a>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n <td class=\"expander\"></td>\r\n </tr>\r\n </table>\r\n </td>\r\n <td class=\"half right wrapper last\">\r\n <table class=\"columns\">\r\n <tr>\r\n <td class=\"panel sidebar-links\">\r\n <h6>Header Thing</h6>\r\n <p>Sub-head or something</p>\r\n <table>\r\n <tr>\r\n <td>\r\n <p><a href=\"#\">Just a Plain Link »</a></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <hr/>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p><a href=\"#\">Just a Plain Link »</a></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <hr/>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p><a href=\"#\">Just a Plain Link »</a></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <hr/>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p><a href=\"#\">Just a Plain Link »</a></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <hr/>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p><a href=\"#\">Just a Plain Link »</a></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <hr/>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p><a href=\"#\">Just a Plain Link »</a></p>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <hr/>\r\n </td>\r\n </tr>\r\n <tr>\r\n <td>\r\n <p><a href=\"#\">Just a Plain Link »</a></p>\r\n </td>\r\n </tr>\r\n <tr><td> </td></tr>\r\n </table>\r\n </td>\r\n <td class=\"expander\"></td>\r\n </tr>\r\n </table>\r\n <br>\r\n <table class=\"columns\">\r\n <tr>\r\n <td class=\"panel\">\r\n <h6>Connect With Us:</h6>\r\n <table class=\"social-button facebook\">\r\n <tr>\r\n <td>\r\n <a href=\"#\">Facebook</a>\r\n </td>\r\n </tr>\r\n </table>\r\n <hr>\r\n <table class=\"social-button twitter\">\r\n <tr>\r\n <td>\r\n <a href=\"#\">Twitter</a>\r\n </td>\r\n </tr>\r\n </table>\r\n <hr>\r\n <table class=\"social-button google-plus\">\r\n <tr>\r\n <td>\r\n <a href=\"#\">Google +</a>\r\n </td>\r\n </tr>\r\n </table>\r\n <br>\r\n <h6>Contact Info:</h6>\r\n {{depend store_phone}}\r\n <p>\r\n <b>Call Us:</b>\r\n <a href=\"tel:{{var phone}}\">{{var store_phone}}</a>\r\n </p>\r\n {{/depend}}\r\n {{depend store_hours}}\r\n <p><span class=\"no-link\">{{var store_hours}}</span><br></p>\r\n {{/depend}}\r\n {{depend store_email}}\r\n <p><b>Email:</b> <a href=\"mailto:{{var store_email}}\">{{var store_email}}</a></p>\r\n {{/depend}}\r\n </td>\r\n <td class=\"expander\"></td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n <table class=\"row\">\r\n <tr>\r\n <td class=\"full wrapper\">\r\n {{block type=\"catalog/product_new\" template=\"email/catalog/product/new.phtml\" products_count=\"4\"\r\n column_count=\"4\" }}\r\n </td>\r\n </tr>\r\n </table>\r\n <table class=\"row\">\r\n <tr>\r\n <td class=\"full wrapper last\">\r\n <table class=\"columns\">\r\n <tr>\r\n <td align=\"center\">\r\n <center>\r\n <p><a href=\"#\">Terms</a> | <a href=\"#\">Privacy</a> | <a href=\"#\">Unsubscribe</a></p>\r\n </center>\r\n </td>\r\n <td class=\"expander\"></td>\r\n </tr>\r\n </table>\r\n </td>\r\n </tr>\r\n </table>\r\n </td>\r\n</tr>\r\n</table>\r\n\r\n{{template config_path=\"design/email/footer\"}}',NULL,'Example Subject','Owner','owner@example.com',0,'2015-04-09 12:40:01',NULL); /*!40000 ALTER TABLE `newsletter_queue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_queue_link` -- DROP TABLE IF EXISTS `newsletter_queue_link`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `newsletter_queue_link` ( `queue_link_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Queue Link Id', `queue_id` int(10) unsigned NOT NULL default '0' COMMENT 'Queue Id', `subscriber_id` int(10) unsigned NOT NULL default '0' COMMENT 'Subscriber Id', `letter_sent_at` timestamp NULL default NULL COMMENT 'Letter Sent At', PRIMARY KEY (`queue_link_id`), KEY `IDX_NEWSLETTER_QUEUE_LINK_SUBSCRIBER_ID` (`subscriber_id`), KEY `IDX_NEWSLETTER_QUEUE_LINK_QUEUE_ID` (`queue_id`), KEY `IDX_NEWSLETTER_QUEUE_LINK_QUEUE_ID_LETTER_SENT_AT` (`queue_id`,`letter_sent_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Link'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `newsletter_queue_link` -- LOCK TABLES `newsletter_queue_link` WRITE; /*!40000 ALTER TABLE `newsletter_queue_link` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletter_queue_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_queue_store_link` -- DROP TABLE IF EXISTS `newsletter_queue_store_link`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `newsletter_queue_store_link` ( `queue_id` int(10) unsigned NOT NULL default '0' COMMENT 'Queue Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', PRIMARY KEY (`queue_id`,`store_id`), KEY `IDX_NEWSLETTER_QUEUE_STORE_LINK_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Store Link'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `newsletter_queue_store_link` -- LOCK TABLES `newsletter_queue_store_link` WRITE; /*!40000 ALTER TABLE `newsletter_queue_store_link` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletter_queue_store_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_subscriber` -- DROP TABLE IF EXISTS `newsletter_subscriber`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `newsletter_subscriber` ( `subscriber_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Subscriber Id', `store_id` smallint(5) unsigned default '0' COMMENT 'Store Id', `change_status_at` timestamp NULL default NULL COMMENT 'Change Status At', `customer_id` int(10) unsigned NOT NULL default '0' COMMENT 'Customer Id', `subscriber_email` varchar(150) default NULL COMMENT 'Subscriber Email', `subscriber_status` int(11) NOT NULL default '0' COMMENT 'Subscriber Status', `subscriber_confirm_code` varchar(32) default 'NULL' COMMENT 'Subscriber Confirm Code', PRIMARY KEY (`subscriber_id`), KEY `IDX_NEWSLETTER_SUBSCRIBER_CUSTOMER_ID` (`customer_id`), KEY `IDX_NEWSLETTER_SUBSCRIBER_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Newsletter Subscriber'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `newsletter_subscriber` -- LOCK TABLES `newsletter_subscriber` WRITE; /*!40000 ALTER TABLE `newsletter_subscriber` DISABLE KEYS */; INSERT INTO `newsletter_subscriber` VALUES (1,1,NULL,0,'serg.kononyuk@gmail.com',1,'d4egf6s7b60xwmofltprhmvszox3783y'); /*!40000 ALTER TABLE `newsletter_subscriber` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_template` -- DROP TABLE IF EXISTS `newsletter_template`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `newsletter_template` ( `template_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Template Id', `template_code` varchar(150) default NULL COMMENT 'Template Code', `template_text` text COMMENT 'Template Text', `template_text_preprocessed` text COMMENT 'Template Text Preprocessed', `template_styles` text COMMENT 'Template Styles', `template_type` int(10) unsigned default NULL COMMENT 'Template Type', `template_subject` varchar(200) default NULL COMMENT 'Template Subject', `template_sender_name` varchar(200) default NULL COMMENT 'Template Sender Name', `template_sender_email` varchar(200) default NULL COMMENT 'Template Sender Email', `template_actual` smallint(5) unsigned default '1' COMMENT 'Template Actual', `added_at` timestamp NULL default NULL COMMENT 'Added At', `modified_at` timestamp NULL default NULL COMMENT 'Modified At', PRIMARY KEY (`template_id`), KEY `IDX_NEWSLETTER_TEMPLATE_TEMPLATE_ACTUAL` (`template_actual`), KEY `IDX_NEWSLETTER_TEMPLATE_ADDED_AT` (`added_at`), KEY `IDX_NEWSLETTER_TEMPLATE_MODIFIED_AT` (`modified_at`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Newsletter Template'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `newsletter_template` -- LOCK TABLES `newsletter_template` WRITE; /*!40000 ALTER TABLE `newsletter_template` DISABLE KEYS */; INSERT INTO `newsletter_template` VALUES (1,'Example Newsletter Template','{{template config_path=\"design/email/header\"}}\n{{inlinecss file=\"email-inline.css\"}}\n\n<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n<tr>\n <td class=\"full\">\n <table class=\"columns\">\n <tr>\n <td class=\"email-heading\">\n <h1>Welcome</h1>\n <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit,\n sed do eiusmod tempor incididunt ut labore et.</p>\n </td>\n <td class=\"store-info\">\n <h4>Contact Us</h4>\n <p>\n {{depend store_phone}}\n <b>Call Us:</b>\n <a href=\"tel:{{var phone}}\">{{var store_phone}}</a><br>\n {{/depend}}\n {{depend store_hours}}\n <span class=\"no-link\">{{var store_hours}}</span><br>\n {{/depend}}\n {{depend store_email}}\n <b>Email:</b> <a href=\"mailto:{{var store_email}}\">{{var store_email}}</a>\n {{/depend}}\n </p>\n </td>\n </tr>\n </table>\n </td>\n</tr>\n<tr>\n <td class=\"full\">\n <table class=\"columns\">\n <tr>\n <td>\n <img width=\"600\" src=\"http://placehold.it/600x200\" class=\"main-image\">\n </td>\n <td class=\"expander\"></td>\n </tr>\n </table>\n <table class=\"columns\">\n <tr>\n <td class=\"panel\">\n <p>Phasellus dictum sapien a neque luctus cursus. Pellentesque sem dolor, fringilla et pharetra\n vitae. <a href=\"#\">Click it! »</a></p>\n </td>\n <td class=\"expander\"></td>\n </tr>\n </table>\n </td>\n</tr>\n<tr>\n <td>\n <table class=\"row\">\n <tr>\n <td class=\"half left wrapper\">\n <table class=\"columns\">\n <tr>\n <td>\n <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor\n incididunt ut labore et. Lorem ipsum dolor sit amet, consectetur adipisicing elit,\n sed do eiusmod tempor incididunt ut labore et. Lorem ipsum dolor sit amet.</p>\n <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor\n incididunt ut labore et. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed\n do eiusmod tempor incididunt ut labore et. Lorem ipsum dolor sit amet.</p>\n <table class=\"button\">\n <tr>\n <td>\n <a href=\"#\">Click Me!</a>\n </td>\n </tr>\n </table>\n </td>\n <td class=\"expander\"></td>\n </tr>\n </table>\n </td>\n <td class=\"half right wrapper last\">\n <table class=\"columns\">\n <tr>\n <td class=\"panel sidebar-links\">\n <h6>Header Thing</h6>\n <p>Sub-head or something</p>\n <table>\n <tr>\n <td>\n <p><a href=\"#\">Just a Plain Link »</a></p>\n </td>\n </tr>\n <tr>\n <td>\n <hr/>\n </td>\n </tr>\n <tr>\n <td>\n <p><a href=\"#\">Just a Plain Link »</a></p>\n </td>\n </tr>\n <tr>\n <td>\n <hr/>\n </td>\n </tr>\n <tr>\n <td>\n <p><a href=\"#\">Just a Plain Link »</a></p>\n </td>\n </tr>\n <tr>\n <td>\n <hr/>\n </td>\n </tr>\n <tr>\n <td>\n <p><a href=\"#\">Just a Plain Link »</a></p>\n </td>\n </tr>\n <tr>\n <td>\n <hr/>\n </td>\n </tr>\n <tr>\n <td>\n <p><a href=\"#\">Just a Plain Link »</a></p>\n </td>\n </tr>\n <tr>\n <td>\n <hr/>\n </td>\n </tr>\n <tr>\n <td>\n <p><a href=\"#\">Just a Plain Link »</a></p>\n </td>\n </tr>\n <tr>\n <td>\n <hr/>\n </td>\n </tr>\n <tr>\n <td>\n <p><a href=\"#\">Just a Plain Link »</a></p>\n </td>\n </tr>\n <tr><td> </td></tr>\n </table>\n </td>\n <td class=\"expander\"></td>\n </tr>\n </table>\n <br>\n <table class=\"columns\">\n <tr>\n <td class=\"panel\">\n <h6>Connect With Us:</h6>\n <table class=\"social-button facebook\">\n <tr>\n <td>\n <a href=\"#\">Facebook</a>\n </td>\n </tr>\n </table>\n <hr>\n <table class=\"social-button twitter\">\n <tr>\n <td>\n <a href=\"#\">Twitter</a>\n </td>\n </tr>\n </table>\n <hr>\n <table class=\"social-button google-plus\">\n <tr>\n <td>\n <a href=\"#\">Google +</a>\n </td>\n </tr>\n </table>\n <br>\n <h6>Contact Info:</h6>\n {{depend store_phone}}\n <p>\n <b>Call Us:</b>\n <a href=\"tel:{{var phone}}\">{{var store_phone}}</a>\n </p>\n {{/depend}}\n {{depend store_hours}}\n <p><span class=\"no-link\">{{var store_hours}}</span><br></p>\n {{/depend}}\n {{depend store_email}}\n <p><b>Email:</b> <a href=\"mailto:{{var store_email}}\">{{var store_email}}</a></p>\n {{/depend}}\n </td>\n <td class=\"expander\"></td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n <table class=\"row\">\n <tr>\n <td class=\"full wrapper\">\n {{block type=\"catalog/product_new\" template=\"email/catalog/product/new.phtml\" products_count=\"4\"\n column_count=\"4\" }}\n </td>\n </tr>\n </table>\n <table class=\"row\">\n <tr>\n <td class=\"full wrapper last\">\n <table class=\"columns\">\n <tr>\n <td align=\"center\">\n <center>\n <p><a href=\"#\">Terms</a> | <a href=\"#\">Privacy</a> | <a href=\"#\">Unsubscribe</a></p>\n </center>\n </td>\n <td class=\"expander\"></td>\n </tr>\n </table>\n </td>\n </tr>\n </table>\n </td>\n</tr>\n</table>\n\n{{template config_path=\"design/email/footer\"}}',NULL,NULL,2,'Example Subject','Owner','owner@example.com',1,'2015-02-08 22:15:46','2015-02-08 22:15:46'); /*!40000 ALTER TABLE `newsletter_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oauth_consumer` -- DROP TABLE IF EXISTS `oauth_consumer`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `oauth_consumer` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `created_at` timestamp NOT NULL default CURRENT_TIMESTAMP COMMENT 'Created At', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', `name` varchar(255) NOT NULL COMMENT 'Name of consumer', `key` varchar(32) NOT NULL COMMENT 'Key code', `secret` varchar(32) NOT NULL COMMENT 'Secret code', `callback_url` varchar(255) default NULL COMMENT 'Callback URL', `rejected_callback_url` varchar(255) NOT NULL COMMENT 'Rejected callback URL', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_OAUTH_CONSUMER_KEY` (`key`), UNIQUE KEY `UNQ_OAUTH_CONSUMER_SECRET` (`secret`), KEY `IDX_OAUTH_CONSUMER_CREATED_AT` (`created_at`), KEY `IDX_OAUTH_CONSUMER_UPDATED_AT` (`updated_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='OAuth Consumers'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `oauth_consumer` -- LOCK TABLES `oauth_consumer` WRITE; /*!40000 ALTER TABLE `oauth_consumer` DISABLE KEYS */; /*!40000 ALTER TABLE `oauth_consumer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oauth_nonce` -- DROP TABLE IF EXISTS `oauth_nonce`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `oauth_nonce` ( `nonce` varchar(32) NOT NULL COMMENT 'Nonce String', `timestamp` int(10) unsigned NOT NULL COMMENT 'Nonce Timestamp', UNIQUE KEY `UNQ_OAUTH_NONCE_NONCE` (`nonce`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='oauth_nonce'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `oauth_nonce` -- LOCK TABLES `oauth_nonce` WRITE; /*!40000 ALTER TABLE `oauth_nonce` DISABLE KEYS */; /*!40000 ALTER TABLE `oauth_nonce` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `oauth_token` -- DROP TABLE IF EXISTS `oauth_token`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `oauth_token` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity ID', `consumer_id` int(10) unsigned NOT NULL COMMENT 'Consumer ID', `admin_id` int(10) unsigned default NULL COMMENT 'Admin user ID', `customer_id` int(10) unsigned default NULL COMMENT 'Customer user ID', `type` varchar(16) NOT NULL COMMENT 'Token Type', `token` varchar(32) NOT NULL COMMENT 'Token', `secret` varchar(32) NOT NULL COMMENT 'Token Secret', `verifier` varchar(32) default NULL COMMENT 'Token Verifier', `callback_url` varchar(255) NOT NULL COMMENT 'Token Callback URL', `revoked` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Token revoked', `authorized` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Token authorized', `created_at` timestamp NOT NULL default CURRENT_TIMESTAMP COMMENT 'Token creation timestamp', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_OAUTH_TOKEN_TOKEN` (`token`), KEY `IDX_OAUTH_TOKEN_CONSUMER_ID` (`consumer_id`), KEY `FK_OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID` (`admin_id`), KEY `FK_OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='OAuth Tokens'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `oauth_token` -- LOCK TABLES `oauth_token` WRITE; /*!40000 ALTER TABLE `oauth_token` DISABLE KEYS */; /*!40000 ALTER TABLE `oauth_token` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paypal_cert` -- DROP TABLE IF EXISTS `paypal_cert`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `paypal_cert` ( `cert_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Cert Id', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website Id', `content` text COMMENT 'Content', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', PRIMARY KEY (`cert_id`), KEY `IDX_PAYPAL_CERT_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Paypal Certificate Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `paypal_cert` -- LOCK TABLES `paypal_cert` WRITE; /*!40000 ALTER TABLE `paypal_cert` DISABLE KEYS */; /*!40000 ALTER TABLE `paypal_cert` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paypal_payment_transaction` -- DROP TABLE IF EXISTS `paypal_payment_transaction`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `paypal_payment_transaction` ( `transaction_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `txn_id` varchar(100) default NULL COMMENT 'Txn Id', `additional_information` blob COMMENT 'Additional Information', `created_at` timestamp NULL default NULL COMMENT 'Created At', PRIMARY KEY (`transaction_id`), UNIQUE KEY `UNQ_PAYPAL_PAYMENT_TRANSACTION_TXN_ID` (`txn_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='PayPal Payflow Link Payment Transaction'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `paypal_payment_transaction` -- LOCK TABLES `paypal_payment_transaction` WRITE; /*!40000 ALTER TABLE `paypal_payment_transaction` DISABLE KEYS */; /*!40000 ALTER TABLE `paypal_payment_transaction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paypal_settlement_report` -- DROP TABLE IF EXISTS `paypal_settlement_report`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `paypal_settlement_report` ( `report_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Report Id', `report_date` timestamp NULL default NULL COMMENT 'Report Date', `account_id` varchar(64) default NULL COMMENT 'Account Id', `filename` varchar(24) default NULL COMMENT 'Filename', `last_modified` timestamp NULL default NULL COMMENT 'Last Modified', PRIMARY KEY (`report_id`), UNIQUE KEY `UNQ_PAYPAL_SETTLEMENT_REPORT_REPORT_DATE_ACCOUNT_ID` (`report_date`,`account_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `paypal_settlement_report` -- LOCK TABLES `paypal_settlement_report` WRITE; /*!40000 ALTER TABLE `paypal_settlement_report` DISABLE KEYS */; /*!40000 ALTER TABLE `paypal_settlement_report` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paypal_settlement_report_row` -- DROP TABLE IF EXISTS `paypal_settlement_report_row`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `paypal_settlement_report_row` ( `row_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Row Id', `report_id` int(10) unsigned NOT NULL COMMENT 'Report Id', `transaction_id` varchar(19) default NULL COMMENT 'Transaction Id', `invoice_id` varchar(127) default NULL COMMENT 'Invoice Id', `paypal_reference_id` varchar(19) default NULL COMMENT 'Paypal Reference Id', `paypal_reference_id_type` varchar(3) default NULL COMMENT 'Paypal Reference Id Type', `transaction_event_code` varchar(5) default NULL COMMENT 'Transaction Event Code', `transaction_initiation_date` timestamp NULL default NULL COMMENT 'Transaction Initiation Date', `transaction_completion_date` timestamp NULL default NULL COMMENT 'Transaction Completion Date', `transaction_debit_or_credit` varchar(2) NOT NULL default 'CR' COMMENT 'Transaction Debit Or Credit', `gross_transaction_amount` decimal(20,6) NOT NULL default '0.000000' COMMENT 'Gross Transaction Amount', `gross_transaction_currency` varchar(3) default '' COMMENT 'Gross Transaction Currency', `fee_debit_or_credit` varchar(2) default NULL COMMENT 'Fee Debit Or Credit', `fee_amount` decimal(20,6) NOT NULL default '0.000000' COMMENT 'Fee Amount', `fee_currency` varchar(3) default NULL COMMENT 'Fee Currency', `custom_field` varchar(255) default NULL COMMENT 'Custom Field', `consumer_id` varchar(127) default NULL COMMENT 'Consumer Id', `payment_tracking_id` varchar(255) default NULL COMMENT 'Payment Tracking ID', `store_id` varchar(50) default NULL COMMENT 'Store ID', PRIMARY KEY (`row_id`), KEY `IDX_PAYPAL_SETTLEMENT_REPORT_ROW_REPORT_ID` (`report_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Row Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `paypal_settlement_report_row` -- LOCK TABLES `paypal_settlement_report_row` WRITE; /*!40000 ALTER TABLE `paypal_settlement_report_row` DISABLE KEYS */; /*!40000 ALTER TABLE `paypal_settlement_report_row` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `persistent_session` -- DROP TABLE IF EXISTS `persistent_session`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `persistent_session` ( `persistent_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Session id', `key` varchar(50) NOT NULL COMMENT 'Unique cookie key', `customer_id` int(10) unsigned default NULL COMMENT 'Customer id', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID', `info` text COMMENT 'Session Data', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', PRIMARY KEY (`persistent_id`), UNIQUE KEY `IDX_PERSISTENT_SESSION_KEY` (`key`), UNIQUE KEY `IDX_PERSISTENT_SESSION_CUSTOMER_ID` (`customer_id`), KEY `IDX_PERSISTENT_SESSION_UPDATED_AT` (`updated_at`), KEY `FK_PERSISTENT_SESSION_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Persistent Session'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `persistent_session` -- LOCK TABLES `persistent_session` WRITE; /*!40000 ALTER TABLE `persistent_session` DISABLE KEYS */; /*!40000 ALTER TABLE `persistent_session` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `poll` -- DROP TABLE IF EXISTS `poll`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `poll` ( `poll_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Poll Id', `poll_title` varchar(255) default NULL COMMENT 'Poll title', `votes_count` int(10) unsigned NOT NULL default '0' COMMENT 'Votes Count', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store id', `date_posted` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Date posted', `date_closed` timestamp NULL default NULL COMMENT 'Date closed', `active` smallint(6) NOT NULL default '1' COMMENT 'Is active', `closed` smallint(6) NOT NULL default '0' COMMENT 'Is closed', `answers_display` smallint(6) default NULL COMMENT 'Answers display', PRIMARY KEY (`poll_id`), KEY `IDX_POLL_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Poll'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `poll` -- LOCK TABLES `poll` WRITE; /*!40000 ALTER TABLE `poll` DISABLE KEYS */; INSERT INTO `poll` VALUES (2,'What is the main reason for you to purchase products online?',22,0,'2015-02-09 01:12:43',NULL,1,0,NULL),(3,'Was ist für ein Grund Produkte online zu kaufen?',21,0,'2015-02-09 01:14:43',NULL,1,0,NULL),(4,'¿Cuál es la razón principal para comprar productos en línea?',21,0,'2015-02-09 01:17:12',NULL,1,0,NULL),(5,'Основная причина покупки товаров в интернет магазине?',21,0,'2015-02-09 01:19:54',NULL,1,0,NULL); /*!40000 ALTER TABLE `poll` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `poll_answer` -- DROP TABLE IF EXISTS `poll_answer`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `poll_answer` ( `answer_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Answer Id', `poll_id` int(10) unsigned NOT NULL default '0' COMMENT 'Poll Id', `answer_title` varchar(255) default NULL COMMENT 'Answer title', `votes_count` int(10) unsigned NOT NULL default '0' COMMENT 'Votes Count', `answer_order` smallint(6) NOT NULL default '0' COMMENT 'Answers display', PRIMARY KEY (`answer_id`), KEY `IDX_POLL_ANSWER_POLL_ID` (`poll_id`) ) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=utf8 COMMENT='Poll Answers'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `poll_answer` -- LOCK TABLES `poll_answer` WRITE; /*!40000 ALTER TABLE `poll_answer` DISABLE KEYS */; INSERT INTO `poll_answer` VALUES (5,2,'More convenient shipping and delivery',0,0),(6,2,'Lower price',1,0),(7,2,'Bigger choice',2,0),(8,2,'Centralized product search procedure (without having to leave your home)',4,0),(9,2,'Payments security',4,0),(10,2,'30-day Money Back Guarantee',5,0),(11,2,'Other',6,0),(12,3,'Bequemer Versand und Lieferung',0,0),(13,3,'Niedrigerer Preis',1,0),(14,3,'größer Auswahl',2,0),(15,3,'Zentrales Produkt Suchverfahren (ohne Ihr Haus zu verlassen)',3,0),(16,3,'Zahlungen Sicherheit',4,0),(17,3,'Sie können Ihre Bestellung innerhalb von 14 Tagen nach Erhalt der Ware zurückschicken.',5,0),(18,3,'Andere.',6,0),(19,4,'Envío y entrega convenientes',0,0),(20,4,'Menor precio',1,0),(21,4,'Mayor elección',2,0),(22,4,'Procedimiento centralizado de búsqueda de productos (sin tener que salir de su casa)',3,0),(23,4,'Seguridad de pagos',4,0),(24,4,'Garantía de devolución de dinero de 30 días',5,0),(25,4,'Otros',6,0),(26,5,'Более удобная перевозка и доставка',0,0),(27,5,'Более низкая цена',1,0),(28,5,'Большой выбор',2,0),(29,5,'Централизованная процедура поиска товара (не выходя из дома)',3,0),(30,5,'Безопасные платежи',4,0),(31,5,'30-дневная гарантия возврата денег',5,0),(32,5,'Другое',6,0); /*!40000 ALTER TABLE `poll_answer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `poll_store` -- DROP TABLE IF EXISTS `poll_store`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `poll_store` ( `poll_id` int(10) unsigned NOT NULL default '0' COMMENT 'Poll Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store id', PRIMARY KEY (`poll_id`,`store_id`), KEY `IDX_POLL_STORE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Poll Store'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `poll_store` -- LOCK TABLES `poll_store` WRITE; /*!40000 ALTER TABLE `poll_store` DISABLE KEYS */; INSERT INTO `poll_store` VALUES (2,1),(3,2),(4,3),(5,4); /*!40000 ALTER TABLE `poll_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `poll_vote` -- DROP TABLE IF EXISTS `poll_vote`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `poll_vote` ( `vote_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Vote Id', `poll_id` int(10) unsigned NOT NULL default '0' COMMENT 'Poll Id', `poll_answer_id` int(10) unsigned NOT NULL default '0' COMMENT 'Poll answer id', `ip_address` bigint(20) default NULL COMMENT 'Poll answer id', `customer_id` int(11) default NULL COMMENT 'Customer id', `vote_time` timestamp NULL default NULL COMMENT 'Date closed', PRIMARY KEY (`vote_id`), KEY `IDX_POLL_VOTE_POLL_ANSWER_ID` (`poll_answer_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Poll Vote'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `poll_vote` -- LOCK TABLES `poll_vote` WRITE; /*!40000 ALTER TABLE `poll_vote` DISABLE KEYS */; INSERT INTO `poll_vote` VALUES (1,2,8,2130706433,1,'2015-02-25 19:00:31'); /*!40000 ALTER TABLE `poll_vote` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_alert_price` -- DROP TABLE IF EXISTS `product_alert_price`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `product_alert_price` ( `alert_price_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Product alert price id', `customer_id` int(10) unsigned NOT NULL default '0' COMMENT 'Customer id', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product id', `price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Price amount', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website id', `add_date` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Product alert add date', `last_send_date` timestamp NULL default NULL COMMENT 'Product alert last send date', `send_count` smallint(5) unsigned NOT NULL default '0' COMMENT 'Product alert send count', `status` smallint(5) unsigned NOT NULL default '0' COMMENT 'Product alert status', PRIMARY KEY (`alert_price_id`), KEY `IDX_PRODUCT_ALERT_PRICE_CUSTOMER_ID` (`customer_id`), KEY `IDX_PRODUCT_ALERT_PRICE_PRODUCT_ID` (`product_id`), KEY `IDX_PRODUCT_ALERT_PRICE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Product Alert Price'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `product_alert_price` -- LOCK TABLES `product_alert_price` WRITE; /*!40000 ALTER TABLE `product_alert_price` DISABLE KEYS */; /*!40000 ALTER TABLE `product_alert_price` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_alert_stock` -- DROP TABLE IF EXISTS `product_alert_stock`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `product_alert_stock` ( `alert_stock_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Product alert stock id', `customer_id` int(10) unsigned NOT NULL default '0' COMMENT 'Customer id', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product id', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website id', `add_date` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Product alert add date', `send_date` timestamp NULL default NULL COMMENT 'Product alert send date', `send_count` smallint(5) unsigned NOT NULL default '0' COMMENT 'Send Count', `status` smallint(5) unsigned NOT NULL default '0' COMMENT 'Product alert status', PRIMARY KEY (`alert_stock_id`), KEY `IDX_PRODUCT_ALERT_STOCK_CUSTOMER_ID` (`customer_id`), KEY `IDX_PRODUCT_ALERT_STOCK_PRODUCT_ID` (`product_id`), KEY `IDX_PRODUCT_ALERT_STOCK_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Product Alert Stock'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `product_alert_stock` -- LOCK TABLES `product_alert_stock` WRITE; /*!40000 ALTER TABLE `product_alert_stock` DISABLE KEYS */; /*!40000 ALTER TABLE `product_alert_stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating` -- DROP TABLE IF EXISTS `rating`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `rating` ( `rating_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Rating Id', `entity_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity Id', `rating_code` varchar(64) NOT NULL COMMENT 'Rating Code', `position` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating Position On Frontend', PRIMARY KEY (`rating_id`), UNIQUE KEY `UNQ_RATING_RATING_CODE` (`rating_code`), KEY `IDX_RATING_ENTITY_ID` (`entity_id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Ratings'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `rating` -- LOCK TABLES `rating` WRITE; /*!40000 ALTER TABLE `rating` DISABLE KEYS */; INSERT INTO `rating` VALUES (1,1,'Quality',0),(2,1,'Value',0),(3,1,'Price',0); /*!40000 ALTER TABLE `rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_entity` -- DROP TABLE IF EXISTS `rating_entity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `rating_entity` ( `entity_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `entity_code` varchar(64) NOT NULL COMMENT 'Entity Code', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_RATING_ENTITY_ENTITY_CODE` (`entity_code`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Rating entities'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `rating_entity` -- LOCK TABLES `rating_entity` WRITE; /*!40000 ALTER TABLE `rating_entity` DISABLE KEYS */; INSERT INTO `rating_entity` VALUES (1,'product'),(2,'product_review'),(3,'review'); /*!40000 ALTER TABLE `rating_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_option` -- DROP TABLE IF EXISTS `rating_option`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `rating_option` ( `option_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rating Option Id', `rating_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating Id', `code` varchar(32) NOT NULL COMMENT 'Rating Option Code', `value` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating Option Value', `position` smallint(5) unsigned NOT NULL default '0' COMMENT 'Ration option position on frontend', PRIMARY KEY (`option_id`), KEY `IDX_RATING_OPTION_RATING_ID` (`rating_id`) ) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='Rating options'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `rating_option` -- LOCK TABLES `rating_option` WRITE; /*!40000 ALTER TABLE `rating_option` DISABLE KEYS */; INSERT INTO `rating_option` VALUES (1,1,'1',1,1),(2,1,'2',2,2),(3,1,'3',3,3),(4,1,'4',4,4),(5,1,'5',5,5),(6,2,'1',1,1),(7,2,'2',2,2),(8,2,'3',3,3),(9,2,'4',4,4),(10,2,'5',5,5),(11,3,'1',1,1),(12,3,'2',2,2),(13,3,'3',3,3),(14,3,'4',4,4),(15,3,'5',5,5); /*!40000 ALTER TABLE `rating_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_option_vote` -- DROP TABLE IF EXISTS `rating_option_vote`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `rating_option_vote` ( `vote_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Vote id', `option_id` int(10) unsigned NOT NULL default '0' COMMENT 'Vote option id', `remote_ip` varchar(16) NOT NULL COMMENT 'Customer IP', `remote_ip_long` bigint(20) NOT NULL default '0' COMMENT 'Customer IP converted to long integer format', `customer_id` int(10) unsigned default '0' COMMENT 'Customer Id', `entity_pk_value` bigint(20) unsigned NOT NULL default '0' COMMENT 'Product id', `rating_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating id', `review_id` bigint(20) unsigned default NULL COMMENT 'Review id', `percent` smallint(6) NOT NULL default '0' COMMENT 'Percent amount', `value` smallint(6) NOT NULL default '0' COMMENT 'Vote option value', PRIMARY KEY (`vote_id`), KEY `IDX_RATING_OPTION_VOTE_OPTION_ID` (`option_id`), KEY `FK_RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` (`review_id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=utf8 COMMENT='Rating option values'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `rating_option_vote` -- LOCK TABLES `rating_option_vote` WRITE; /*!40000 ALTER TABLE `rating_option_vote` DISABLE KEYS */; INSERT INTO `rating_option_vote` VALUES (4,5,'127.0.0.1',2130706433,1,4,1,2,100,5),(5,15,'127.0.0.1',2130706433,1,4,3,2,100,5),(6,10,'127.0.0.1',2130706433,1,4,2,2,100,5),(7,15,'127.0.0.1',2130706433,1,1,3,3,100,5),(8,10,'127.0.0.1',2130706433,1,1,2,3,100,5),(9,5,'127.0.0.1',2130706433,1,1,1,3,100,5),(10,15,'127.0.0.1',2130706433,1,1,3,4,100,5),(11,10,'127.0.0.1',2130706433,1,1,2,4,100,5),(12,5,'127.0.0.1',2130706433,1,1,1,4,100,5),(13,15,'127.0.0.1',2130706433,1,12,3,5,100,5),(14,10,'127.0.0.1',2130706433,1,12,2,5,100,5),(15,5,'127.0.0.1',2130706433,1,12,1,5,100,5),(16,15,'127.0.0.1',2130706433,1,15,3,6,100,5),(17,10,'127.0.0.1',2130706433,1,15,2,6,100,5),(18,5,'127.0.0.1',2130706433,1,15,1,6,100,5),(19,15,'127.0.0.1',2130706433,1,17,3,7,100,5),(20,10,'127.0.0.1',2130706433,1,17,2,7,100,5),(21,5,'127.0.0.1',2130706433,1,17,1,7,100,5),(22,15,'127.0.0.1',2130706433,1,5,3,8,100,5),(23,10,'127.0.0.1',2130706433,1,5,2,8,100,5),(24,5,'127.0.0.1',2130706433,1,5,1,8,100,5),(25,15,'127.0.0.1',2130706433,1,18,3,9,100,5),(26,10,'127.0.0.1',2130706433,1,18,2,9,100,5),(27,5,'127.0.0.1',2130706433,1,18,1,9,100,5); /*!40000 ALTER TABLE `rating_option_vote` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_option_vote_aggregated` -- DROP TABLE IF EXISTS `rating_option_vote_aggregated`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `rating_option_vote_aggregated` ( `primary_id` int(11) NOT NULL auto_increment COMMENT 'Vote aggregation id', `rating_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating id', `entity_pk_value` bigint(20) unsigned NOT NULL default '0' COMMENT 'Product id', `vote_count` int(10) unsigned NOT NULL default '0' COMMENT 'Vote dty', `vote_value_sum` int(10) unsigned NOT NULL default '0' COMMENT 'General vote sum', `percent` smallint(6) NOT NULL default '0' COMMENT 'Vote percent', `percent_approved` smallint(6) default '0' COMMENT 'Vote percent approved by admin', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', PRIMARY KEY (`primary_id`), KEY `IDX_RATING_OPTION_VOTE_AGGREGATED_RATING_ID` (`rating_id`), KEY `IDX_RATING_OPTION_VOTE_AGGREGATED_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=112 DEFAULT CHARSET=utf8 COMMENT='Rating vote aggregated'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `rating_option_vote_aggregated` -- LOCK TABLES `rating_option_vote_aggregated` WRITE; /*!40000 ALTER TABLE `rating_option_vote_aggregated` DISABLE KEYS */; INSERT INTO `rating_option_vote_aggregated` VALUES (7,1,4,1,5,100,100,0),(8,1,4,1,5,100,100,1),(9,3,4,1,5,100,100,0),(10,3,4,1,5,100,100,1),(11,2,4,1,5,100,100,0),(12,2,4,1,5,100,100,1),(13,1,4,1,5,100,100,2),(14,1,4,1,5,100,100,3),(15,1,4,1,5,100,100,4),(16,2,4,1,5,100,100,2),(17,2,4,1,5,100,100,3),(18,2,4,1,5,100,100,4),(19,3,4,1,5,100,100,2),(20,3,4,1,5,100,100,3),(21,3,4,1,5,100,100,4),(22,3,1,2,10,100,100,0),(23,3,1,2,10,100,100,1),(24,2,1,2,10,100,100,0),(25,2,1,2,10,100,100,1),(26,1,1,2,10,100,100,0),(27,1,1,2,10,100,100,1),(28,1,1,2,10,100,100,2),(29,1,1,2,10,100,100,3),(30,1,1,2,10,100,100,4),(31,2,1,2,10,100,100,2),(32,2,1,2,10,100,100,3),(33,2,1,2,10,100,100,4),(34,3,1,2,10,100,100,2),(35,3,1,2,10,100,100,3),(36,3,1,2,10,100,100,4),(37,3,12,1,5,100,100,0),(38,3,12,1,5,100,100,1),(39,2,12,1,5,100,100,0),(40,2,12,1,5,100,100,1),(41,1,12,1,5,100,100,0),(42,1,12,1,5,100,100,1),(43,1,12,1,5,100,100,2),(44,1,12,1,5,100,100,3),(45,1,12,1,5,100,100,4),(46,2,12,1,5,100,100,2),(47,2,12,1,5,100,100,3),(48,2,12,1,5,100,100,4),(49,3,12,1,5,100,100,2),(50,3,12,1,5,100,100,3),(51,3,12,1,5,100,100,4),(52,3,15,1,5,100,100,0),(53,3,15,1,5,100,100,1),(54,2,15,1,5,100,100,0),(55,2,15,1,5,100,100,1),(56,1,15,1,5,100,100,0),(57,1,15,1,5,100,100,1),(58,1,15,1,5,100,100,2),(59,1,15,1,5,100,100,3),(60,1,15,1,5,100,100,4),(61,2,15,1,5,100,100,2),(62,2,15,1,5,100,100,3),(63,2,15,1,5,100,100,4),(64,3,15,1,5,100,100,2),(65,3,15,1,5,100,100,3),(66,3,15,1,5,100,100,4),(67,3,17,1,5,100,100,0),(68,3,17,1,5,100,100,1),(69,2,17,1,5,100,100,0),(70,2,17,1,5,100,100,1),(71,1,17,1,5,100,100,0),(72,1,17,1,5,100,100,1),(73,3,5,1,5,100,100,0),(74,3,5,1,5,100,100,1),(75,2,5,1,5,100,100,0),(76,2,5,1,5,100,100,1),(77,1,5,1,5,100,100,0),(78,1,5,1,5,100,100,1),(79,1,5,1,5,100,100,2),(80,1,5,1,5,100,100,3),(81,1,5,1,5,100,100,4),(82,2,5,1,5,100,100,2),(83,2,5,1,5,100,100,3),(84,2,5,1,5,100,100,4),(85,3,5,1,5,100,100,2),(86,3,5,1,5,100,100,3),(87,3,5,1,5,100,100,4),(88,1,17,1,5,100,100,2),(89,1,17,1,5,100,100,3),(90,1,17,1,5,100,100,4),(91,2,17,1,5,100,100,2),(92,2,17,1,5,100,100,3),(93,2,17,1,5,100,100,4),(94,3,17,1,5,100,100,2),(95,3,17,1,5,100,100,3),(96,3,17,1,5,100,100,4),(97,3,18,1,5,100,100,0),(98,3,18,1,5,100,100,1),(99,2,18,1,5,100,100,0),(100,2,18,1,5,100,100,1),(101,1,18,1,5,100,100,0),(102,1,18,1,5,100,100,1),(103,1,18,1,5,100,100,2),(104,1,18,1,5,100,100,3),(105,1,18,1,5,100,100,4),(106,2,18,1,5,100,100,2),(107,2,18,1,5,100,100,3),(108,2,18,1,5,100,100,4),(109,3,18,1,5,100,100,2),(110,3,18,1,5,100,100,3),(111,3,18,1,5,100,100,4); /*!40000 ALTER TABLE `rating_option_vote_aggregated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_store` -- DROP TABLE IF EXISTS `rating_store`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `rating_store` ( `rating_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store id', PRIMARY KEY (`rating_id`,`store_id`), KEY `IDX_RATING_STORE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Rating Store'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `rating_store` -- LOCK TABLES `rating_store` WRITE; /*!40000 ALTER TABLE `rating_store` DISABLE KEYS */; INSERT INTO `rating_store` VALUES (1,0),(1,1),(1,2),(1,3),(1,4),(2,0),(2,1),(2,2),(2,3),(2,4),(3,0),(3,1),(3,2),(3,3),(3,4); /*!40000 ALTER TABLE `rating_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_title` -- DROP TABLE IF EXISTS `rating_title`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `rating_title` ( `rating_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `value` varchar(255) NOT NULL COMMENT 'Rating Label', PRIMARY KEY (`rating_id`,`store_id`), KEY `IDX_RATING_TITLE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Rating Title'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `rating_title` -- LOCK TABLES `rating_title` WRITE; /*!40000 ALTER TABLE `rating_title` DISABLE KEYS */; /*!40000 ALTER TABLE `rating_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_compared_product_index` -- DROP TABLE IF EXISTS `report_compared_product_index`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `report_compared_product_index` ( `index_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Index Id', `visitor_id` int(10) unsigned default NULL COMMENT 'Visitor Id', `customer_id` int(10) unsigned default NULL COMMENT 'Customer Id', `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `added_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Added At', PRIMARY KEY (`index_id`), UNIQUE KEY `UNQ_REPORT_COMPARED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`), UNIQUE KEY `UNQ_REPORT_COMPARED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`), KEY `IDX_REPORT_COMPARED_PRODUCT_INDEX_STORE_ID` (`store_id`), KEY `IDX_REPORT_COMPARED_PRODUCT_INDEX_ADDED_AT` (`added_at`), KEY `IDX_REPORT_COMPARED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Reports Compared Product Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `report_compared_product_index` -- LOCK TABLES `report_compared_product_index` WRITE; /*!40000 ALTER TABLE `report_compared_product_index` DISABLE KEYS */; INSERT INTO `report_compared_product_index` VALUES (1,38,NULL,1,1,'2015-04-10 17:54:35'); /*!40000 ALTER TABLE `report_compared_product_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_event` -- DROP TABLE IF EXISTS `report_event`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `report_event` ( `event_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Event Id', `logged_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Logged At', `event_type_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Event Type Id', `object_id` int(10) unsigned NOT NULL default '0' COMMENT 'Object Id', `subject_id` int(10) unsigned NOT NULL default '0' COMMENT 'Subject Id', `subtype` smallint(5) unsigned NOT NULL default '0' COMMENT 'Subtype', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id', PRIMARY KEY (`event_id`), KEY `IDX_REPORT_EVENT_EVENT_TYPE_ID` (`event_type_id`), KEY `IDX_REPORT_EVENT_SUBJECT_ID` (`subject_id`), KEY `IDX_REPORT_EVENT_OBJECT_ID` (`object_id`), KEY `IDX_REPORT_EVENT_SUBTYPE` (`subtype`), KEY `IDX_REPORT_EVENT_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=75 DEFAULT CHARSET=utf8 COMMENT='Reports Event Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `report_event` -- LOCK TABLES `report_event` WRITE; /*!40000 ALTER TABLE `report_event` DISABLE KEYS */; INSERT INTO `report_event` VALUES (1,'2015-02-24 21:11:35',1,1,7,1,4),(2,'2015-02-24 21:11:55',1,1,7,1,4),(3,'2015-02-24 21:12:10',1,1,7,1,1),(4,'2015-02-25 12:59:43',1,1,8,1,1),(5,'2015-02-25 13:48:03',1,2,8,1,1),(6,'2015-02-25 15:20:06',1,1,8,1,1),(7,'2015-02-25 16:59:10',1,9,8,1,1),(8,'2015-02-25 17:35:45',1,9,1,0,1),(9,'2015-02-25 17:38:24',1,4,1,0,1),(10,'2015-02-25 18:12:02',1,2,1,0,1),(11,'2015-02-25 18:14:18',1,2,1,0,1),(12,'2015-02-25 18:15:02',1,2,1,0,1),(13,'2015-02-25 18:18:12',1,1,1,0,1),(14,'2015-02-25 18:18:43',1,1,1,0,1),(15,'2015-02-25 18:20:23',1,1,1,0,1),(16,'2015-02-25 18:33:09',1,13,1,0,1),(17,'2015-02-25 18:33:49',1,13,1,0,1),(18,'2015-02-25 18:34:56',1,8,1,0,1),(19,'2015-02-25 18:35:39',1,8,1,0,1),(20,'2015-02-25 18:36:10',1,5,1,0,1),(21,'2015-02-25 18:37:03',1,5,1,0,1),(22,'2015-02-25 18:37:27',1,5,1,0,1),(23,'2015-02-25 18:37:58',1,4,1,0,1),(24,'2015-02-25 18:38:20',1,4,1,0,1),(25,'2015-02-25 18:39:11',1,4,1,0,1),(26,'2015-02-25 18:40:01',1,3,1,0,1),(27,'2015-02-25 18:40:44',1,3,1,0,1),(28,'2015-02-25 18:41:08',1,3,1,0,1),(29,'2015-02-25 18:41:30',1,14,1,0,1),(30,'2015-02-25 18:42:57',1,14,1,0,1),(31,'2015-02-25 18:43:47',1,14,1,0,1),(32,'2015-02-25 18:44:29',1,19,1,0,1),(33,'2015-02-25 18:44:59',1,19,1,0,1),(34,'2015-02-25 18:45:19',1,19,1,0,1),(35,'2015-02-25 18:45:26',1,10,1,0,1),(36,'2015-02-25 18:46:04',1,10,1,0,1),(37,'2015-02-25 18:46:43',1,10,1,0,1),(38,'2015-02-25 18:47:41',1,12,1,0,1),(39,'2015-02-25 18:48:17',1,12,1,0,1),(40,'2015-02-25 18:48:44',1,12,1,0,1),(41,'2015-02-25 18:51:08',1,15,1,0,1),(42,'2015-02-25 18:51:53',1,15,1,0,1),(43,'2015-02-25 18:52:27',1,15,1,0,1),(44,'2015-02-25 18:52:34',1,8,1,0,1),(45,'2015-02-25 18:52:42',1,6,1,0,1),(46,'2015-02-25 18:52:59',1,15,1,0,1),(47,'2015-02-25 18:53:10',1,8,1,0,1),(48,'2015-02-25 18:53:21',1,6,1,0,1),(49,'2015-02-25 18:53:44',1,6,1,0,1),(50,'2015-02-25 18:54:06',1,8,1,0,1),(51,'2015-02-25 18:54:33',1,8,1,0,1),(52,'2015-02-25 18:56:32',1,17,1,0,1),(53,'2015-02-25 18:57:27',1,5,1,0,1),(54,'2015-02-25 19:01:22',1,18,1,0,1),(55,'2015-02-25 19:18:25',1,4,11,1,1),(56,'2015-02-25 19:20:25',1,3,1,0,1),(57,'2015-02-25 19:21:05',1,17,1,0,1),(58,'2015-04-01 13:09:37',1,3,15,1,1),(59,'2015-04-01 13:09:47',1,3,15,1,2),(60,'2015-04-01 13:15:21',1,3,15,1,2),(61,'2015-04-01 13:15:39',1,3,15,1,2),(62,'2015-04-01 13:16:24',1,3,15,1,2),(63,'2015-04-07 18:37:53',1,6,27,1,1),(64,'2015-04-07 18:38:10',4,6,27,1,1),(65,'2015-04-07 18:38:10',1,6,27,1,1),(66,'2015-04-09 17:09:32',1,9,36,1,1),(67,'2015-04-09 17:29:35',1,13,36,1,1),(68,'2015-04-09 17:29:42',4,13,36,1,1),(69,'2015-04-09 17:29:43',1,13,36,1,1),(70,'2015-04-09 17:31:38',1,5,36,1,1),(71,'2015-04-10 17:54:35',3,1,38,1,1),(72,'2015-04-10 18:05:12',1,9,38,1,1),(73,'2015-04-13 12:00:41',1,6,40,1,1),(74,'2015-04-13 17:48:11',1,9,39,1,1); /*!40000 ALTER TABLE `report_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_event_types` -- DROP TABLE IF EXISTS `report_event_types`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `report_event_types` ( `event_type_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Event Type Id', `event_name` varchar(64) NOT NULL COMMENT 'Event Name', `customer_login` smallint(5) unsigned NOT NULL default '0' COMMENT 'Customer Login', PRIMARY KEY (`event_type_id`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Reports Event Type Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `report_event_types` -- LOCK TABLES `report_event_types` WRITE; /*!40000 ALTER TABLE `report_event_types` DISABLE KEYS */; INSERT INTO `report_event_types` VALUES (1,'catalog_product_view',0),(2,'sendfriend_product',0),(3,'catalog_product_compare_add_product',0),(4,'checkout_cart_add_product',0),(5,'wishlist_add_product',0),(6,'wishlist_share',0); /*!40000 ALTER TABLE `report_event_types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_viewed_product_aggregated_daily` -- DROP TABLE IF EXISTS `report_viewed_product_aggregated_daily`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `report_viewed_product_aggregated_daily` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `product_id` int(10) unsigned default NULL COMMENT 'Product Id', `product_name` varchar(255) default NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Product Price', `views_num` int(11) NOT NULL default '0' COMMENT 'Number of Views', `rating_pos` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_REPORT_VIEWED_PRD_AGGRED_DAILY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`), KEY `IDX_REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID` (`store_id`), KEY `IDX_REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Daily'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `report_viewed_product_aggregated_daily` -- LOCK TABLES `report_viewed_product_aggregated_daily` WRITE; /*!40000 ALTER TABLE `report_viewed_product_aggregated_daily` DISABLE KEYS */; /*!40000 ALTER TABLE `report_viewed_product_aggregated_daily` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_viewed_product_aggregated_monthly` -- DROP TABLE IF EXISTS `report_viewed_product_aggregated_monthly`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `report_viewed_product_aggregated_monthly` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `product_id` int(10) unsigned default NULL COMMENT 'Product Id', `product_name` varchar(255) default NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Product Price', `views_num` int(11) NOT NULL default '0' COMMENT 'Number of Views', `rating_pos` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_REPORT_VIEWED_PRD_AGGRED_MONTHLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`), KEY `IDX_REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID` (`store_id`), KEY `IDX_REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Monthly'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `report_viewed_product_aggregated_monthly` -- LOCK TABLES `report_viewed_product_aggregated_monthly` WRITE; /*!40000 ALTER TABLE `report_viewed_product_aggregated_monthly` DISABLE KEYS */; /*!40000 ALTER TABLE `report_viewed_product_aggregated_monthly` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_viewed_product_aggregated_yearly` -- DROP TABLE IF EXISTS `report_viewed_product_aggregated_yearly`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `report_viewed_product_aggregated_yearly` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `product_id` int(10) unsigned default NULL COMMENT 'Product Id', `product_name` varchar(255) default NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Product Price', `views_num` int(11) NOT NULL default '0' COMMENT 'Number of Views', `rating_pos` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_REPORT_VIEWED_PRD_AGGRED_YEARLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`), KEY `IDX_REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID` (`store_id`), KEY `IDX_REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Yearly'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `report_viewed_product_aggregated_yearly` -- LOCK TABLES `report_viewed_product_aggregated_yearly` WRITE; /*!40000 ALTER TABLE `report_viewed_product_aggregated_yearly` DISABLE KEYS */; /*!40000 ALTER TABLE `report_viewed_product_aggregated_yearly` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_viewed_product_index` -- DROP TABLE IF EXISTS `report_viewed_product_index`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `report_viewed_product_index` ( `index_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Index Id', `visitor_id` int(10) unsigned default NULL COMMENT 'Visitor Id', `customer_id` int(10) unsigned default NULL COMMENT 'Customer Id', `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `added_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Added At', PRIMARY KEY (`index_id`), UNIQUE KEY `UNQ_REPORT_VIEWED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`), UNIQUE KEY `UNQ_REPORT_VIEWED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`), KEY `IDX_REPORT_VIEWED_PRODUCT_INDEX_STORE_ID` (`store_id`), KEY `IDX_REPORT_VIEWED_PRODUCT_INDEX_ADDED_AT` (`added_at`), KEY `IDX_REPORT_VIEWED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM AUTO_INCREMENT=63 DEFAULT CHARSET=utf8 COMMENT='Reports Viewed Product Index Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `report_viewed_product_index` -- LOCK TABLES `report_viewed_product_index` WRITE; /*!40000 ALTER TABLE `report_viewed_product_index` DISABLE KEYS */; INSERT INTO `report_viewed_product_index` VALUES (1,7,NULL,1,1,'2015-02-24 21:12:09'),(2,8,1,1,1,'2015-02-25 18:20:22'),(3,8,1,2,1,'2015-02-25 18:15:01'),(5,8,1,9,1,'2015-02-25 17:35:45'),(7,8,1,4,1,'2015-02-25 18:39:10'),(14,8,1,13,1,'2015-02-25 18:33:49'),(16,8,1,8,1,'2015-02-25 18:54:32'),(18,8,1,5,1,'2015-02-25 18:57:27'),(24,8,1,3,1,'2015-02-25 19:20:25'),(27,8,1,14,1,'2015-02-25 18:43:47'),(30,8,1,19,1,'2015-02-25 18:45:19'),(33,8,1,10,1,'2015-02-25 18:46:43'),(36,8,1,12,1,'2015-02-25 18:48:44'),(39,8,1,15,1,'2015-02-25 18:52:59'),(43,8,1,6,1,'2015-02-25 18:53:44'),(50,8,1,17,1,'2015-02-25 19:21:05'),(52,8,1,18,1,'2015-02-25 19:01:22'),(53,11,NULL,4,1,'2015-02-25 19:18:25'),(54,15,NULL,3,2,'2015-04-01 13:16:24'),(55,27,NULL,6,1,'2015-04-07 18:38:10'),(56,36,NULL,9,1,'2015-04-09 17:09:32'),(57,36,NULL,13,1,'2015-04-09 17:29:42'),(59,36,NULL,5,1,'2015-04-09 17:31:38'),(60,38,NULL,9,1,'2015-04-10 18:05:12'),(61,40,NULL,6,1,'2015-04-13 12:00:41'),(62,39,NULL,9,1,'2015-04-13 17:48:10'); /*!40000 ALTER TABLE `report_viewed_product_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review` -- DROP TABLE IF EXISTS `review`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `review` ( `review_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Review id', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Review create date', `entity_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Entity id', `entity_pk_value` int(10) unsigned NOT NULL default '0' COMMENT 'Product id', `status_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Status code', PRIMARY KEY (`review_id`), KEY `IDX_REVIEW_ENTITY_ID` (`entity_id`), KEY `IDX_REVIEW_STATUS_ID` (`status_id`), KEY `IDX_REVIEW_ENTITY_PK_VALUE` (`entity_pk_value`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Review base information'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `review` -- LOCK TABLES `review` WRITE; /*!40000 ALTER TABLE `review` DISABLE KEYS */; INSERT INTO `review` VALUES (2,'2015-02-25 17:39:04',1,4,1),(3,'2015-02-25 18:20:55',1,1,1),(4,'2015-02-25 18:30:49',1,1,1),(5,'2015-02-25 18:49:42',1,12,1),(6,'2015-02-25 18:54:52',1,15,1),(7,'2015-02-25 18:57:19',1,17,1),(8,'2015-02-25 18:58:11',1,5,1),(9,'2015-02-25 19:02:13',1,18,1); /*!40000 ALTER TABLE `review` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_detail` -- DROP TABLE IF EXISTS `review_detail`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `review_detail` ( `detail_id` bigint(20) unsigned NOT NULL auto_increment COMMENT 'Review detail id', `review_id` bigint(20) unsigned NOT NULL default '0' COMMENT 'Review id', `store_id` smallint(5) unsigned default '0' COMMENT 'Store id', `title` varchar(255) NOT NULL COMMENT 'Title', `detail` text NOT NULL COMMENT 'Detail description', `nickname` varchar(128) NOT NULL COMMENT 'User nickname', `customer_id` int(10) unsigned default NULL COMMENT 'Customer Id', PRIMARY KEY (`detail_id`), KEY `IDX_REVIEW_DETAIL_REVIEW_ID` (`review_id`), KEY `IDX_REVIEW_DETAIL_STORE_ID` (`store_id`), KEY `IDX_REVIEW_DETAIL_CUSTOMER_ID` (`customer_id`) ) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Review detail information'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `review_detail` -- LOCK TABLES `review_detail` WRITE; /*!40000 ALTER TABLE `review_detail` DISABLE KEYS */; INSERT INTO `review_detail` VALUES (2,2,1,'Nice','I like it!','user',1),(3,3,1,'Nice','Good!','user',1),(4,4,1,'Good','Nice book!','user',1),(5,5,1,'Nice','Good!','user',1),(6,6,1,'I Like','Very useful!','user',1),(7,7,1,'Good','Nice!','user',1),(8,8,1,'Nice','Very good!','user',1),(9,9,1,'Nice','Good!','user',1); /*!40000 ALTER TABLE `review_detail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_entity` -- DROP TABLE IF EXISTS `review_entity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `review_entity` ( `entity_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Review entity id', `entity_code` varchar(32) NOT NULL COMMENT 'Review entity code', PRIMARY KEY (`entity_id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Review entities'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `review_entity` -- LOCK TABLES `review_entity` WRITE; /*!40000 ALTER TABLE `review_entity` DISABLE KEYS */; INSERT INTO `review_entity` VALUES (1,'product'),(2,'customer'),(3,'category'); /*!40000 ALTER TABLE `review_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_entity_summary` -- DROP TABLE IF EXISTS `review_entity_summary`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `review_entity_summary` ( `primary_id` bigint(20) NOT NULL auto_increment COMMENT 'Summary review entity id', `entity_pk_value` bigint(20) NOT NULL default '0' COMMENT 'Product id', `entity_type` smallint(6) NOT NULL default '0' COMMENT 'Entity type id', `reviews_count` smallint(6) NOT NULL default '0' COMMENT 'Qty of reviews', `rating_summary` smallint(6) NOT NULL default '0' COMMENT 'Summarized rating', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store id', PRIMARY KEY (`primary_id`), KEY `IDX_REVIEW_ENTITY_SUMMARY_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=utf8 COMMENT='Review aggregates'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `review_entity_summary` -- LOCK TABLES `review_entity_summary` WRITE; /*!40000 ALTER TABLE `review_entity_summary` DISABLE KEYS */; INSERT INTO `review_entity_summary` VALUES (1,9,1,0,0,1),(2,9,1,0,0,2),(3,9,1,0,0,3),(4,9,1,0,0,4),(5,9,1,1,100,0),(6,4,1,1,100,1),(7,4,1,1,100,2),(8,4,1,1,100,3),(9,4,1,1,100,4),(10,4,1,1,100,0),(11,1,1,2,100,1),(12,1,1,2,100,2),(13,1,1,2,100,3),(14,1,1,2,100,4),(15,1,1,2,100,0),(16,12,1,1,100,1),(17,12,1,1,100,2),(18,12,1,1,100,3),(19,12,1,1,100,4),(20,12,1,1,100,0),(21,15,1,1,100,1),(22,15,1,1,100,2),(23,15,1,1,100,3),(24,15,1,1,100,4),(25,15,1,1,100,0),(26,17,1,1,100,1),(27,17,1,1,100,2),(28,17,1,1,100,3),(29,17,1,1,100,4),(30,5,1,1,100,1),(31,5,1,1,100,2),(32,5,1,1,100,3),(33,5,1,1,100,4),(34,17,1,1,100,0),(35,5,1,1,100,0),(36,18,1,1,100,1),(37,18,1,1,100,2),(38,18,1,1,100,3),(39,18,1,1,100,4),(40,18,1,1,100,0); /*!40000 ALTER TABLE `review_entity_summary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_status` -- DROP TABLE IF EXISTS `review_status`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `review_status` ( `status_id` smallint(5) unsigned NOT NULL auto_increment COMMENT 'Status id', `status_code` varchar(32) NOT NULL COMMENT 'Status code', PRIMARY KEY (`status_id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Review statuses'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `review_status` -- LOCK TABLES `review_status` WRITE; /*!40000 ALTER TABLE `review_status` DISABLE KEYS */; INSERT INTO `review_status` VALUES (1,'Approved'),(2,'Pending'),(3,'Not Approved'); /*!40000 ALTER TABLE `review_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_store` -- DROP TABLE IF EXISTS `review_store`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `review_store` ( `review_id` bigint(20) unsigned NOT NULL COMMENT 'Review Id', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id', PRIMARY KEY (`review_id`,`store_id`), KEY `IDX_REVIEW_STORE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Review Store'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `review_store` -- LOCK TABLES `review_store` WRITE; /*!40000 ALTER TABLE `review_store` DISABLE KEYS */; INSERT INTO `review_store` VALUES (2,0),(2,1),(2,2),(2,3),(2,4),(3,0),(3,1),(3,2),(3,3),(3,4),(4,0),(4,1),(4,2),(4,3),(4,4),(5,0),(5,1),(5,2),(5,3),(5,4),(6,0),(6,1),(6,2),(6,3),(6,4),(7,0),(7,1),(7,2),(7,3),(7,4),(8,0),(8,1),(8,2),(8,3),(8,4),(9,0),(9,1),(9,2),(9,3),(9,4); /*!40000 ALTER TABLE `review_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_bestsellers_aggregated_daily` -- DROP TABLE IF EXISTS `sales_bestsellers_aggregated_daily`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_bestsellers_aggregated_daily` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `product_id` int(10) unsigned default NULL COMMENT 'Product Id', `product_name` varchar(255) default NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Product Price', `qty_ordered` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty Ordered', `rating_pos` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_SALES_BESTSELLERS_AGGRED_DAILY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`), KEY `IDX_SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID` (`store_id`), KEY `IDX_SALES_BESTSELLERS_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Daily'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_bestsellers_aggregated_daily` -- LOCK TABLES `sales_bestsellers_aggregated_daily` WRITE; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_daily` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_daily` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_bestsellers_aggregated_monthly` -- DROP TABLE IF EXISTS `sales_bestsellers_aggregated_monthly`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_bestsellers_aggregated_monthly` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `product_id` int(10) unsigned default NULL COMMENT 'Product Id', `product_name` varchar(255) default NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Product Price', `qty_ordered` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty Ordered', `rating_pos` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_SALES_BESTSELLERS_AGGRED_MONTHLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`), KEY `IDX_SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID` (`store_id`), KEY `IDX_SALES_BESTSELLERS_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Monthly'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_bestsellers_aggregated_monthly` -- LOCK TABLES `sales_bestsellers_aggregated_monthly` WRITE; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_monthly` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_monthly` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_bestsellers_aggregated_yearly` -- DROP TABLE IF EXISTS `sales_bestsellers_aggregated_yearly`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_bestsellers_aggregated_yearly` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `product_id` int(10) unsigned default NULL COMMENT 'Product Id', `product_name` varchar(255) default NULL COMMENT 'Product Name', `product_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Product Price', `qty_ordered` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty Ordered', `rating_pos` smallint(5) unsigned NOT NULL default '0' COMMENT 'Rating Pos', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_SALES_BESTSELLERS_AGGRED_YEARLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`), KEY `IDX_SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID` (`store_id`), KEY `IDX_SALES_BESTSELLERS_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Yearly'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_bestsellers_aggregated_yearly` -- LOCK TABLES `sales_bestsellers_aggregated_yearly` WRITE; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_yearly` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_bestsellers_aggregated_yearly` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_billing_agreement` -- DROP TABLE IF EXISTS `sales_billing_agreement`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_billing_agreement` ( `agreement_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Agreement Id', `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer Id', `method_code` varchar(32) NOT NULL COMMENT 'Method Code', `reference_id` varchar(32) NOT NULL COMMENT 'Reference Id', `status` varchar(20) NOT NULL COMMENT 'Status', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `agreement_label` varchar(255) default NULL COMMENT 'Agreement Label', PRIMARY KEY (`agreement_id`), KEY `IDX_SALES_BILLING_AGREEMENT_CUSTOMER_ID` (`customer_id`), KEY `IDX_SALES_BILLING_AGREEMENT_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_billing_agreement` -- LOCK TABLES `sales_billing_agreement` WRITE; /*!40000 ALTER TABLE `sales_billing_agreement` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_billing_agreement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_billing_agreement_order` -- DROP TABLE IF EXISTS `sales_billing_agreement_order`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_billing_agreement_order` ( `agreement_id` int(10) unsigned NOT NULL COMMENT 'Agreement Id', `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id', PRIMARY KEY (`agreement_id`,`order_id`), KEY `IDX_SALES_BILLING_AGREEMENT_ORDER_ORDER_ID` (`order_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement Order'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_billing_agreement_order` -- LOCK TABLES `sales_billing_agreement_order` WRITE; /*!40000 ALTER TABLE `sales_billing_agreement_order` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_billing_agreement_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_creditmemo` -- DROP TABLE IF EXISTS `sales_flat_creditmemo`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_creditmemo` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `adjustment_positive` decimal(12,4) default NULL COMMENT 'Adjustment Positive', `base_shipping_tax_amount` decimal(12,4) default NULL COMMENT 'Base Shipping Tax Amount', `store_to_order_rate` decimal(12,4) default NULL COMMENT 'Store To Order Rate', `base_discount_amount` decimal(12,4) default NULL COMMENT 'Base Discount Amount', `base_to_order_rate` decimal(12,4) default NULL COMMENT 'Base To Order Rate', `grand_total` decimal(12,4) default NULL COMMENT 'Grand Total', `base_adjustment_negative` decimal(12,4) default NULL COMMENT 'Base Adjustment Negative', `base_subtotal_incl_tax` decimal(12,4) default NULL COMMENT 'Base Subtotal Incl Tax', `shipping_amount` decimal(12,4) default NULL COMMENT 'Shipping Amount', `subtotal_incl_tax` decimal(12,4) default NULL COMMENT 'Subtotal Incl Tax', `adjustment_negative` decimal(12,4) default NULL COMMENT 'Adjustment Negative', `base_shipping_amount` decimal(12,4) default NULL COMMENT 'Base Shipping Amount', `store_to_base_rate` decimal(12,4) default NULL COMMENT 'Store To Base Rate', `base_to_global_rate` decimal(12,4) default NULL COMMENT 'Base To Global Rate', `base_adjustment` decimal(12,4) default NULL COMMENT 'Base Adjustment', `base_subtotal` decimal(12,4) default NULL COMMENT 'Base Subtotal', `discount_amount` decimal(12,4) default NULL COMMENT 'Discount Amount', `subtotal` decimal(12,4) default NULL COMMENT 'Subtotal', `adjustment` decimal(12,4) default NULL COMMENT 'Adjustment', `base_grand_total` decimal(12,4) default NULL COMMENT 'Base Grand Total', `base_adjustment_positive` decimal(12,4) default NULL COMMENT 'Base Adjustment Positive', `base_tax_amount` decimal(12,4) default NULL COMMENT 'Base Tax Amount', `shipping_tax_amount` decimal(12,4) default NULL COMMENT 'Shipping Tax Amount', `tax_amount` decimal(12,4) default NULL COMMENT 'Tax Amount', `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id', `email_sent` smallint(5) unsigned default NULL COMMENT 'Email Sent', `creditmemo_status` int(11) default NULL COMMENT 'Creditmemo Status', `state` int(11) default NULL COMMENT 'State', `shipping_address_id` int(11) default NULL COMMENT 'Shipping Address Id', `billing_address_id` int(11) default NULL COMMENT 'Billing Address Id', `invoice_id` int(11) default NULL COMMENT 'Invoice Id', `store_currency_code` varchar(3) default NULL COMMENT 'Store Currency Code', `order_currency_code` varchar(3) default NULL COMMENT 'Order Currency Code', `base_currency_code` varchar(3) default NULL COMMENT 'Base Currency Code', `global_currency_code` varchar(3) default NULL COMMENT 'Global Currency Code', `transaction_id` varchar(255) default NULL COMMENT 'Transaction Id', `increment_id` varchar(50) default NULL COMMENT 'Increment Id', `created_at` timestamp NULL default NULL COMMENT 'Created At', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', `hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Hidden Tax Amount', `base_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Amount', `shipping_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Shipping Hidden Tax Amount', `base_shipping_hidden_tax_amnt` decimal(12,4) default NULL COMMENT 'Base Shipping Hidden Tax Amount', `shipping_incl_tax` decimal(12,4) default NULL COMMENT 'Shipping Incl Tax', `base_shipping_incl_tax` decimal(12,4) default NULL COMMENT 'Base Shipping Incl Tax', `discount_description` varchar(255) default NULL COMMENT 'Discount Description', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_SALES_FLAT_CREDITMEMO_INCREMENT_ID` (`increment_id`), KEY `IDX_SALES_FLAT_CREDITMEMO_STORE_ID` (`store_id`), KEY `IDX_SALES_FLAT_CREDITMEMO_ORDER_ID` (`order_id`), KEY `IDX_SALES_FLAT_CREDITMEMO_CREDITMEMO_STATUS` (`creditmemo_status`), KEY `IDX_SALES_FLAT_CREDITMEMO_STATE` (`state`), KEY `IDX_SALES_FLAT_CREDITMEMO_CREATED_AT` (`created_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_creditmemo` -- LOCK TABLES `sales_flat_creditmemo` WRITE; /*!40000 ALTER TABLE `sales_flat_creditmemo` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_creditmemo` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_creditmemo_comment` -- DROP TABLE IF EXISTS `sales_flat_creditmemo_comment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_creditmemo_comment` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id', `is_customer_notified` int(11) default NULL COMMENT 'Is Customer Notified', `is_visible_on_front` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Visible On Front', `comment` text COMMENT 'Comment', `created_at` timestamp NULL default NULL COMMENT 'Created At', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_CREDITMEMO_COMMENT_CREATED_AT` (`created_at`), KEY `IDX_SALES_FLAT_CREDITMEMO_COMMENT_PARENT_ID` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Comment'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_creditmemo_comment` -- LOCK TABLES `sales_flat_creditmemo_comment` WRITE; /*!40000 ALTER TABLE `sales_flat_creditmemo_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_creditmemo_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_creditmemo_grid` -- DROP TABLE IF EXISTS `sales_flat_creditmemo_grid`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_creditmemo_grid` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `store_to_order_rate` decimal(12,4) default NULL COMMENT 'Store To Order Rate', `base_to_order_rate` decimal(12,4) default NULL COMMENT 'Base To Order Rate', `grand_total` decimal(12,4) default NULL COMMENT 'Grand Total', `store_to_base_rate` decimal(12,4) default NULL COMMENT 'Store To Base Rate', `base_to_global_rate` decimal(12,4) default NULL COMMENT 'Base To Global Rate', `base_grand_total` decimal(12,4) default NULL COMMENT 'Base Grand Total', `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id', `creditmemo_status` int(11) default NULL COMMENT 'Creditmemo Status', `state` int(11) default NULL COMMENT 'State', `invoice_id` int(11) default NULL COMMENT 'Invoice Id', `store_currency_code` varchar(3) default NULL COMMENT 'Store Currency Code', `order_currency_code` varchar(3) default NULL COMMENT 'Order Currency Code', `base_currency_code` varchar(3) default NULL COMMENT 'Base Currency Code', `global_currency_code` varchar(3) default NULL COMMENT 'Global Currency Code', `increment_id` varchar(50) default NULL COMMENT 'Increment Id', `order_increment_id` varchar(50) default NULL COMMENT 'Order Increment Id', `created_at` timestamp NULL default NULL COMMENT 'Created At', `order_created_at` timestamp NULL default NULL COMMENT 'Order Created At', `billing_name` varchar(255) default NULL COMMENT 'Billing Name', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_SALES_FLAT_CREDITMEMO_GRID_INCREMENT_ID` (`increment_id`), KEY `IDX_SALES_FLAT_CREDITMEMO_GRID_STORE_ID` (`store_id`), KEY `IDX_SALES_FLAT_CREDITMEMO_GRID_GRAND_TOTAL` (`grand_total`), KEY `IDX_SALES_FLAT_CREDITMEMO_GRID_BASE_GRAND_TOTAL` (`base_grand_total`), KEY `IDX_SALES_FLAT_CREDITMEMO_GRID_ORDER_ID` (`order_id`), KEY `IDX_SALES_FLAT_CREDITMEMO_GRID_CREDITMEMO_STATUS` (`creditmemo_status`), KEY `IDX_SALES_FLAT_CREDITMEMO_GRID_STATE` (`state`), KEY `IDX_SALES_FLAT_CREDITMEMO_GRID_ORDER_INCREMENT_ID` (`order_increment_id`), KEY `IDX_SALES_FLAT_CREDITMEMO_GRID_CREATED_AT` (`created_at`), KEY `IDX_SALES_FLAT_CREDITMEMO_GRID_ORDER_CREATED_AT` (`order_created_at`), KEY `IDX_SALES_FLAT_CREDITMEMO_GRID_BILLING_NAME` (`billing_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Grid'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_creditmemo_grid` -- LOCK TABLES `sales_flat_creditmemo_grid` WRITE; /*!40000 ALTER TABLE `sales_flat_creditmemo_grid` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_creditmemo_grid` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_creditmemo_item` -- DROP TABLE IF EXISTS `sales_flat_creditmemo_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_creditmemo_item` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id', `base_price` decimal(12,4) default NULL COMMENT 'Base Price', `tax_amount` decimal(12,4) default NULL COMMENT 'Tax Amount', `base_row_total` decimal(12,4) default NULL COMMENT 'Base Row Total', `discount_amount` decimal(12,4) default NULL COMMENT 'Discount Amount', `row_total` decimal(12,4) default NULL COMMENT 'Row Total', `base_discount_amount` decimal(12,4) default NULL COMMENT 'Base Discount Amount', `price_incl_tax` decimal(12,4) default NULL COMMENT 'Price Incl Tax', `base_tax_amount` decimal(12,4) default NULL COMMENT 'Base Tax Amount', `base_price_incl_tax` decimal(12,4) default NULL COMMENT 'Base Price Incl Tax', `qty` decimal(12,4) default NULL COMMENT 'Qty', `base_cost` decimal(12,4) default NULL COMMENT 'Base Cost', `price` decimal(12,4) default NULL COMMENT 'Price', `base_row_total_incl_tax` decimal(12,4) default NULL COMMENT 'Base Row Total Incl Tax', `row_total_incl_tax` decimal(12,4) default NULL COMMENT 'Row Total Incl Tax', `product_id` int(11) default NULL COMMENT 'Product Id', `order_item_id` int(11) default NULL COMMENT 'Order Item Id', `additional_data` text COMMENT 'Additional Data', `description` text COMMENT 'Description', `sku` varchar(255) default NULL COMMENT 'Sku', `name` varchar(255) default NULL COMMENT 'Name', `hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Hidden Tax Amount', `base_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Amount', `weee_tax_disposition` decimal(12,4) default NULL COMMENT 'Weee Tax Disposition', `weee_tax_row_disposition` decimal(12,4) default NULL COMMENT 'Weee Tax Row Disposition', `base_weee_tax_disposition` decimal(12,4) default NULL COMMENT 'Base Weee Tax Disposition', `base_weee_tax_row_disposition` decimal(12,4) default NULL COMMENT 'Base Weee Tax Row Disposition', `weee_tax_applied` text COMMENT 'Weee Tax Applied', `base_weee_tax_applied_amount` decimal(12,4) default NULL COMMENT 'Base Weee Tax Applied Amount', `base_weee_tax_applied_row_amnt` decimal(12,4) default NULL COMMENT 'Base Weee Tax Applied Row Amnt', `weee_tax_applied_amount` decimal(12,4) default NULL COMMENT 'Weee Tax Applied Amount', `weee_tax_applied_row_amount` decimal(12,4) default NULL COMMENT 'Weee Tax Applied Row Amount', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_CREDITMEMO_ITEM_PARENT_ID` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Item'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_creditmemo_item` -- LOCK TABLES `sales_flat_creditmemo_item` WRITE; /*!40000 ALTER TABLE `sales_flat_creditmemo_item` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_creditmemo_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_invoice` -- DROP TABLE IF EXISTS `sales_flat_invoice`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_invoice` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `base_grand_total` decimal(12,4) default NULL COMMENT 'Base Grand Total', `shipping_tax_amount` decimal(12,4) default NULL COMMENT 'Shipping Tax Amount', `tax_amount` decimal(12,4) default NULL COMMENT 'Tax Amount', `base_tax_amount` decimal(12,4) default NULL COMMENT 'Base Tax Amount', `store_to_order_rate` decimal(12,4) default NULL COMMENT 'Store To Order Rate', `base_shipping_tax_amount` decimal(12,4) default NULL COMMENT 'Base Shipping Tax Amount', `base_discount_amount` decimal(12,4) default NULL COMMENT 'Base Discount Amount', `base_to_order_rate` decimal(12,4) default NULL COMMENT 'Base To Order Rate', `grand_total` decimal(12,4) default NULL COMMENT 'Grand Total', `shipping_amount` decimal(12,4) default NULL COMMENT 'Shipping Amount', `subtotal_incl_tax` decimal(12,4) default NULL COMMENT 'Subtotal Incl Tax', `base_subtotal_incl_tax` decimal(12,4) default NULL COMMENT 'Base Subtotal Incl Tax', `store_to_base_rate` decimal(12,4) default NULL COMMENT 'Store To Base Rate', `base_shipping_amount` decimal(12,4) default NULL COMMENT 'Base Shipping Amount', `total_qty` decimal(12,4) default NULL COMMENT 'Total Qty', `base_to_global_rate` decimal(12,4) default NULL COMMENT 'Base To Global Rate', `subtotal` decimal(12,4) default NULL COMMENT 'Subtotal', `base_subtotal` decimal(12,4) default NULL COMMENT 'Base Subtotal', `discount_amount` decimal(12,4) default NULL COMMENT 'Discount Amount', `billing_address_id` int(11) default NULL COMMENT 'Billing Address Id', `is_used_for_refund` smallint(5) unsigned default NULL COMMENT 'Is Used For Refund', `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id', `email_sent` smallint(5) unsigned default NULL COMMENT 'Email Sent', `can_void_flag` smallint(5) unsigned default NULL COMMENT 'Can Void Flag', `state` int(11) default NULL COMMENT 'State', `shipping_address_id` int(11) default NULL COMMENT 'Shipping Address Id', `store_currency_code` varchar(3) default NULL COMMENT 'Store Currency Code', `transaction_id` varchar(255) default NULL COMMENT 'Transaction Id', `order_currency_code` varchar(3) default NULL COMMENT 'Order Currency Code', `base_currency_code` varchar(3) default NULL COMMENT 'Base Currency Code', `global_currency_code` varchar(3) default NULL COMMENT 'Global Currency Code', `increment_id` varchar(50) default NULL COMMENT 'Increment Id', `created_at` timestamp NULL default NULL COMMENT 'Created At', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', `hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Hidden Tax Amount', `base_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Amount', `shipping_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Shipping Hidden Tax Amount', `base_shipping_hidden_tax_amnt` decimal(12,4) default NULL COMMENT 'Base Shipping Hidden Tax Amount', `shipping_incl_tax` decimal(12,4) default NULL COMMENT 'Shipping Incl Tax', `base_shipping_incl_tax` decimal(12,4) default NULL COMMENT 'Base Shipping Incl Tax', `base_total_refunded` decimal(12,4) default NULL COMMENT 'Base Total Refunded', `discount_description` varchar(255) default NULL COMMENT 'Discount Description', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_SALES_FLAT_INVOICE_INCREMENT_ID` (`increment_id`), KEY `IDX_SALES_FLAT_INVOICE_STORE_ID` (`store_id`), KEY `IDX_SALES_FLAT_INVOICE_GRAND_TOTAL` (`grand_total`), KEY `IDX_SALES_FLAT_INVOICE_ORDER_ID` (`order_id`), KEY `IDX_SALES_FLAT_INVOICE_STATE` (`state`), KEY `IDX_SALES_FLAT_INVOICE_CREATED_AT` (`created_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_invoice` -- LOCK TABLES `sales_flat_invoice` WRITE; /*!40000 ALTER TABLE `sales_flat_invoice` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_invoice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_invoice_comment` -- DROP TABLE IF EXISTS `sales_flat_invoice_comment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_invoice_comment` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id', `is_customer_notified` smallint(5) unsigned default NULL COMMENT 'Is Customer Notified', `is_visible_on_front` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Visible On Front', `comment` text COMMENT 'Comment', `created_at` timestamp NULL default NULL COMMENT 'Created At', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_INVOICE_COMMENT_CREATED_AT` (`created_at`), KEY `IDX_SALES_FLAT_INVOICE_COMMENT_PARENT_ID` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Comment'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_invoice_comment` -- LOCK TABLES `sales_flat_invoice_comment` WRITE; /*!40000 ALTER TABLE `sales_flat_invoice_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_invoice_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_invoice_grid` -- DROP TABLE IF EXISTS `sales_flat_invoice_grid`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_invoice_grid` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `base_grand_total` decimal(12,4) default NULL COMMENT 'Base Grand Total', `grand_total` decimal(12,4) default NULL COMMENT 'Grand Total', `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id', `state` int(11) default NULL COMMENT 'State', `store_currency_code` varchar(3) default NULL COMMENT 'Store Currency Code', `order_currency_code` varchar(3) default NULL COMMENT 'Order Currency Code', `base_currency_code` varchar(3) default NULL COMMENT 'Base Currency Code', `global_currency_code` varchar(3) default NULL COMMENT 'Global Currency Code', `increment_id` varchar(50) default NULL COMMENT 'Increment Id', `order_increment_id` varchar(50) default NULL COMMENT 'Order Increment Id', `created_at` timestamp NULL default NULL COMMENT 'Created At', `order_created_at` timestamp NULL default NULL COMMENT 'Order Created At', `billing_name` varchar(255) default NULL COMMENT 'Billing Name', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_SALES_FLAT_INVOICE_GRID_INCREMENT_ID` (`increment_id`), KEY `IDX_SALES_FLAT_INVOICE_GRID_STORE_ID` (`store_id`), KEY `IDX_SALES_FLAT_INVOICE_GRID_GRAND_TOTAL` (`grand_total`), KEY `IDX_SALES_FLAT_INVOICE_GRID_ORDER_ID` (`order_id`), KEY `IDX_SALES_FLAT_INVOICE_GRID_STATE` (`state`), KEY `IDX_SALES_FLAT_INVOICE_GRID_ORDER_INCREMENT_ID` (`order_increment_id`), KEY `IDX_SALES_FLAT_INVOICE_GRID_CREATED_AT` (`created_at`), KEY `IDX_SALES_FLAT_INVOICE_GRID_ORDER_CREATED_AT` (`order_created_at`), KEY `IDX_SALES_FLAT_INVOICE_GRID_BILLING_NAME` (`billing_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Grid'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_invoice_grid` -- LOCK TABLES `sales_flat_invoice_grid` WRITE; /*!40000 ALTER TABLE `sales_flat_invoice_grid` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_invoice_grid` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_invoice_item` -- DROP TABLE IF EXISTS `sales_flat_invoice_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_invoice_item` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id', `base_price` decimal(12,4) default NULL COMMENT 'Base Price', `tax_amount` decimal(12,4) default NULL COMMENT 'Tax Amount', `base_row_total` decimal(12,4) default NULL COMMENT 'Base Row Total', `discount_amount` decimal(12,4) default NULL COMMENT 'Discount Amount', `row_total` decimal(12,4) default NULL COMMENT 'Row Total', `base_discount_amount` decimal(12,4) default NULL COMMENT 'Base Discount Amount', `price_incl_tax` decimal(12,4) default NULL COMMENT 'Price Incl Tax', `base_tax_amount` decimal(12,4) default NULL COMMENT 'Base Tax Amount', `base_price_incl_tax` decimal(12,4) default NULL COMMENT 'Base Price Incl Tax', `qty` decimal(12,4) default NULL COMMENT 'Qty', `base_cost` decimal(12,4) default NULL COMMENT 'Base Cost', `price` decimal(12,4) default NULL COMMENT 'Price', `base_row_total_incl_tax` decimal(12,4) default NULL COMMENT 'Base Row Total Incl Tax', `row_total_incl_tax` decimal(12,4) default NULL COMMENT 'Row Total Incl Tax', `product_id` int(11) default NULL COMMENT 'Product Id', `order_item_id` int(11) default NULL COMMENT 'Order Item Id', `additional_data` text COMMENT 'Additional Data', `description` text COMMENT 'Description', `sku` varchar(255) default NULL COMMENT 'Sku', `name` varchar(255) default NULL COMMENT 'Name', `hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Hidden Tax Amount', `base_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Amount', `base_weee_tax_applied_amount` decimal(12,4) default NULL COMMENT 'Base Weee Tax Applied Amount', `base_weee_tax_applied_row_amnt` decimal(12,4) default NULL COMMENT 'Base Weee Tax Applied Row Amnt', `weee_tax_applied_amount` decimal(12,4) default NULL COMMENT 'Weee Tax Applied Amount', `weee_tax_applied_row_amount` decimal(12,4) default NULL COMMENT 'Weee Tax Applied Row Amount', `weee_tax_applied` text COMMENT 'Weee Tax Applied', `weee_tax_disposition` decimal(12,4) default NULL COMMENT 'Weee Tax Disposition', `weee_tax_row_disposition` decimal(12,4) default NULL COMMENT 'Weee Tax Row Disposition', `base_weee_tax_disposition` decimal(12,4) default NULL COMMENT 'Base Weee Tax Disposition', `base_weee_tax_row_disposition` decimal(12,4) default NULL COMMENT 'Base Weee Tax Row Disposition', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_INVOICE_ITEM_PARENT_ID` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Item'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_invoice_item` -- LOCK TABLES `sales_flat_invoice_item` WRITE; /*!40000 ALTER TABLE `sales_flat_invoice_item` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_invoice_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_order` -- DROP TABLE IF EXISTS `sales_flat_order`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_order` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `state` varchar(32) default NULL COMMENT 'State', `status` varchar(32) default NULL COMMENT 'Status', `coupon_code` varchar(255) default NULL COMMENT 'Coupon Code', `protect_code` varchar(255) default NULL COMMENT 'Protect Code', `shipping_description` varchar(255) default NULL COMMENT 'Shipping Description', `is_virtual` smallint(5) unsigned default NULL COMMENT 'Is Virtual', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `customer_id` int(10) unsigned default NULL COMMENT 'Customer Id', `base_discount_amount` decimal(12,4) default NULL COMMENT 'Base Discount Amount', `base_discount_canceled` decimal(12,4) default NULL COMMENT 'Base Discount Canceled', `base_discount_invoiced` decimal(12,4) default NULL COMMENT 'Base Discount Invoiced', `base_discount_refunded` decimal(12,4) default NULL COMMENT 'Base Discount Refunded', `base_grand_total` decimal(12,4) default NULL COMMENT 'Base Grand Total', `base_shipping_amount` decimal(12,4) default NULL COMMENT 'Base Shipping Amount', `base_shipping_canceled` decimal(12,4) default NULL COMMENT 'Base Shipping Canceled', `base_shipping_invoiced` decimal(12,4) default NULL COMMENT 'Base Shipping Invoiced', `base_shipping_refunded` decimal(12,4) default NULL COMMENT 'Base Shipping Refunded', `base_shipping_tax_amount` decimal(12,4) default NULL COMMENT 'Base Shipping Tax Amount', `base_shipping_tax_refunded` decimal(12,4) default NULL COMMENT 'Base Shipping Tax Refunded', `base_subtotal` decimal(12,4) default NULL COMMENT 'Base Subtotal', `base_subtotal_canceled` decimal(12,4) default NULL COMMENT 'Base Subtotal Canceled', `base_subtotal_invoiced` decimal(12,4) default NULL COMMENT 'Base Subtotal Invoiced', `base_subtotal_refunded` decimal(12,4) default NULL COMMENT 'Base Subtotal Refunded', `base_tax_amount` decimal(12,4) default NULL COMMENT 'Base Tax Amount', `base_tax_canceled` decimal(12,4) default NULL COMMENT 'Base Tax Canceled', `base_tax_invoiced` decimal(12,4) default NULL COMMENT 'Base Tax Invoiced', `base_tax_refunded` decimal(12,4) default NULL COMMENT 'Base Tax Refunded', `base_to_global_rate` decimal(12,4) default NULL COMMENT 'Base To Global Rate', `base_to_order_rate` decimal(12,4) default NULL COMMENT 'Base To Order Rate', `base_total_canceled` decimal(12,4) default NULL COMMENT 'Base Total Canceled', `base_total_invoiced` decimal(12,4) default NULL COMMENT 'Base Total Invoiced', `base_total_invoiced_cost` decimal(12,4) default NULL COMMENT 'Base Total Invoiced Cost', `base_total_offline_refunded` decimal(12,4) default NULL COMMENT 'Base Total Offline Refunded', `base_total_online_refunded` decimal(12,4) default NULL COMMENT 'Base Total Online Refunded', `base_total_paid` decimal(12,4) default NULL COMMENT 'Base Total Paid', `base_total_qty_ordered` decimal(12,4) default NULL COMMENT 'Base Total Qty Ordered', `base_total_refunded` decimal(12,4) default NULL COMMENT 'Base Total Refunded', `discount_amount` decimal(12,4) default NULL COMMENT 'Discount Amount', `discount_canceled` decimal(12,4) default NULL COMMENT 'Discount Canceled', `discount_invoiced` decimal(12,4) default NULL COMMENT 'Discount Invoiced', `discount_refunded` decimal(12,4) default NULL COMMENT 'Discount Refunded', `grand_total` decimal(12,4) default NULL COMMENT 'Grand Total', `shipping_amount` decimal(12,4) default NULL COMMENT 'Shipping Amount', `shipping_canceled` decimal(12,4) default NULL COMMENT 'Shipping Canceled', `shipping_invoiced` decimal(12,4) default NULL COMMENT 'Shipping Invoiced', `shipping_refunded` decimal(12,4) default NULL COMMENT 'Shipping Refunded', `shipping_tax_amount` decimal(12,4) default NULL COMMENT 'Shipping Tax Amount', `shipping_tax_refunded` decimal(12,4) default NULL COMMENT 'Shipping Tax Refunded', `store_to_base_rate` decimal(12,4) default NULL COMMENT 'Store To Base Rate', `store_to_order_rate` decimal(12,4) default NULL COMMENT 'Store To Order Rate', `subtotal` decimal(12,4) default NULL COMMENT 'Subtotal', `subtotal_canceled` decimal(12,4) default NULL COMMENT 'Subtotal Canceled', `subtotal_invoiced` decimal(12,4) default NULL COMMENT 'Subtotal Invoiced', `subtotal_refunded` decimal(12,4) default NULL COMMENT 'Subtotal Refunded', `tax_amount` decimal(12,4) default NULL COMMENT 'Tax Amount', `tax_canceled` decimal(12,4) default NULL COMMENT 'Tax Canceled', `tax_invoiced` decimal(12,4) default NULL COMMENT 'Tax Invoiced', `tax_refunded` decimal(12,4) default NULL COMMENT 'Tax Refunded', `total_canceled` decimal(12,4) default NULL COMMENT 'Total Canceled', `total_invoiced` decimal(12,4) default NULL COMMENT 'Total Invoiced', `total_offline_refunded` decimal(12,4) default NULL COMMENT 'Total Offline Refunded', `total_online_refunded` decimal(12,4) default NULL COMMENT 'Total Online Refunded', `total_paid` decimal(12,4) default NULL COMMENT 'Total Paid', `total_qty_ordered` decimal(12,4) default NULL COMMENT 'Total Qty Ordered', `total_refunded` decimal(12,4) default NULL COMMENT 'Total Refunded', `can_ship_partially` smallint(5) unsigned default NULL COMMENT 'Can Ship Partially', `can_ship_partially_item` smallint(5) unsigned default NULL COMMENT 'Can Ship Partially Item', `customer_is_guest` smallint(5) unsigned default NULL COMMENT 'Customer Is Guest', `customer_note_notify` smallint(5) unsigned default NULL COMMENT 'Customer Note Notify', `billing_address_id` int(11) default NULL COMMENT 'Billing Address Id', `customer_group_id` smallint(6) default NULL COMMENT 'Customer Group Id', `edit_increment` int(11) default NULL COMMENT 'Edit Increment', `email_sent` smallint(5) unsigned default NULL COMMENT 'Email Sent', `forced_shipment_with_invoice` smallint(5) unsigned default NULL COMMENT 'Forced Do Shipment With Invoice', `payment_auth_expiration` int(11) default NULL COMMENT 'Payment Authorization Expiration', `quote_address_id` int(11) default NULL COMMENT 'Quote Address Id', `quote_id` int(11) default NULL COMMENT 'Quote Id', `shipping_address_id` int(11) default NULL COMMENT 'Shipping Address Id', `adjustment_negative` decimal(12,4) default NULL COMMENT 'Adjustment Negative', `adjustment_positive` decimal(12,4) default NULL COMMENT 'Adjustment Positive', `base_adjustment_negative` decimal(12,4) default NULL COMMENT 'Base Adjustment Negative', `base_adjustment_positive` decimal(12,4) default NULL COMMENT 'Base Adjustment Positive', `base_shipping_discount_amount` decimal(12,4) default NULL COMMENT 'Base Shipping Discount Amount', `base_subtotal_incl_tax` decimal(12,4) default NULL COMMENT 'Base Subtotal Incl Tax', `base_total_due` decimal(12,4) default NULL COMMENT 'Base Total Due', `payment_authorization_amount` decimal(12,4) default NULL COMMENT 'Payment Authorization Amount', `shipping_discount_amount` decimal(12,4) default NULL COMMENT 'Shipping Discount Amount', `subtotal_incl_tax` decimal(12,4) default NULL COMMENT 'Subtotal Incl Tax', `total_due` decimal(12,4) default NULL COMMENT 'Total Due', `weight` decimal(12,4) default NULL COMMENT 'Weight', `customer_dob` datetime default NULL COMMENT 'Customer Dob', `increment_id` varchar(50) default NULL COMMENT 'Increment Id', `applied_rule_ids` varchar(255) default NULL COMMENT 'Applied Rule Ids', `base_currency_code` varchar(3) default NULL COMMENT 'Base Currency Code', `customer_email` varchar(255) default NULL COMMENT 'Customer Email', `customer_firstname` varchar(255) default NULL COMMENT 'Customer Firstname', `customer_lastname` varchar(255) default NULL COMMENT 'Customer Lastname', `customer_middlename` varchar(255) default NULL COMMENT 'Customer Middlename', `customer_prefix` varchar(255) default NULL COMMENT 'Customer Prefix', `customer_suffix` varchar(255) default NULL COMMENT 'Customer Suffix', `customer_taxvat` varchar(255) default NULL COMMENT 'Customer Taxvat', `discount_description` varchar(255) default NULL COMMENT 'Discount Description', `ext_customer_id` varchar(255) default NULL COMMENT 'Ext Customer Id', `ext_order_id` varchar(255) default NULL COMMENT 'Ext Order Id', `global_currency_code` varchar(3) default NULL COMMENT 'Global Currency Code', `hold_before_state` varchar(255) default NULL COMMENT 'Hold Before State', `hold_before_status` varchar(255) default NULL COMMENT 'Hold Before Status', `order_currency_code` varchar(255) default NULL COMMENT 'Order Currency Code', `original_increment_id` varchar(50) default NULL COMMENT 'Original Increment Id', `relation_child_id` varchar(32) default NULL COMMENT 'Relation Child Id', `relation_child_real_id` varchar(32) default NULL COMMENT 'Relation Child Real Id', `relation_parent_id` varchar(32) default NULL COMMENT 'Relation Parent Id', `relation_parent_real_id` varchar(32) default NULL COMMENT 'Relation Parent Real Id', `remote_ip` varchar(255) default NULL COMMENT 'Remote Ip', `shipping_method` varchar(255) default NULL COMMENT 'Shipping Method', `store_currency_code` varchar(3) default NULL COMMENT 'Store Currency Code', `store_name` varchar(255) default NULL COMMENT 'Store Name', `x_forwarded_for` varchar(255) default NULL COMMENT 'X Forwarded For', `customer_note` text COMMENT 'Customer Note', `created_at` timestamp NULL default NULL COMMENT 'Created At', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', `total_item_count` smallint(5) unsigned NOT NULL default '0' COMMENT 'Total Item Count', `customer_gender` int(11) default NULL COMMENT 'Customer Gender', `hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Hidden Tax Amount', `base_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Amount', `shipping_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Shipping Hidden Tax Amount', `base_shipping_hidden_tax_amnt` decimal(12,4) default NULL COMMENT 'Base Shipping Hidden Tax Amount', `hidden_tax_invoiced` decimal(12,4) default NULL COMMENT 'Hidden Tax Invoiced', `base_hidden_tax_invoiced` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Invoiced', `hidden_tax_refunded` decimal(12,4) default NULL COMMENT 'Hidden Tax Refunded', `base_hidden_tax_refunded` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Refunded', `shipping_incl_tax` decimal(12,4) default NULL COMMENT 'Shipping Incl Tax', `base_shipping_incl_tax` decimal(12,4) default NULL COMMENT 'Base Shipping Incl Tax', `coupon_rule_name` varchar(255) default NULL COMMENT 'Coupon Sales Rule Name', `paypal_ipn_customer_notified` int(11) default '0' COMMENT 'Paypal Ipn Customer Notified', `gift_message_id` int(11) default NULL COMMENT 'Gift Message Id', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_SALES_FLAT_ORDER_INCREMENT_ID` (`increment_id`), KEY `IDX_SALES_FLAT_ORDER_STATUS` (`status`), KEY `IDX_SALES_FLAT_ORDER_STATE` (`state`), KEY `IDX_SALES_FLAT_ORDER_STORE_ID` (`store_id`), KEY `IDX_SALES_FLAT_ORDER_CREATED_AT` (`created_at`), KEY `IDX_SALES_FLAT_ORDER_CUSTOMER_ID` (`customer_id`), KEY `IDX_SALES_FLAT_ORDER_EXT_ORDER_ID` (`ext_order_id`), KEY `IDX_SALES_FLAT_ORDER_QUOTE_ID` (`quote_id`), KEY `IDX_SALES_FLAT_ORDER_UPDATED_AT` (`updated_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_order` -- LOCK TABLES `sales_flat_order` WRITE; /*!40000 ALTER TABLE `sales_flat_order` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_order_address` -- DROP TABLE IF EXISTS `sales_flat_order_address`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_order_address` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `parent_id` int(10) unsigned default NULL COMMENT 'Parent Id', `customer_address_id` int(11) default NULL COMMENT 'Customer Address Id', `quote_address_id` int(11) default NULL COMMENT 'Quote Address Id', `region_id` int(11) default NULL COMMENT 'Region Id', `customer_id` int(11) default NULL COMMENT 'Customer Id', `fax` varchar(255) default NULL COMMENT 'Fax', `region` varchar(255) default NULL COMMENT 'Region', `postcode` varchar(255) default NULL COMMENT 'Postcode', `lastname` varchar(255) default NULL COMMENT 'Lastname', `street` varchar(255) default NULL COMMENT 'Street', `city` varchar(255) default NULL COMMENT 'City', `email` varchar(255) default NULL COMMENT 'Email', `telephone` varchar(255) default NULL COMMENT 'Telephone', `country_id` varchar(2) default NULL COMMENT 'Country Id', `firstname` varchar(255) default NULL COMMENT 'Firstname', `address_type` varchar(255) default NULL COMMENT 'Address Type', `prefix` varchar(255) default NULL COMMENT 'Prefix', `middlename` varchar(255) default NULL COMMENT 'Middlename', `suffix` varchar(255) default NULL COMMENT 'Suffix', `company` varchar(255) default NULL COMMENT 'Company', `vat_id` text COMMENT 'Vat Id', `vat_is_valid` smallint(6) default NULL COMMENT 'Vat Is Valid', `vat_request_id` text COMMENT 'Vat Request Id', `vat_request_date` text COMMENT 'Vat Request Date', `vat_request_success` smallint(6) default NULL COMMENT 'Vat Request Success', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_ORDER_ADDRESS_PARENT_ID` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Address'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_order_address` -- LOCK TABLES `sales_flat_order_address` WRITE; /*!40000 ALTER TABLE `sales_flat_order_address` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_order_address` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_order_grid` -- DROP TABLE IF EXISTS `sales_flat_order_grid`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_order_grid` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `status` varchar(32) default NULL COMMENT 'Status', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `store_name` varchar(255) default NULL COMMENT 'Store Name', `customer_id` int(10) unsigned default NULL COMMENT 'Customer Id', `base_grand_total` decimal(12,4) default NULL COMMENT 'Base Grand Total', `base_total_paid` decimal(12,4) default NULL COMMENT 'Base Total Paid', `grand_total` decimal(12,4) default NULL COMMENT 'Grand Total', `total_paid` decimal(12,4) default NULL COMMENT 'Total Paid', `increment_id` varchar(50) default NULL COMMENT 'Increment Id', `base_currency_code` varchar(3) default NULL COMMENT 'Base Currency Code', `order_currency_code` varchar(255) default NULL COMMENT 'Order Currency Code', `shipping_name` varchar(255) default NULL COMMENT 'Shipping Name', `billing_name` varchar(255) default NULL COMMENT 'Billing Name', `created_at` timestamp NULL default NULL COMMENT 'Created At', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_SALES_FLAT_ORDER_GRID_INCREMENT_ID` (`increment_id`), KEY `IDX_SALES_FLAT_ORDER_GRID_STATUS` (`status`), KEY `IDX_SALES_FLAT_ORDER_GRID_STORE_ID` (`store_id`), KEY `IDX_SALES_FLAT_ORDER_GRID_BASE_GRAND_TOTAL` (`base_grand_total`), KEY `IDX_SALES_FLAT_ORDER_GRID_BASE_TOTAL_PAID` (`base_total_paid`), KEY `IDX_SALES_FLAT_ORDER_GRID_GRAND_TOTAL` (`grand_total`), KEY `IDX_SALES_FLAT_ORDER_GRID_TOTAL_PAID` (`total_paid`), KEY `IDX_SALES_FLAT_ORDER_GRID_SHIPPING_NAME` (`shipping_name`), KEY `IDX_SALES_FLAT_ORDER_GRID_BILLING_NAME` (`billing_name`), KEY `IDX_SALES_FLAT_ORDER_GRID_CREATED_AT` (`created_at`), KEY `IDX_SALES_FLAT_ORDER_GRID_CUSTOMER_ID` (`customer_id`), KEY `IDX_SALES_FLAT_ORDER_GRID_UPDATED_AT` (`updated_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Grid'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_order_grid` -- LOCK TABLES `sales_flat_order_grid` WRITE; /*!40000 ALTER TABLE `sales_flat_order_grid` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_order_grid` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_order_item` -- DROP TABLE IF EXISTS `sales_flat_order_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_order_item` ( `item_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Item Id', `order_id` int(10) unsigned NOT NULL default '0' COMMENT 'Order Id', `parent_item_id` int(10) unsigned default NULL COMMENT 'Parent Item Id', `quote_item_id` int(10) unsigned default NULL COMMENT 'Quote Item Id', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Updated At', `product_id` int(10) unsigned default NULL COMMENT 'Product Id', `product_type` varchar(255) default NULL COMMENT 'Product Type', `product_options` text COMMENT 'Product Options', `weight` decimal(12,4) default '0.0000' COMMENT 'Weight', `is_virtual` smallint(5) unsigned default NULL COMMENT 'Is Virtual', `sku` varchar(255) default NULL COMMENT 'Sku', `name` varchar(255) default NULL COMMENT 'Name', `description` text COMMENT 'Description', `applied_rule_ids` text COMMENT 'Applied Rule Ids', `additional_data` text COMMENT 'Additional Data', `free_shipping` smallint(5) unsigned NOT NULL default '0' COMMENT 'Free Shipping', `is_qty_decimal` smallint(5) unsigned default NULL COMMENT 'Is Qty Decimal', `no_discount` smallint(5) unsigned NOT NULL default '0' COMMENT 'No Discount', `qty_backordered` decimal(12,4) default '0.0000' COMMENT 'Qty Backordered', `qty_canceled` decimal(12,4) default '0.0000' COMMENT 'Qty Canceled', `qty_invoiced` decimal(12,4) default '0.0000' COMMENT 'Qty Invoiced', `qty_ordered` decimal(12,4) default '0.0000' COMMENT 'Qty Ordered', `qty_refunded` decimal(12,4) default '0.0000' COMMENT 'Qty Refunded', `qty_shipped` decimal(12,4) default '0.0000' COMMENT 'Qty Shipped', `base_cost` decimal(12,4) default '0.0000' COMMENT 'Base Cost', `price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Price', `base_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Price', `original_price` decimal(12,4) default NULL COMMENT 'Original Price', `base_original_price` decimal(12,4) default NULL COMMENT 'Base Original Price', `tax_percent` decimal(12,4) default '0.0000' COMMENT 'Tax Percent', `tax_amount` decimal(12,4) default '0.0000' COMMENT 'Tax Amount', `base_tax_amount` decimal(12,4) default '0.0000' COMMENT 'Base Tax Amount', `tax_invoiced` decimal(12,4) default '0.0000' COMMENT 'Tax Invoiced', `base_tax_invoiced` decimal(12,4) default '0.0000' COMMENT 'Base Tax Invoiced', `discount_percent` decimal(12,4) default '0.0000' COMMENT 'Discount Percent', `discount_amount` decimal(12,4) default '0.0000' COMMENT 'Discount Amount', `base_discount_amount` decimal(12,4) default '0.0000' COMMENT 'Base Discount Amount', `discount_invoiced` decimal(12,4) default '0.0000' COMMENT 'Discount Invoiced', `base_discount_invoiced` decimal(12,4) default '0.0000' COMMENT 'Base Discount Invoiced', `amount_refunded` decimal(12,4) default '0.0000' COMMENT 'Amount Refunded', `base_amount_refunded` decimal(12,4) default '0.0000' COMMENT 'Base Amount Refunded', `row_total` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Row Total', `base_row_total` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Row Total', `row_invoiced` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Row Invoiced', `base_row_invoiced` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Row Invoiced', `row_weight` decimal(12,4) default '0.0000' COMMENT 'Row Weight', `base_tax_before_discount` decimal(12,4) default NULL COMMENT 'Base Tax Before Discount', `tax_before_discount` decimal(12,4) default NULL COMMENT 'Tax Before Discount', `ext_order_item_id` varchar(255) default NULL COMMENT 'Ext Order Item Id', `locked_do_invoice` smallint(5) unsigned default NULL COMMENT 'Locked Do Invoice', `locked_do_ship` smallint(5) unsigned default NULL COMMENT 'Locked Do Ship', `price_incl_tax` decimal(12,4) default NULL COMMENT 'Price Incl Tax', `base_price_incl_tax` decimal(12,4) default NULL COMMENT 'Base Price Incl Tax', `row_total_incl_tax` decimal(12,4) default NULL COMMENT 'Row Total Incl Tax', `base_row_total_incl_tax` decimal(12,4) default NULL COMMENT 'Base Row Total Incl Tax', `hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Hidden Tax Amount', `base_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Amount', `hidden_tax_invoiced` decimal(12,4) default NULL COMMENT 'Hidden Tax Invoiced', `base_hidden_tax_invoiced` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Invoiced', `hidden_tax_refunded` decimal(12,4) default NULL COMMENT 'Hidden Tax Refunded', `base_hidden_tax_refunded` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Refunded', `is_nominal` int(11) NOT NULL default '0' COMMENT 'Is Nominal', `tax_canceled` decimal(12,4) default NULL COMMENT 'Tax Canceled', `hidden_tax_canceled` decimal(12,4) default NULL COMMENT 'Hidden Tax Canceled', `tax_refunded` decimal(12,4) default NULL COMMENT 'Tax Refunded', `base_tax_refunded` decimal(12,4) default NULL COMMENT 'Base Tax Refunded', `discount_refunded` decimal(12,4) default NULL COMMENT 'Discount Refunded', `base_discount_refunded` decimal(12,4) default NULL COMMENT 'Base Discount Refunded', `gift_message_id` int(11) default NULL COMMENT 'Gift Message Id', `gift_message_available` int(11) default NULL COMMENT 'Gift Message Available', `base_weee_tax_applied_amount` decimal(12,4) default NULL COMMENT 'Base Weee Tax Applied Amount', `base_weee_tax_applied_row_amnt` decimal(12,4) default NULL COMMENT 'Base Weee Tax Applied Row Amnt', `weee_tax_applied_amount` decimal(12,4) default NULL COMMENT 'Weee Tax Applied Amount', `weee_tax_applied_row_amount` decimal(12,4) default NULL COMMENT 'Weee Tax Applied Row Amount', `weee_tax_applied` text COMMENT 'Weee Tax Applied', `weee_tax_disposition` decimal(12,4) default NULL COMMENT 'Weee Tax Disposition', `weee_tax_row_disposition` decimal(12,4) default NULL COMMENT 'Weee Tax Row Disposition', `base_weee_tax_disposition` decimal(12,4) default NULL COMMENT 'Base Weee Tax Disposition', `base_weee_tax_row_disposition` decimal(12,4) default NULL COMMENT 'Base Weee Tax Row Disposition', PRIMARY KEY (`item_id`), KEY `IDX_SALES_FLAT_ORDER_ITEM_ORDER_ID` (`order_id`), KEY `IDX_SALES_FLAT_ORDER_ITEM_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Item'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_order_item` -- LOCK TABLES `sales_flat_order_item` WRITE; /*!40000 ALTER TABLE `sales_flat_order_item` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_order_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_order_payment` -- DROP TABLE IF EXISTS `sales_flat_order_payment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_order_payment` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id', `base_shipping_captured` decimal(12,4) default NULL COMMENT 'Base Shipping Captured', `shipping_captured` decimal(12,4) default NULL COMMENT 'Shipping Captured', `amount_refunded` decimal(12,4) default NULL COMMENT 'Amount Refunded', `base_amount_paid` decimal(12,4) default NULL COMMENT 'Base Amount Paid', `amount_canceled` decimal(12,4) default NULL COMMENT 'Amount Canceled', `base_amount_authorized` decimal(12,4) default NULL COMMENT 'Base Amount Authorized', `base_amount_paid_online` decimal(12,4) default NULL COMMENT 'Base Amount Paid Online', `base_amount_refunded_online` decimal(12,4) default NULL COMMENT 'Base Amount Refunded Online', `base_shipping_amount` decimal(12,4) default NULL COMMENT 'Base Shipping Amount', `shipping_amount` decimal(12,4) default NULL COMMENT 'Shipping Amount', `amount_paid` decimal(12,4) default NULL COMMENT 'Amount Paid', `amount_authorized` decimal(12,4) default NULL COMMENT 'Amount Authorized', `base_amount_ordered` decimal(12,4) default NULL COMMENT 'Base Amount Ordered', `base_shipping_refunded` decimal(12,4) default NULL COMMENT 'Base Shipping Refunded', `shipping_refunded` decimal(12,4) default NULL COMMENT 'Shipping Refunded', `base_amount_refunded` decimal(12,4) default NULL COMMENT 'Base Amount Refunded', `amount_ordered` decimal(12,4) default NULL COMMENT 'Amount Ordered', `base_amount_canceled` decimal(12,4) default NULL COMMENT 'Base Amount Canceled', `quote_payment_id` int(11) default NULL COMMENT 'Quote Payment Id', `additional_data` text COMMENT 'Additional Data', `cc_exp_month` varchar(255) default NULL COMMENT 'Cc Exp Month', `cc_ss_start_year` varchar(255) default NULL COMMENT 'Cc Ss Start Year', `echeck_bank_name` varchar(255) default NULL COMMENT 'Echeck Bank Name', `method` varchar(255) default NULL COMMENT 'Method', `cc_debug_request_body` varchar(255) default NULL COMMENT 'Cc Debug Request Body', `cc_secure_verify` varchar(255) default NULL COMMENT 'Cc Secure Verify', `protection_eligibility` varchar(255) default NULL COMMENT 'Protection Eligibility', `cc_approval` varchar(255) default NULL COMMENT 'Cc Approval', `cc_last4` varchar(255) default NULL COMMENT 'Cc Last4', `cc_status_description` varchar(255) default NULL COMMENT 'Cc Status Description', `echeck_type` varchar(255) default NULL COMMENT 'Echeck Type', `cc_debug_response_serialized` varchar(255) default NULL COMMENT 'Cc Debug Response Serialized', `cc_ss_start_month` varchar(255) default NULL COMMENT 'Cc Ss Start Month', `echeck_account_type` varchar(255) default NULL COMMENT 'Echeck Account Type', `last_trans_id` varchar(255) default NULL COMMENT 'Last Trans Id', `cc_cid_status` varchar(255) default NULL COMMENT 'Cc Cid Status', `cc_owner` varchar(255) default NULL COMMENT 'Cc Owner', `cc_type` varchar(255) default NULL COMMENT 'Cc Type', `po_number` varchar(255) default NULL COMMENT 'Po Number', `cc_exp_year` varchar(255) default NULL COMMENT 'Cc Exp Year', `cc_status` varchar(255) default NULL COMMENT 'Cc Status', `echeck_routing_number` varchar(255) default NULL COMMENT 'Echeck Routing Number', `account_status` varchar(255) default NULL COMMENT 'Account Status', `anet_trans_method` varchar(255) default NULL COMMENT 'Anet Trans Method', `cc_debug_response_body` varchar(255) default NULL COMMENT 'Cc Debug Response Body', `cc_ss_issue` varchar(255) default NULL COMMENT 'Cc Ss Issue', `echeck_account_name` varchar(255) default NULL COMMENT 'Echeck Account Name', `cc_avs_status` varchar(255) default NULL COMMENT 'Cc Avs Status', `cc_number_enc` varchar(255) default NULL COMMENT 'Cc Number Enc', `cc_trans_id` varchar(255) default NULL COMMENT 'Cc Trans Id', `paybox_request_number` varchar(255) default NULL COMMENT 'Paybox Request Number', `address_status` varchar(255) default NULL COMMENT 'Address Status', `additional_information` text COMMENT 'Additional Information', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_ORDER_PAYMENT_PARENT_ID` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Payment'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_order_payment` -- LOCK TABLES `sales_flat_order_payment` WRITE; /*!40000 ALTER TABLE `sales_flat_order_payment` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_order_payment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_order_status_history` -- DROP TABLE IF EXISTS `sales_flat_order_status_history`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_order_status_history` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id', `is_customer_notified` int(11) default NULL COMMENT 'Is Customer Notified', `is_visible_on_front` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Visible On Front', `comment` text COMMENT 'Comment', `status` varchar(32) default NULL COMMENT 'Status', `created_at` timestamp NULL default NULL COMMENT 'Created At', `entity_name` varchar(32) default NULL COMMENT 'Shows what entity history is bind to.', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_ORDER_STATUS_HISTORY_PARENT_ID` (`parent_id`), KEY `IDX_SALES_FLAT_ORDER_STATUS_HISTORY_CREATED_AT` (`created_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Status History'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_order_status_history` -- LOCK TABLES `sales_flat_order_status_history` WRITE; /*!40000 ALTER TABLE `sales_flat_order_status_history` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_order_status_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_quote` -- DROP TABLE IF EXISTS `sales_flat_quote`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_quote` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Updated At', `converted_at` timestamp NULL default NULL COMMENT 'Converted At', `is_active` smallint(5) unsigned default '1' COMMENT 'Is Active', `is_virtual` smallint(5) unsigned default '0' COMMENT 'Is Virtual', `is_multi_shipping` smallint(5) unsigned default '0' COMMENT 'Is Multi Shipping', `items_count` int(10) unsigned default '0' COMMENT 'Items Count', `items_qty` decimal(12,4) default '0.0000' COMMENT 'Items Qty', `orig_order_id` int(10) unsigned default '0' COMMENT 'Orig Order Id', `store_to_base_rate` decimal(12,4) default '0.0000' COMMENT 'Store To Base Rate', `store_to_quote_rate` decimal(12,4) default '0.0000' COMMENT 'Store To Quote Rate', `base_currency_code` varchar(255) default NULL COMMENT 'Base Currency Code', `store_currency_code` varchar(255) default NULL COMMENT 'Store Currency Code', `quote_currency_code` varchar(255) default NULL COMMENT 'Quote Currency Code', `grand_total` decimal(12,4) default '0.0000' COMMENT 'Grand Total', `base_grand_total` decimal(12,4) default '0.0000' COMMENT 'Base Grand Total', `checkout_method` varchar(255) default NULL COMMENT 'Checkout Method', `customer_id` int(10) unsigned default '0' COMMENT 'Customer Id', `customer_tax_class_id` int(10) unsigned default '0' COMMENT 'Customer Tax Class Id', `customer_group_id` int(10) unsigned default '0' COMMENT 'Customer Group Id', `customer_email` varchar(255) default NULL COMMENT 'Customer Email', `customer_prefix` varchar(40) default NULL COMMENT 'Customer Prefix', `customer_firstname` varchar(255) default NULL COMMENT 'Customer Firstname', `customer_middlename` varchar(40) default NULL COMMENT 'Customer Middlename', `customer_lastname` varchar(255) default NULL COMMENT 'Customer Lastname', `customer_suffix` varchar(40) default NULL COMMENT 'Customer Suffix', `customer_dob` datetime default NULL COMMENT 'Customer Dob', `customer_note` varchar(255) default NULL COMMENT 'Customer Note', `customer_note_notify` smallint(5) unsigned default '1' COMMENT 'Customer Note Notify', `customer_is_guest` smallint(5) unsigned default '0' COMMENT 'Customer Is Guest', `remote_ip` varchar(32) default NULL COMMENT 'Remote Ip', `applied_rule_ids` varchar(255) default NULL COMMENT 'Applied Rule Ids', `reserved_order_id` varchar(64) default NULL COMMENT 'Reserved Order Id', `password_hash` varchar(255) default NULL COMMENT 'Password Hash', `coupon_code` varchar(255) default NULL COMMENT 'Coupon Code', `global_currency_code` varchar(255) default NULL COMMENT 'Global Currency Code', `base_to_global_rate` decimal(12,4) default NULL COMMENT 'Base To Global Rate', `base_to_quote_rate` decimal(12,4) default NULL COMMENT 'Base To Quote Rate', `customer_taxvat` varchar(255) default NULL COMMENT 'Customer Taxvat', `customer_gender` varchar(255) default NULL COMMENT 'Customer Gender', `subtotal` decimal(12,4) default NULL COMMENT 'Subtotal', `base_subtotal` decimal(12,4) default NULL COMMENT 'Base Subtotal', `subtotal_with_discount` decimal(12,4) default NULL COMMENT 'Subtotal With Discount', `base_subtotal_with_discount` decimal(12,4) default NULL COMMENT 'Base Subtotal With Discount', `is_changed` int(10) unsigned default NULL COMMENT 'Is Changed', `trigger_recollect` smallint(6) NOT NULL default '0' COMMENT 'Trigger Recollect', `ext_shipping_info` text COMMENT 'Ext Shipping Info', `gift_message_id` int(11) default NULL COMMENT 'Gift Message Id', `is_persistent` smallint(5) unsigned default '0' COMMENT 'Is Quote Persistent', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_QUOTE_CUSTOMER_ID_STORE_ID_IS_ACTIVE` (`customer_id`,`store_id`,`is_active`), KEY `IDX_SALES_FLAT_QUOTE_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_quote` -- LOCK TABLES `sales_flat_quote` WRITE; /*!40000 ALTER TABLE `sales_flat_quote` DISABLE KEYS */; INSERT INTO `sales_flat_quote` VALUES (1,1,'2015-02-25 17:35:40','2015-02-25 17:35:40',NULL,1,0,0,0,'0.0000',0,'1.0000','1.0000','USD','USD','USD','0.0000','0.0000',NULL,1,3,1,'post@post.com',NULL,'user',NULL,'user',NULL,NULL,NULL,1,0,'127.0.0.1',NULL,NULL,NULL,NULL,'USD','1.0000','1.0000',NULL,NULL,'0.0000','0.0000','0.0000','0.0000',1,0,NULL,NULL,0),(2,1,'2015-04-07 18:38:10','2015-04-07 18:38:30',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','USD','USD','USD','35.0000','35.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'192.168.9.48',NULL,NULL,NULL,NULL,'USD','1.0000','1.0000',NULL,NULL,'35.0000','35.0000','35.0000','35.0000',1,0,NULL,NULL,0),(3,1,'2015-04-09 17:29:42','2015-04-09 17:31:18',NULL,1,0,0,0,'0.0000',0,'1.0000','1.0000','USD','USD','USD','0.0000','0.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'192.168.9.48',NULL,NULL,NULL,NULL,'USD','1.0000','1.0000',NULL,NULL,'0.0000','0.0000','0.0000','0.0000',1,0,NULL,NULL,0); /*!40000 ALTER TABLE `sales_flat_quote` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_quote_address` -- DROP TABLE IF EXISTS `sales_flat_quote_address`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_quote_address` ( `address_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Address Id', `quote_id` int(10) unsigned NOT NULL default '0' COMMENT 'Quote Id', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Updated At', `customer_id` int(10) unsigned default NULL COMMENT 'Customer Id', `save_in_address_book` smallint(6) default '0' COMMENT 'Save In Address Book', `customer_address_id` int(10) unsigned default NULL COMMENT 'Customer Address Id', `address_type` varchar(255) default NULL COMMENT 'Address Type', `email` varchar(255) default NULL COMMENT 'Email', `prefix` varchar(40) default NULL COMMENT 'Prefix', `firstname` varchar(255) default NULL COMMENT 'Firstname', `middlename` varchar(40) default NULL COMMENT 'Middlename', `lastname` varchar(255) default NULL COMMENT 'Lastname', `suffix` varchar(40) default NULL COMMENT 'Suffix', `company` varchar(255) default NULL COMMENT 'Company', `street` varchar(255) default NULL COMMENT 'Street', `city` varchar(255) default NULL COMMENT 'City', `region` varchar(255) default NULL COMMENT 'Region', `region_id` int(10) unsigned default NULL COMMENT 'Region Id', `postcode` varchar(255) default NULL COMMENT 'Postcode', `country_id` varchar(255) default NULL COMMENT 'Country Id', `telephone` varchar(255) default NULL COMMENT 'Telephone', `fax` varchar(255) default NULL COMMENT 'Fax', `same_as_billing` smallint(5) unsigned NOT NULL default '0' COMMENT 'Same As Billing', `free_shipping` smallint(5) unsigned NOT NULL default '0' COMMENT 'Free Shipping', `collect_shipping_rates` smallint(5) unsigned NOT NULL default '0' COMMENT 'Collect Shipping Rates', `shipping_method` varchar(255) default NULL COMMENT 'Shipping Method', `shipping_description` varchar(255) default NULL COMMENT 'Shipping Description', `weight` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Weight', `subtotal` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Subtotal', `base_subtotal` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Subtotal', `subtotal_with_discount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Subtotal With Discount', `base_subtotal_with_discount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Subtotal With Discount', `tax_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Tax Amount', `base_tax_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Tax Amount', `shipping_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Shipping Amount', `base_shipping_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Shipping Amount', `shipping_tax_amount` decimal(12,4) default NULL COMMENT 'Shipping Tax Amount', `base_shipping_tax_amount` decimal(12,4) default NULL COMMENT 'Base Shipping Tax Amount', `discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount', `base_discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Discount Amount', `grand_total` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Grand Total', `base_grand_total` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Grand Total', `customer_notes` text COMMENT 'Customer Notes', `applied_taxes` text COMMENT 'Applied Taxes', `discount_description` varchar(255) default NULL COMMENT 'Discount Description', `shipping_discount_amount` decimal(12,4) default NULL COMMENT 'Shipping Discount Amount', `base_shipping_discount_amount` decimal(12,4) default NULL COMMENT 'Base Shipping Discount Amount', `subtotal_incl_tax` decimal(12,4) default NULL COMMENT 'Subtotal Incl Tax', `base_subtotal_total_incl_tax` decimal(12,4) default NULL COMMENT 'Base Subtotal Total Incl Tax', `hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Hidden Tax Amount', `base_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Amount', `shipping_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Shipping Hidden Tax Amount', `base_shipping_hidden_tax_amnt` decimal(12,4) default NULL COMMENT 'Base Shipping Hidden Tax Amount', `shipping_incl_tax` decimal(12,4) default NULL COMMENT 'Shipping Incl Tax', `base_shipping_incl_tax` decimal(12,4) default NULL COMMENT 'Base Shipping Incl Tax', `vat_id` text COMMENT 'Vat Id', `vat_is_valid` smallint(6) default NULL COMMENT 'Vat Is Valid', `vat_request_id` text COMMENT 'Vat Request Id', `vat_request_date` text COMMENT 'Vat Request Date', `vat_request_success` smallint(6) default NULL COMMENT 'Vat Request Success', `gift_message_id` int(11) default NULL COMMENT 'Gift Message Id', PRIMARY KEY (`address_id`), KEY `IDX_SALES_FLAT_QUOTE_ADDRESS_QUOTE_ID` (`quote_id`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_quote_address` -- LOCK TABLES `sales_flat_quote_address` WRITE; /*!40000 ALTER TABLE `sales_flat_quote_address` DISABLE KEYS */; INSERT INTO `sales_flat_quote_address` VALUES (1,1,'2015-02-25 17:35:42','2015-02-25 17:35:42',1,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,'a:0:{}',NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL),(2,1,'2015-02-25 17:35:42','2015-02-25 17:35:42',1,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,'a:0:{}',NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL),(3,2,'2015-04-07 18:38:10','2015-04-07 18:38:30',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,'a:0:{}',NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL),(4,2,'2015-04-07 18:38:10','2015-04-07 18:38:30',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,'0.3000','35.0000','35.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','35.0000','35.0000',NULL,'a:0:{}',NULL,'0.0000','0.0000','35.0000',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL),(5,3,'2015-04-09 17:29:42','2015-04-09 17:31:19',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,'a:0:{}',NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL),(6,3,'2015-04-09 17:29:42','2015-04-09 17:31:19',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,1,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,'a:0:{}',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `sales_flat_quote_address` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_quote_address_item` -- DROP TABLE IF EXISTS `sales_flat_quote_address_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_quote_address_item` ( `address_item_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Address Item Id', `parent_item_id` int(10) unsigned default NULL COMMENT 'Parent Item Id', `quote_address_id` int(10) unsigned NOT NULL default '0' COMMENT 'Quote Address Id', `quote_item_id` int(10) unsigned NOT NULL default '0' COMMENT 'Quote Item Id', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Updated At', `applied_rule_ids` text COMMENT 'Applied Rule Ids', `additional_data` text COMMENT 'Additional Data', `weight` decimal(12,4) default '0.0000' COMMENT 'Weight', `qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty', `discount_amount` decimal(12,4) default '0.0000' COMMENT 'Discount Amount', `tax_amount` decimal(12,4) default '0.0000' COMMENT 'Tax Amount', `row_total` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Row Total', `base_row_total` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Row Total', `row_total_with_discount` decimal(12,4) default '0.0000' COMMENT 'Row Total With Discount', `base_discount_amount` decimal(12,4) default '0.0000' COMMENT 'Base Discount Amount', `base_tax_amount` decimal(12,4) default '0.0000' COMMENT 'Base Tax Amount', `row_weight` decimal(12,4) default '0.0000' COMMENT 'Row Weight', `product_id` int(10) unsigned default NULL COMMENT 'Product Id', `super_product_id` int(10) unsigned default NULL COMMENT 'Super Product Id', `parent_product_id` int(10) unsigned default NULL COMMENT 'Parent Product Id', `sku` varchar(255) default NULL COMMENT 'Sku', `image` varchar(255) default NULL COMMENT 'Image', `name` varchar(255) default NULL COMMENT 'Name', `description` text COMMENT 'Description', `free_shipping` int(10) unsigned default NULL COMMENT 'Free Shipping', `is_qty_decimal` int(10) unsigned default NULL COMMENT 'Is Qty Decimal', `price` decimal(12,4) default NULL COMMENT 'Price', `discount_percent` decimal(12,4) default NULL COMMENT 'Discount Percent', `no_discount` int(10) unsigned default NULL COMMENT 'No Discount', `tax_percent` decimal(12,4) default NULL COMMENT 'Tax Percent', `base_price` decimal(12,4) default NULL COMMENT 'Base Price', `base_cost` decimal(12,4) default NULL COMMENT 'Base Cost', `price_incl_tax` decimal(12,4) default NULL COMMENT 'Price Incl Tax', `base_price_incl_tax` decimal(12,4) default NULL COMMENT 'Base Price Incl Tax', `row_total_incl_tax` decimal(12,4) default NULL COMMENT 'Row Total Incl Tax', `base_row_total_incl_tax` decimal(12,4) default NULL COMMENT 'Base Row Total Incl Tax', `hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Hidden Tax Amount', `base_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Amount', `gift_message_id` int(11) default NULL COMMENT 'Gift Message Id', PRIMARY KEY (`address_item_id`), KEY `IDX_SALES_FLAT_QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID` (`quote_address_id`), KEY `IDX_SALES_FLAT_QUOTE_ADDRESS_ITEM_PARENT_ITEM_ID` (`parent_item_id`), KEY `IDX_SALES_FLAT_QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID` (`quote_item_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address Item'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_quote_address_item` -- LOCK TABLES `sales_flat_quote_address_item` WRITE; /*!40000 ALTER TABLE `sales_flat_quote_address_item` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_quote_address_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_quote_item` -- DROP TABLE IF EXISTS `sales_flat_quote_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_quote_item` ( `item_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Item Id', `quote_id` int(10) unsigned NOT NULL default '0' COMMENT 'Quote Id', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Updated At', `product_id` int(10) unsigned default NULL COMMENT 'Product Id', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `parent_item_id` int(10) unsigned default NULL COMMENT 'Parent Item Id', `is_virtual` smallint(5) unsigned default NULL COMMENT 'Is Virtual', `sku` varchar(255) default NULL COMMENT 'Sku', `name` varchar(255) default NULL COMMENT 'Name', `description` text COMMENT 'Description', `applied_rule_ids` text COMMENT 'Applied Rule Ids', `additional_data` text COMMENT 'Additional Data', `free_shipping` smallint(5) unsigned NOT NULL default '0' COMMENT 'Free Shipping', `is_qty_decimal` smallint(5) unsigned default NULL COMMENT 'Is Qty Decimal', `no_discount` smallint(5) unsigned default '0' COMMENT 'No Discount', `weight` decimal(12,4) default '0.0000' COMMENT 'Weight', `qty` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Qty', `price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Price', `base_price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Price', `custom_price` decimal(12,4) default NULL COMMENT 'Custom Price', `discount_percent` decimal(12,4) default '0.0000' COMMENT 'Discount Percent', `discount_amount` decimal(12,4) default '0.0000' COMMENT 'Discount Amount', `base_discount_amount` decimal(12,4) default '0.0000' COMMENT 'Base Discount Amount', `tax_percent` decimal(12,4) default '0.0000' COMMENT 'Tax Percent', `tax_amount` decimal(12,4) default '0.0000' COMMENT 'Tax Amount', `base_tax_amount` decimal(12,4) default '0.0000' COMMENT 'Base Tax Amount', `row_total` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Row Total', `base_row_total` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Base Row Total', `row_total_with_discount` decimal(12,4) default '0.0000' COMMENT 'Row Total With Discount', `row_weight` decimal(12,4) default '0.0000' COMMENT 'Row Weight', `product_type` varchar(255) default NULL COMMENT 'Product Type', `base_tax_before_discount` decimal(12,4) default NULL COMMENT 'Base Tax Before Discount', `tax_before_discount` decimal(12,4) default NULL COMMENT 'Tax Before Discount', `original_custom_price` decimal(12,4) default NULL COMMENT 'Original Custom Price', `redirect_url` varchar(255) default NULL COMMENT 'Redirect Url', `base_cost` decimal(12,4) default NULL COMMENT 'Base Cost', `price_incl_tax` decimal(12,4) default NULL COMMENT 'Price Incl Tax', `base_price_incl_tax` decimal(12,4) default NULL COMMENT 'Base Price Incl Tax', `row_total_incl_tax` decimal(12,4) default NULL COMMENT 'Row Total Incl Tax', `base_row_total_incl_tax` decimal(12,4) default NULL COMMENT 'Base Row Total Incl Tax', `hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Hidden Tax Amount', `base_hidden_tax_amount` decimal(12,4) default NULL COMMENT 'Base Hidden Tax Amount', `gift_message_id` int(11) default NULL COMMENT 'Gift Message Id', `weee_tax_disposition` decimal(12,4) default NULL COMMENT 'Weee Tax Disposition', `weee_tax_row_disposition` decimal(12,4) default NULL COMMENT 'Weee Tax Row Disposition', `base_weee_tax_disposition` decimal(12,4) default NULL COMMENT 'Base Weee Tax Disposition', `base_weee_tax_row_disposition` decimal(12,4) default NULL COMMENT 'Base Weee Tax Row Disposition', `weee_tax_applied` text COMMENT 'Weee Tax Applied', `weee_tax_applied_amount` decimal(12,4) default NULL COMMENT 'Weee Tax Applied Amount', `weee_tax_applied_row_amount` decimal(12,4) default NULL COMMENT 'Weee Tax Applied Row Amount', `base_weee_tax_applied_amount` decimal(12,4) default NULL COMMENT 'Base Weee Tax Applied Amount', `base_weee_tax_applied_row_amnt` decimal(12,4) default NULL COMMENT 'Base Weee Tax Applied Row Amnt', PRIMARY KEY (`item_id`), KEY `IDX_SALES_FLAT_QUOTE_ITEM_PARENT_ITEM_ID` (`parent_item_id`), KEY `IDX_SALES_FLAT_QUOTE_ITEM_PRODUCT_ID` (`product_id`), KEY `IDX_SALES_FLAT_QUOTE_ITEM_QUOTE_ID` (`quote_id`), KEY `IDX_SALES_FLAT_QUOTE_ITEM_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_quote_item` -- LOCK TABLES `sales_flat_quote_item` WRITE; /*!40000 ALTER TABLE `sales_flat_quote_item` DISABLE KEYS */; INSERT INTO `sales_flat_quote_item` VALUES (1,2,'2015-04-07 18:38:10','2015-04-07 18:38:10',6,1,NULL,0,'#6','Hollywood Frame by Frame',NULL,NULL,NULL,0,0,0,'0.3000','1.0000','35.0000','35.0000',NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','35.0000','35.0000','0.0000','0.3000','simple',NULL,NULL,NULL,NULL,NULL,'35.0000','35.0000','35.0000','35.0000','0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL); /*!40000 ALTER TABLE `sales_flat_quote_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_quote_item_option` -- DROP TABLE IF EXISTS `sales_flat_quote_item_option`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_quote_item_option` ( `option_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Id', `item_id` int(10) unsigned NOT NULL COMMENT 'Item Id', `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id', `code` varchar(255) NOT NULL COMMENT 'Code', `value` text COMMENT 'Value', PRIMARY KEY (`option_id`), KEY `IDX_SALES_FLAT_QUOTE_ITEM_OPTION_ITEM_ID` (`item_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item Option'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_quote_item_option` -- LOCK TABLES `sales_flat_quote_item_option` WRITE; /*!40000 ALTER TABLE `sales_flat_quote_item_option` DISABLE KEYS */; INSERT INTO `sales_flat_quote_item_option` VALUES (1,1,6,'info_buyRequest','a:6:{s:8:\"form_key\";s:16:\"QH4z7RUrdqVMRASz\";s:7:\"product\";s:1:\"6\";s:15:\"related_product\";s:0:\"\";s:7:\"options\";a:2:{i:11;s:2:\"29\";i:12;s:2:\"33\";}s:3:\"qty\";s:1:\"1\";s:1:\"_\";s:13:\"1428417480927\";}'),(2,1,6,'option_ids','11,12'),(3,1,6,'option_11','29'),(4,1,6,'option_12','33'); /*!40000 ALTER TABLE `sales_flat_quote_item_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_quote_payment` -- DROP TABLE IF EXISTS `sales_flat_quote_payment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_quote_payment` ( `payment_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Payment Id', `quote_id` int(10) unsigned NOT NULL default '0' COMMENT 'Quote Id', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Updated At', `method` varchar(255) default NULL COMMENT 'Method', `cc_type` varchar(255) default NULL COMMENT 'Cc Type', `cc_number_enc` varchar(255) default NULL COMMENT 'Cc Number Enc', `cc_last4` varchar(255) default NULL COMMENT 'Cc Last4', `cc_cid_enc` varchar(255) default NULL COMMENT 'Cc Cid Enc', `cc_owner` varchar(255) default NULL COMMENT 'Cc Owner', `cc_exp_month` smallint(5) unsigned default '0' COMMENT 'Cc Exp Month', `cc_exp_year` smallint(5) unsigned default '0' COMMENT 'Cc Exp Year', `cc_ss_owner` varchar(255) default NULL COMMENT 'Cc Ss Owner', `cc_ss_start_month` smallint(5) unsigned default '0' COMMENT 'Cc Ss Start Month', `cc_ss_start_year` smallint(5) unsigned default '0' COMMENT 'Cc Ss Start Year', `po_number` varchar(255) default NULL COMMENT 'Po Number', `additional_data` text COMMENT 'Additional Data', `cc_ss_issue` varchar(255) default NULL COMMENT 'Cc Ss Issue', `additional_information` text COMMENT 'Additional Information', `paypal_payer_id` varchar(255) default NULL COMMENT 'Paypal Payer Id', `paypal_payer_status` varchar(255) default NULL COMMENT 'Paypal Payer Status', `paypal_correlation_id` varchar(255) default NULL COMMENT 'Paypal Correlation Id', PRIMARY KEY (`payment_id`), KEY `IDX_SALES_FLAT_QUOTE_PAYMENT_QUOTE_ID` (`quote_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Payment'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_quote_payment` -- LOCK TABLES `sales_flat_quote_payment` WRITE; /*!40000 ALTER TABLE `sales_flat_quote_payment` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_quote_payment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_quote_shipping_rate` -- DROP TABLE IF EXISTS `sales_flat_quote_shipping_rate`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_quote_shipping_rate` ( `rate_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rate Id', `address_id` int(10) unsigned NOT NULL default '0' COMMENT 'Address Id', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Updated At', `carrier` varchar(255) default NULL COMMENT 'Carrier', `carrier_title` varchar(255) default NULL COMMENT 'Carrier Title', `code` varchar(255) default NULL COMMENT 'Code', `method` varchar(255) default NULL COMMENT 'Method', `method_description` text COMMENT 'Method Description', `price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Price', `error_message` text COMMENT 'Error Message', `method_title` text COMMENT 'Method Title', PRIMARY KEY (`rate_id`), KEY `IDX_SALES_FLAT_QUOTE_SHIPPING_RATE_ADDRESS_ID` (`address_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Shipping Rate'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_quote_shipping_rate` -- LOCK TABLES `sales_flat_quote_shipping_rate` WRITE; /*!40000 ALTER TABLE `sales_flat_quote_shipping_rate` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_quote_shipping_rate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_shipment` -- DROP TABLE IF EXISTS `sales_flat_shipment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_shipment` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `total_weight` decimal(12,4) default NULL COMMENT 'Total Weight', `total_qty` decimal(12,4) default NULL COMMENT 'Total Qty', `email_sent` smallint(5) unsigned default NULL COMMENT 'Email Sent', `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id', `customer_id` int(11) default NULL COMMENT 'Customer Id', `shipping_address_id` int(11) default NULL COMMENT 'Shipping Address Id', `billing_address_id` int(11) default NULL COMMENT 'Billing Address Id', `shipment_status` int(11) default NULL COMMENT 'Shipment Status', `increment_id` varchar(50) default NULL COMMENT 'Increment Id', `created_at` timestamp NULL default NULL COMMENT 'Created At', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', `packages` text COMMENT 'Packed Products in Packages', `shipping_label` mediumblob COMMENT 'Shipping Label Content', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_SALES_FLAT_SHIPMENT_INCREMENT_ID` (`increment_id`), KEY `IDX_SALES_FLAT_SHIPMENT_STORE_ID` (`store_id`), KEY `IDX_SALES_FLAT_SHIPMENT_TOTAL_QTY` (`total_qty`), KEY `IDX_SALES_FLAT_SHIPMENT_ORDER_ID` (`order_id`), KEY `IDX_SALES_FLAT_SHIPMENT_CREATED_AT` (`created_at`), KEY `IDX_SALES_FLAT_SHIPMENT_UPDATED_AT` (`updated_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_shipment` -- LOCK TABLES `sales_flat_shipment` WRITE; /*!40000 ALTER TABLE `sales_flat_shipment` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_shipment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_shipment_comment` -- DROP TABLE IF EXISTS `sales_flat_shipment_comment`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_shipment_comment` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id', `is_customer_notified` int(11) default NULL COMMENT 'Is Customer Notified', `is_visible_on_front` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Visible On Front', `comment` text COMMENT 'Comment', `created_at` timestamp NULL default NULL COMMENT 'Created At', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_SHIPMENT_COMMENT_CREATED_AT` (`created_at`), KEY `IDX_SALES_FLAT_SHIPMENT_COMMENT_PARENT_ID` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Comment'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_shipment_comment` -- LOCK TABLES `sales_flat_shipment_comment` WRITE; /*!40000 ALTER TABLE `sales_flat_shipment_comment` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_shipment_comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_shipment_grid` -- DROP TABLE IF EXISTS `sales_flat_shipment_grid`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_shipment_grid` ( `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity Id', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `total_qty` decimal(12,4) default NULL COMMENT 'Total Qty', `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id', `shipment_status` int(11) default NULL COMMENT 'Shipment Status', `increment_id` varchar(50) default NULL COMMENT 'Increment Id', `order_increment_id` varchar(50) default NULL COMMENT 'Order Increment Id', `created_at` timestamp NULL default NULL COMMENT 'Created At', `order_created_at` timestamp NULL default NULL COMMENT 'Order Created At', `shipping_name` varchar(255) default NULL COMMENT 'Shipping Name', PRIMARY KEY (`entity_id`), UNIQUE KEY `UNQ_SALES_FLAT_SHIPMENT_GRID_INCREMENT_ID` (`increment_id`), KEY `IDX_SALES_FLAT_SHIPMENT_GRID_STORE_ID` (`store_id`), KEY `IDX_SALES_FLAT_SHIPMENT_GRID_TOTAL_QTY` (`total_qty`), KEY `IDX_SALES_FLAT_SHIPMENT_GRID_ORDER_ID` (`order_id`), KEY `IDX_SALES_FLAT_SHIPMENT_GRID_SHIPMENT_STATUS` (`shipment_status`), KEY `IDX_SALES_FLAT_SHIPMENT_GRID_ORDER_INCREMENT_ID` (`order_increment_id`), KEY `IDX_SALES_FLAT_SHIPMENT_GRID_CREATED_AT` (`created_at`), KEY `IDX_SALES_FLAT_SHIPMENT_GRID_ORDER_CREATED_AT` (`order_created_at`), KEY `IDX_SALES_FLAT_SHIPMENT_GRID_SHIPPING_NAME` (`shipping_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Grid'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_shipment_grid` -- LOCK TABLES `sales_flat_shipment_grid` WRITE; /*!40000 ALTER TABLE `sales_flat_shipment_grid` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_shipment_grid` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_shipment_item` -- DROP TABLE IF EXISTS `sales_flat_shipment_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_shipment_item` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id', `row_total` decimal(12,4) default NULL COMMENT 'Row Total', `price` decimal(12,4) default NULL COMMENT 'Price', `weight` decimal(12,4) default NULL COMMENT 'Weight', `qty` decimal(12,4) default NULL COMMENT 'Qty', `product_id` int(11) default NULL COMMENT 'Product Id', `order_item_id` int(11) default NULL COMMENT 'Order Item Id', `additional_data` text COMMENT 'Additional Data', `description` text COMMENT 'Description', `name` varchar(255) default NULL COMMENT 'Name', `sku` varchar(255) default NULL COMMENT 'Sku', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_SHIPMENT_ITEM_PARENT_ID` (`parent_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Item'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_shipment_item` -- LOCK TABLES `sales_flat_shipment_item` WRITE; /*!40000 ALTER TABLE `sales_flat_shipment_item` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_shipment_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_flat_shipment_track` -- DROP TABLE IF EXISTS `sales_flat_shipment_track`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_flat_shipment_track` ( `entity_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Entity Id', `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent Id', `weight` decimal(12,4) default NULL COMMENT 'Weight', `qty` decimal(12,4) default NULL COMMENT 'Qty', `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id', `track_number` text COMMENT 'Number', `description` text COMMENT 'Description', `title` varchar(255) default NULL COMMENT 'Title', `carrier_code` varchar(32) default NULL COMMENT 'Carrier Code', `created_at` timestamp NULL default NULL COMMENT 'Created At', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_SHIPMENT_TRACK_PARENT_ID` (`parent_id`), KEY `IDX_SALES_FLAT_SHIPMENT_TRACK_ORDER_ID` (`order_id`), KEY `IDX_SALES_FLAT_SHIPMENT_TRACK_CREATED_AT` (`created_at`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Track'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_flat_shipment_track` -- LOCK TABLES `sales_flat_shipment_track` WRITE; /*!40000 ALTER TABLE `sales_flat_shipment_track` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_flat_shipment_track` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_invoiced_aggregated` -- DROP TABLE IF EXISTS `sales_invoiced_aggregated`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_invoiced_aggregated` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `order_status` varchar(50) default NULL COMMENT 'Order Status', `orders_count` int(11) NOT NULL default '0' COMMENT 'Orders Count', `orders_invoiced` decimal(12,4) default NULL COMMENT 'Orders Invoiced', `invoiced` decimal(12,4) default NULL COMMENT 'Invoiced', `invoiced_captured` decimal(12,4) default NULL COMMENT 'Invoiced Captured', `invoiced_not_captured` decimal(12,4) default NULL COMMENT 'Invoiced Not Captured', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_SALES_INVOICED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `IDX_SALES_INVOICED_AGGREGATED_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_invoiced_aggregated` -- LOCK TABLES `sales_invoiced_aggregated` WRITE; /*!40000 ALTER TABLE `sales_invoiced_aggregated` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_invoiced_aggregated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_invoiced_aggregated_order` -- DROP TABLE IF EXISTS `sales_invoiced_aggregated_order`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_invoiced_aggregated_order` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `order_status` varchar(50) NOT NULL default '' COMMENT 'Order Status', `orders_count` int(11) NOT NULL default '0' COMMENT 'Orders Count', `orders_invoiced` decimal(12,4) default NULL COMMENT 'Orders Invoiced', `invoiced` decimal(12,4) default NULL COMMENT 'Invoiced', `invoiced_captured` decimal(12,4) default NULL COMMENT 'Invoiced Captured', `invoiced_not_captured` decimal(12,4) default NULL COMMENT 'Invoiced Not Captured', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_SALES_INVOICED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `IDX_SALES_INVOICED_AGGREGATED_ORDER_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated Order'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_invoiced_aggregated_order` -- LOCK TABLES `sales_invoiced_aggregated_order` WRITE; /*!40000 ALTER TABLE `sales_invoiced_aggregated_order` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_invoiced_aggregated_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_aggregated_created` -- DROP TABLE IF EXISTS `sales_order_aggregated_created`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_order_aggregated_created` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `order_status` varchar(50) NOT NULL default '' COMMENT 'Order Status', `orders_count` int(11) NOT NULL default '0' COMMENT 'Orders Count', `total_qty_ordered` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Qty Ordered', `total_qty_invoiced` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Qty Invoiced', `total_income_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Income Amount', `total_revenue_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Revenue Amount', `total_profit_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Profit Amount', `total_invoiced_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Invoiced Amount', `total_canceled_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Canceled Amount', `total_paid_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Paid Amount', `total_refunded_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Refunded Amount', `total_tax_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Tax Amount', `total_tax_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Tax Amount Actual', `total_shipping_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Shipping Amount', `total_shipping_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Shipping Amount Actual', `total_discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Discount Amount', `total_discount_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Discount Amount Actual', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_SALES_ORDER_AGGREGATED_CREATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `IDX_SALES_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Created'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_order_aggregated_created` -- LOCK TABLES `sales_order_aggregated_created` WRITE; /*!40000 ALTER TABLE `sales_order_aggregated_created` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_aggregated_created` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_aggregated_updated` -- DROP TABLE IF EXISTS `sales_order_aggregated_updated`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_order_aggregated_updated` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `order_status` varchar(50) NOT NULL COMMENT 'Order Status', `orders_count` int(11) NOT NULL default '0' COMMENT 'Orders Count', `total_qty_ordered` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Qty Ordered', `total_qty_invoiced` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Qty Invoiced', `total_income_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Income Amount', `total_revenue_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Revenue Amount', `total_profit_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Profit Amount', `total_invoiced_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Invoiced Amount', `total_canceled_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Canceled Amount', `total_paid_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Paid Amount', `total_refunded_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Refunded Amount', `total_tax_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Tax Amount', `total_tax_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Tax Amount Actual', `total_shipping_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Shipping Amount', `total_shipping_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Shipping Amount Actual', `total_discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Discount Amount', `total_discount_amount_actual` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Total Discount Amount Actual', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_SALES_ORDER_AGGREGATED_UPDATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `IDX_SALES_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Updated'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_order_aggregated_updated` -- LOCK TABLES `sales_order_aggregated_updated` WRITE; /*!40000 ALTER TABLE `sales_order_aggregated_updated` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_aggregated_updated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_status` -- DROP TABLE IF EXISTS `sales_order_status`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_order_status` ( `status` varchar(32) NOT NULL COMMENT 'Status', `label` varchar(128) NOT NULL COMMENT 'Label', PRIMARY KEY (`status`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_order_status` -- LOCK TABLES `sales_order_status` WRITE; /*!40000 ALTER TABLE `sales_order_status` DISABLE KEYS */; INSERT INTO `sales_order_status` VALUES ('canceled','Canceled'),('closed','Closed'),('complete','Complete'),('fraud','Suspected Fraud'),('holded','On Hold'),('payment_review','Payment Review'),('paypal_canceled_reversal','PayPal Canceled Reversal'),('paypal_reversed','PayPal Reversed'),('pending','Pending'),('pending_payment','Pending Payment'),('pending_paypal','Pending PayPal'),('processing','Processing'); /*!40000 ALTER TABLE `sales_order_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_status_label` -- DROP TABLE IF EXISTS `sales_order_status_label`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_order_status_label` ( `status` varchar(32) NOT NULL COMMENT 'Status', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id', `label` varchar(128) NOT NULL COMMENT 'Label', PRIMARY KEY (`status`,`store_id`), KEY `IDX_SALES_ORDER_STATUS_LABEL_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Label Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_order_status_label` -- LOCK TABLES `sales_order_status_label` WRITE; /*!40000 ALTER TABLE `sales_order_status_label` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_status_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_status_state` -- DROP TABLE IF EXISTS `sales_order_status_state`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_order_status_state` ( `status` varchar(32) NOT NULL COMMENT 'Status', `state` varchar(32) NOT NULL COMMENT 'Label', `is_default` smallint(5) unsigned NOT NULL default '0' COMMENT 'Is Default', PRIMARY KEY (`status`,`state`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_order_status_state` -- LOCK TABLES `sales_order_status_state` WRITE; /*!40000 ALTER TABLE `sales_order_status_state` DISABLE KEYS */; INSERT INTO `sales_order_status_state` VALUES ('canceled','canceled',1),('closed','closed',1),('complete','complete',1),('fraud','payment_review',0),('holded','holded',1),('payment_review','payment_review',1),('pending','new',1),('pending_payment','pending_payment',1),('processing','processing',1); /*!40000 ALTER TABLE `sales_order_status_state` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_tax` -- DROP TABLE IF EXISTS `sales_order_tax`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_order_tax` ( `tax_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Tax Id', `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id', `code` varchar(255) default NULL COMMENT 'Code', `title` varchar(255) default NULL COMMENT 'Title', `percent` decimal(12,4) default NULL COMMENT 'Percent', `amount` decimal(12,4) default NULL COMMENT 'Amount', `priority` int(11) NOT NULL COMMENT 'Priority', `position` int(11) NOT NULL COMMENT 'Position', `base_amount` decimal(12,4) default NULL COMMENT 'Base Amount', `process` smallint(6) NOT NULL COMMENT 'Process', `base_real_amount` decimal(12,4) default NULL COMMENT 'Base Real Amount', `hidden` smallint(5) unsigned NOT NULL default '0' COMMENT 'Hidden', PRIMARY KEY (`tax_id`), KEY `IDX_SALES_ORDER_TAX_ORDER_ID_PRIORITY_POSITION` (`order_id`,`priority`,`position`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_order_tax` -- LOCK TABLES `sales_order_tax` WRITE; /*!40000 ALTER TABLE `sales_order_tax` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_tax` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order_tax_item` -- DROP TABLE IF EXISTS `sales_order_tax_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_order_tax_item` ( `tax_item_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Tax Item Id', `tax_id` int(10) unsigned NOT NULL COMMENT 'Tax Id', `item_id` int(10) unsigned NOT NULL COMMENT 'Item Id', `tax_percent` decimal(12,4) NOT NULL COMMENT 'Real Tax Percent For Item', PRIMARY KEY (`tax_item_id`), UNIQUE KEY `UNQ_SALES_ORDER_TAX_ITEM_TAX_ID_ITEM_ID` (`tax_id`,`item_id`), KEY `IDX_SALES_ORDER_TAX_ITEM_TAX_ID` (`tax_id`), KEY `IDX_SALES_ORDER_TAX_ITEM_ITEM_ID` (`item_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Item'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_order_tax_item` -- LOCK TABLES `sales_order_tax_item` WRITE; /*!40000 ALTER TABLE `sales_order_tax_item` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_order_tax_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_payment_transaction` -- DROP TABLE IF EXISTS `sales_payment_transaction`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_payment_transaction` ( `transaction_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Transaction Id', `parent_id` int(10) unsigned default NULL COMMENT 'Parent Id', `order_id` int(10) unsigned NOT NULL default '0' COMMENT 'Order Id', `payment_id` int(10) unsigned NOT NULL default '0' COMMENT 'Payment Id', `txn_id` varchar(100) default NULL COMMENT 'Txn Id', `parent_txn_id` varchar(100) default NULL COMMENT 'Parent Txn Id', `txn_type` varchar(15) default NULL COMMENT 'Txn Type', `is_closed` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Closed', `additional_information` blob COMMENT 'Additional Information', `created_at` timestamp NULL default NULL COMMENT 'Created At', PRIMARY KEY (`transaction_id`), UNIQUE KEY `UNQ_SALES_PAYMENT_TRANSACTION_ORDER_ID_PAYMENT_ID_TXN_ID` (`order_id`,`payment_id`,`txn_id`), KEY `IDX_SALES_PAYMENT_TRANSACTION_ORDER_ID` (`order_id`), KEY `IDX_SALES_PAYMENT_TRANSACTION_PARENT_ID` (`parent_id`), KEY `IDX_SALES_PAYMENT_TRANSACTION_PAYMENT_ID` (`payment_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Payment Transaction'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_payment_transaction` -- LOCK TABLES `sales_payment_transaction` WRITE; /*!40000 ALTER TABLE `sales_payment_transaction` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_payment_transaction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_recurring_profile` -- DROP TABLE IF EXISTS `sales_recurring_profile`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_recurring_profile` ( `profile_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Profile Id', `state` varchar(20) NOT NULL COMMENT 'State', `customer_id` int(10) unsigned default NULL COMMENT 'Customer Id', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `method_code` varchar(32) NOT NULL COMMENT 'Method Code', `created_at` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Created At', `updated_at` timestamp NULL default NULL COMMENT 'Updated At', `reference_id` varchar(32) default NULL COMMENT 'Reference Id', `subscriber_name` varchar(150) default NULL COMMENT 'Subscriber Name', `start_datetime` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Start Datetime', `internal_reference_id` varchar(42) NOT NULL COMMENT 'Internal Reference Id', `schedule_description` varchar(255) NOT NULL COMMENT 'Schedule Description', `suspension_threshold` smallint(5) unsigned default NULL COMMENT 'Suspension Threshold', `bill_failed_later` smallint(5) unsigned NOT NULL default '0' COMMENT 'Bill Failed Later', `period_unit` varchar(20) NOT NULL COMMENT 'Period Unit', `period_frequency` smallint(5) unsigned default NULL COMMENT 'Period Frequency', `period_max_cycles` smallint(5) unsigned default NULL COMMENT 'Period Max Cycles', `billing_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Billing Amount', `trial_period_unit` varchar(20) default NULL COMMENT 'Trial Period Unit', `trial_period_frequency` smallint(5) unsigned default NULL COMMENT 'Trial Period Frequency', `trial_period_max_cycles` smallint(5) unsigned default NULL COMMENT 'Trial Period Max Cycles', `trial_billing_amount` text COMMENT 'Trial Billing Amount', `currency_code` varchar(3) NOT NULL COMMENT 'Currency Code', `shipping_amount` decimal(12,4) default NULL COMMENT 'Shipping Amount', `tax_amount` decimal(12,4) default NULL COMMENT 'Tax Amount', `init_amount` decimal(12,4) default NULL COMMENT 'Init Amount', `init_may_fail` smallint(5) unsigned NOT NULL default '0' COMMENT 'Init May Fail', `order_info` text NOT NULL COMMENT 'Order Info', `order_item_info` text NOT NULL COMMENT 'Order Item Info', `billing_address_info` text NOT NULL COMMENT 'Billing Address Info', `shipping_address_info` text COMMENT 'Shipping Address Info', `profile_vendor_info` text COMMENT 'Profile Vendor Info', `additional_info` text COMMENT 'Additional Info', PRIMARY KEY (`profile_id`), UNIQUE KEY `UNQ_SALES_RECURRING_PROFILE_INTERNAL_REFERENCE_ID` (`internal_reference_id`), KEY `IDX_SALES_RECURRING_PROFILE_CUSTOMER_ID` (`customer_id`), KEY `IDX_SALES_RECURRING_PROFILE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Recurring Profile'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_recurring_profile` -- LOCK TABLES `sales_recurring_profile` WRITE; /*!40000 ALTER TABLE `sales_recurring_profile` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_recurring_profile` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_recurring_profile_order` -- DROP TABLE IF EXISTS `sales_recurring_profile_order`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_recurring_profile_order` ( `link_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Link Id', `profile_id` int(10) unsigned NOT NULL default '0' COMMENT 'Profile Id', `order_id` int(10) unsigned NOT NULL default '0' COMMENT 'Order Id', PRIMARY KEY (`link_id`), UNIQUE KEY `UNQ_SALES_RECURRING_PROFILE_ORDER_PROFILE_ID_ORDER_ID` (`profile_id`,`order_id`), KEY `IDX_SALES_RECURRING_PROFILE_ORDER_ORDER_ID` (`order_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Recurring Profile Order'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_recurring_profile_order` -- LOCK TABLES `sales_recurring_profile_order` WRITE; /*!40000 ALTER TABLE `sales_recurring_profile_order` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_recurring_profile_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_refunded_aggregated` -- DROP TABLE IF EXISTS `sales_refunded_aggregated`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_refunded_aggregated` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `order_status` varchar(50) NOT NULL default '' COMMENT 'Order Status', `orders_count` int(11) NOT NULL default '0' COMMENT 'Orders Count', `refunded` decimal(12,4) default NULL COMMENT 'Refunded', `online_refunded` decimal(12,4) default NULL COMMENT 'Online Refunded', `offline_refunded` decimal(12,4) default NULL COMMENT 'Offline Refunded', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_SALES_REFUNDED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `IDX_SALES_REFUNDED_AGGREGATED_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_refunded_aggregated` -- LOCK TABLES `sales_refunded_aggregated` WRITE; /*!40000 ALTER TABLE `sales_refunded_aggregated` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_refunded_aggregated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_refunded_aggregated_order` -- DROP TABLE IF EXISTS `sales_refunded_aggregated_order`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_refunded_aggregated_order` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `order_status` varchar(50) default NULL COMMENT 'Order Status', `orders_count` int(11) NOT NULL default '0' COMMENT 'Orders Count', `refunded` decimal(12,4) default NULL COMMENT 'Refunded', `online_refunded` decimal(12,4) default NULL COMMENT 'Online Refunded', `offline_refunded` decimal(12,4) default NULL COMMENT 'Offline Refunded', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_SALES_REFUNDED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`), KEY `IDX_SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated Order'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_refunded_aggregated_order` -- LOCK TABLES `sales_refunded_aggregated_order` WRITE; /*!40000 ALTER TABLE `sales_refunded_aggregated_order` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_refunded_aggregated_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_shipping_aggregated` -- DROP TABLE IF EXISTS `sales_shipping_aggregated`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_shipping_aggregated` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `order_status` varchar(50) default NULL COMMENT 'Order Status', `shipping_description` varchar(255) default NULL COMMENT 'Shipping Description', `orders_count` int(11) NOT NULL default '0' COMMENT 'Orders Count', `total_shipping` decimal(12,4) default NULL COMMENT 'Total Shipping', `total_shipping_actual` decimal(12,4) default NULL COMMENT 'Total Shipping Actual', PRIMARY KEY (`id`), UNIQUE KEY `UNQ_SALES_SHPP_AGGRED_PERIOD_STORE_ID_ORDER_STS_SHPP_DESCRIPTION` (`period`,`store_id`,`order_status`,`shipping_description`), KEY `IDX_SALES_SHIPPING_AGGREGATED_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_shipping_aggregated` -- LOCK TABLES `sales_shipping_aggregated` WRITE; /*!40000 ALTER TABLE `sales_shipping_aggregated` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_shipping_aggregated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_shipping_aggregated_order` -- DROP TABLE IF EXISTS `sales_shipping_aggregated_order`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sales_shipping_aggregated_order` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `order_status` varchar(50) default NULL COMMENT 'Order Status', `shipping_description` varchar(255) default NULL COMMENT 'Shipping Description', `orders_count` int(11) NOT NULL default '0' COMMENT 'Orders Count', `total_shipping` decimal(12,4) default NULL COMMENT 'Total Shipping', `total_shipping_actual` decimal(12,4) default NULL COMMENT 'Total Shipping Actual', PRIMARY KEY (`id`), UNIQUE KEY `C05FAE47282EEA68654D0924E946761F` (`period`,`store_id`,`order_status`,`shipping_description`), KEY `IDX_SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated Order'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sales_shipping_aggregated_order` -- LOCK TABLES `sales_shipping_aggregated_order` WRITE; /*!40000 ALTER TABLE `sales_shipping_aggregated_order` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_shipping_aggregated_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule` -- DROP TABLE IF EXISTS `salesrule`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `salesrule` ( `rule_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rule Id', `name` varchar(255) default NULL COMMENT 'Name', `description` text COMMENT 'Description', `from_date` date default NULL, `to_date` date default NULL, `uses_per_customer` int(11) NOT NULL default '0' COMMENT 'Uses Per Customer', `is_active` smallint(6) NOT NULL default '0' COMMENT 'Is Active', `conditions_serialized` mediumtext COMMENT 'Conditions Serialized', `actions_serialized` mediumtext COMMENT 'Actions Serialized', `stop_rules_processing` smallint(6) NOT NULL default '1' COMMENT 'Stop Rules Processing', `is_advanced` smallint(5) unsigned NOT NULL default '1' COMMENT 'Is Advanced', `product_ids` text COMMENT 'Product Ids', `sort_order` int(10) unsigned NOT NULL default '0' COMMENT 'Sort Order', `simple_action` varchar(32) default NULL COMMENT 'Simple Action', `discount_amount` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Discount Amount', `discount_qty` decimal(12,4) default NULL COMMENT 'Discount Qty', `discount_step` int(10) unsigned NOT NULL COMMENT 'Discount Step', `simple_free_shipping` smallint(5) unsigned NOT NULL default '0' COMMENT 'Simple Free Shipping', `apply_to_shipping` smallint(5) unsigned NOT NULL default '0' COMMENT 'Apply To Shipping', `times_used` int(10) unsigned NOT NULL default '0' COMMENT 'Times Used', `is_rss` smallint(6) NOT NULL default '0' COMMENT 'Is Rss', `coupon_type` smallint(5) unsigned NOT NULL default '1' COMMENT 'Coupon Type', `use_auto_generation` smallint(6) NOT NULL default '0' COMMENT 'Use Auto Generation', `uses_per_coupon` int(11) NOT NULL default '0' COMMENT 'Uses Per Coupon', PRIMARY KEY (`rule_id`), KEY `IDX_SALESRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Salesrule'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `salesrule` -- LOCK TABLES `salesrule` WRITE; /*!40000 ALTER TABLE `salesrule` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_coupon` -- DROP TABLE IF EXISTS `salesrule_coupon`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `salesrule_coupon` ( `coupon_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Coupon Id', `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule Id', `code` varchar(255) default NULL COMMENT 'Code', `usage_limit` int(10) unsigned default NULL COMMENT 'Usage Limit', `usage_per_customer` int(10) unsigned default NULL COMMENT 'Usage Per Customer', `times_used` int(10) unsigned NOT NULL default '0' COMMENT 'Times Used', `expiration_date` timestamp NULL default NULL COMMENT 'Expiration Date', `is_primary` smallint(5) unsigned default NULL COMMENT 'Is Primary', `created_at` timestamp NOT NULL default CURRENT_TIMESTAMP COMMENT 'Coupon Code Creation Date', `type` smallint(6) default '0' COMMENT 'Coupon Code Type', PRIMARY KEY (`coupon_id`), UNIQUE KEY `UNQ_SALESRULE_COUPON_CODE` (`code`), UNIQUE KEY `UNQ_SALESRULE_COUPON_RULE_ID_IS_PRIMARY` (`rule_id`,`is_primary`), KEY `IDX_SALESRULE_COUPON_RULE_ID` (`rule_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `salesrule_coupon` -- LOCK TABLES `salesrule_coupon` WRITE; /*!40000 ALTER TABLE `salesrule_coupon` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_coupon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_coupon_usage` -- DROP TABLE IF EXISTS `salesrule_coupon_usage`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `salesrule_coupon_usage` ( `coupon_id` int(10) unsigned NOT NULL COMMENT 'Coupon Id', `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer Id', `times_used` int(10) unsigned NOT NULL default '0' COMMENT 'Times Used', PRIMARY KEY (`coupon_id`,`customer_id`), KEY `IDX_SALESRULE_COUPON_USAGE_COUPON_ID` (`coupon_id`), KEY `IDX_SALESRULE_COUPON_USAGE_CUSTOMER_ID` (`customer_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon Usage'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `salesrule_coupon_usage` -- LOCK TABLES `salesrule_coupon_usage` WRITE; /*!40000 ALTER TABLE `salesrule_coupon_usage` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_coupon_usage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_customer` -- DROP TABLE IF EXISTS `salesrule_customer`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `salesrule_customer` ( `rule_customer_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Rule Customer Id', `rule_id` int(10) unsigned NOT NULL default '0' COMMENT 'Rule Id', `customer_id` int(10) unsigned NOT NULL default '0' COMMENT 'Customer Id', `times_used` smallint(5) unsigned NOT NULL default '0' COMMENT 'Times Used', PRIMARY KEY (`rule_customer_id`), KEY `IDX_SALESRULE_CUSTOMER_RULE_ID_CUSTOMER_ID` (`rule_id`,`customer_id`), KEY `IDX_SALESRULE_CUSTOMER_CUSTOMER_ID_RULE_ID` (`customer_id`,`rule_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Salesrule Customer'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `salesrule_customer` -- LOCK TABLES `salesrule_customer` WRITE; /*!40000 ALTER TABLE `salesrule_customer` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_customer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_customer_group` -- DROP TABLE IF EXISTS `salesrule_customer_group`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `salesrule_customer_group` ( `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', PRIMARY KEY (`rule_id`,`customer_group_id`), KEY `IDX_SALESRULE_CUSTOMER_GROUP_RULE_ID` (`rule_id`), KEY `IDX_SALESRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Rules To Customer Groups Relations'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `salesrule_customer_group` -- LOCK TABLES `salesrule_customer_group` WRITE; /*!40000 ALTER TABLE `salesrule_customer_group` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_customer_group` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_label` -- DROP TABLE IF EXISTS `salesrule_label`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `salesrule_label` ( `label_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Label Id', `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule Id', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id', `label` varchar(255) default NULL COMMENT 'Label', PRIMARY KEY (`label_id`), UNIQUE KEY `UNQ_SALESRULE_LABEL_RULE_ID_STORE_ID` (`rule_id`,`store_id`), KEY `IDX_SALESRULE_LABEL_STORE_ID` (`store_id`), KEY `IDX_SALESRULE_LABEL_RULE_ID` (`rule_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Salesrule Label'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `salesrule_label` -- LOCK TABLES `salesrule_label` WRITE; /*!40000 ALTER TABLE `salesrule_label` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_product_attribute` -- DROP TABLE IF EXISTS `salesrule_product_attribute`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `salesrule_product_attribute` ( `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id', PRIMARY KEY (`rule_id`,`website_id`,`customer_group_id`,`attribute_id`), KEY `IDX_SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID` (`website_id`), KEY `IDX_SALESRULE_PRODUCT_ATTRIBUTE_CUSTOMER_GROUP_ID` (`customer_group_id`), KEY `IDX_SALESRULE_PRODUCT_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Salesrule Product Attribute'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `salesrule_product_attribute` -- LOCK TABLES `salesrule_product_attribute` WRITE; /*!40000 ALTER TABLE `salesrule_product_attribute` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_product_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesrule_website` -- DROP TABLE IF EXISTS `salesrule_website`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `salesrule_website` ( `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule Id', `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id', PRIMARY KEY (`rule_id`,`website_id`), KEY `IDX_SALESRULE_WEBSITE_RULE_ID` (`rule_id`), KEY `IDX_SALESRULE_WEBSITE_WEBSITE_ID` (`website_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Sales Rules To Websites Relations'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `salesrule_website` -- LOCK TABLES `salesrule_website` WRITE; /*!40000 ALTER TABLE `salesrule_website` DISABLE KEYS */; /*!40000 ALTER TABLE `salesrule_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sendfriend_log` -- DROP TABLE IF EXISTS `sendfriend_log`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sendfriend_log` ( `log_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Log ID', `ip` bigint(20) unsigned NOT NULL default '0' COMMENT 'Customer IP address', `time` int(10) unsigned NOT NULL default '0' COMMENT 'Log time', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website ID', PRIMARY KEY (`log_id`), KEY `IDX_SENDFRIEND_LOG_IP` (`ip`), KEY `IDX_SENDFRIEND_LOG_TIME` (`time`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Send to friend function log storage table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sendfriend_log` -- LOCK TABLES `sendfriend_log` WRITE; /*!40000 ALTER TABLE `sendfriend_log` DISABLE KEYS */; /*!40000 ALTER TABLE `sendfriend_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `shipping_tablerate` -- DROP TABLE IF EXISTS `shipping_tablerate`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `shipping_tablerate` ( `pk` int(10) unsigned NOT NULL auto_increment COMMENT 'Primary key', `website_id` int(11) NOT NULL default '0' COMMENT 'Website Id', `dest_country_id` varchar(4) NOT NULL default '0' COMMENT 'Destination coutry ISO/2 or ISO/3 code', `dest_region_id` int(11) NOT NULL default '0' COMMENT 'Destination Region Id', `dest_zip` varchar(10) NOT NULL default '*' COMMENT 'Destination Post Code (Zip)', `condition_name` varchar(20) NOT NULL COMMENT 'Rate Condition name', `condition_value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Rate condition value', `price` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Price', `cost` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Cost', PRIMARY KEY (`pk`), UNIQUE KEY `D60821CDB2AFACEE1566CFC02D0D4CAA` (`website_id`,`dest_country_id`,`dest_region_id`,`dest_zip`,`condition_name`,`condition_value`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Shipping Tablerate'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `shipping_tablerate` -- LOCK TABLES `shipping_tablerate` WRITE; /*!40000 ALTER TABLE `shipping_tablerate` DISABLE KEYS */; /*!40000 ALTER TABLE `shipping_tablerate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sitemap` -- DROP TABLE IF EXISTS `sitemap`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `sitemap` ( `sitemap_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Sitemap Id', `sitemap_type` varchar(32) default NULL COMMENT 'Sitemap Type', `sitemap_filename` varchar(32) default NULL COMMENT 'Sitemap Filename', `sitemap_path` varchar(255) default NULL COMMENT 'Sitemap Path', `sitemap_time` timestamp NULL default NULL COMMENT 'Sitemap Time', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store id', PRIMARY KEY (`sitemap_id`), KEY `IDX_SITEMAP_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Google Sitemap'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `sitemap` -- LOCK TABLES `sitemap` WRITE; /*!40000 ALTER TABLE `sitemap` DISABLE KEYS */; /*!40000 ALTER TABLE `sitemap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tag` -- DROP TABLE IF EXISTS `tag`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tag` ( `tag_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Tag Id', `name` varchar(255) default NULL COMMENT 'Name', `status` smallint(6) NOT NULL default '0' COMMENT 'Status', `first_customer_id` int(10) unsigned default NULL COMMENT 'First Customer Id', `first_store_id` smallint(5) unsigned default NULL COMMENT 'First Store Id', PRIMARY KEY (`tag_id`), KEY `FK_TAG_FIRST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`first_customer_id`), KEY `FK_TAG_FIRST_STORE_ID_CORE_STORE_STORE_ID` (`first_store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='Tag'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tag` -- LOCK TABLES `tag` WRITE; /*!40000 ALTER TABLE `tag` DISABLE KEYS */; INSERT INTO `tag` VALUES (1,'Books',1,1,1),(2,'Hobby',1,1,1),(3,'Happy',1,1,1),(4,'Novel',1,1,1),(5,'Knowledge',1,1,1),(6,'Reading',1,1,1),(7,'Designs',1,1,1),(8,'On-line',1,1,1),(9,'Stores',1,1,1),(10,'Quality',1,1,1),(11,'Collection',1,1,1),(12,'Grand',1,1,1),(13,'Useful',1,1,1),(14,'Authors',1,1,1),(15,'School',1,1,1); /*!40000 ALTER TABLE `tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tag_properties` -- DROP TABLE IF EXISTS `tag_properties`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tag_properties` ( `tag_id` int(10) unsigned NOT NULL default '0' COMMENT 'Tag Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `base_popularity` int(10) unsigned NOT NULL default '0' COMMENT 'Base Popularity', PRIMARY KEY (`tag_id`,`store_id`), KEY `IDX_TAG_PROPERTIES_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tag Properties'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tag_properties` -- LOCK TABLES `tag_properties` WRITE; /*!40000 ALTER TABLE `tag_properties` DISABLE KEYS */; /*!40000 ALTER TABLE `tag_properties` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tag_relation` -- DROP TABLE IF EXISTS `tag_relation`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tag_relation` ( `tag_relation_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Tag Relation Id', `tag_id` int(10) unsigned NOT NULL default '0' COMMENT 'Tag Id', `customer_id` int(10) unsigned default NULL COMMENT 'Customer Id', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product Id', `store_id` smallint(5) unsigned NOT NULL default '1' COMMENT 'Store Id', `active` smallint(5) unsigned NOT NULL default '1' COMMENT 'Active', `created_at` timestamp NULL default NULL COMMENT 'Created At', PRIMARY KEY (`tag_relation_id`), UNIQUE KEY `UNQ_TAG_RELATION_TAG_ID_CUSTOMER_ID_PRODUCT_ID_STORE_ID` (`tag_id`,`customer_id`,`product_id`,`store_id`), KEY `IDX_TAG_RELATION_PRODUCT_ID` (`product_id`), KEY `IDX_TAG_RELATION_TAG_ID` (`tag_id`), KEY `IDX_TAG_RELATION_CUSTOMER_ID` (`customer_id`), KEY `IDX_TAG_RELATION_STORE_ID` (`store_id`) ) ENGINE=MyISAM AUTO_INCREMENT=28 DEFAULT CHARSET=utf8 COMMENT='Tag Relation'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tag_relation` -- LOCK TABLES `tag_relation` WRITE; /*!40000 ALTER TABLE `tag_relation` DISABLE KEYS */; INSERT INTO `tag_relation` VALUES (1,1,1,2,1,1,'2015-02-25 18:14:15'),(2,2,1,2,1,1,'2015-02-25 18:14:59'),(3,3,1,1,1,1,'2015-02-25 18:18:40'),(4,4,1,13,1,1,'2015-02-25 18:33:47'),(5,5,1,8,1,1,'2015-02-25 18:35:36'),(6,6,1,5,1,1,'2015-02-25 18:37:00'),(7,1,1,5,1,1,'2015-02-25 18:37:24'),(8,7,1,4,1,1,'2015-02-25 18:38:18'),(9,8,1,4,1,1,'2015-02-25 18:39:08'),(10,4,1,3,1,1,'2015-02-25 18:40:41'),(11,2,1,3,1,1,'2015-02-25 18:41:06'),(12,9,1,14,1,1,'2015-02-25 18:42:54'),(13,10,1,14,1,1,'2015-02-25 18:43:44'),(14,11,1,19,1,1,'2015-02-25 18:44:57'),(15,12,1,19,1,1,'2015-02-25 18:45:17'),(16,13,1,10,1,1,'2015-02-25 18:46:02'),(17,14,1,10,1,1,'2015-02-25 18:46:41'),(18,6,1,12,1,1,'2015-02-25 18:48:14'),(19,9,1,12,1,1,'2015-02-25 18:48:42'),(20,15,1,15,1,1,'2015-02-25 18:51:50'),(21,12,1,15,1,1,'2015-02-25 18:52:24'),(22,1,1,15,1,1,'2015-02-25 18:52:56'),(23,10,1,8,1,1,'2015-02-25 18:53:07'),(24,8,1,6,1,1,'2015-02-25 18:53:18'),(25,4,1,6,1,1,'2015-02-25 18:53:41'),(26,6,1,8,1,1,'2015-02-25 18:54:03'),(27,9,1,8,1,1,'2015-02-25 18:54:30'); /*!40000 ALTER TABLE `tag_relation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tag_summary` -- DROP TABLE IF EXISTS `tag_summary`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tag_summary` ( `tag_id` int(10) unsigned NOT NULL default '0' COMMENT 'Tag Id', `store_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Store Id', `customers` int(10) unsigned NOT NULL default '0' COMMENT 'Customers', `products` int(10) unsigned NOT NULL default '0' COMMENT 'Products', `uses` int(10) unsigned NOT NULL default '0' COMMENT 'Uses', `historical_uses` int(10) unsigned NOT NULL default '0' COMMENT 'Historical Uses', `popularity` int(10) unsigned NOT NULL default '0' COMMENT 'Popularity', `base_popularity` int(10) unsigned NOT NULL default '0' COMMENT 'Base Popularity', PRIMARY KEY (`tag_id`,`store_id`), KEY `IDX_TAG_SUMMARY_STORE_ID` (`store_id`), KEY `IDX_TAG_SUMMARY_TAG_ID` (`tag_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tag Summary'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tag_summary` -- LOCK TABLES `tag_summary` WRITE; /*!40000 ALTER TABLE `tag_summary` DISABLE KEYS */; INSERT INTO `tag_summary` VALUES (1,0,1,3,0,0,3,0),(1,1,1,3,0,0,3,0),(2,0,1,2,0,0,2,0),(2,1,1,2,0,0,2,0),(3,0,1,1,0,0,1,0),(3,1,1,1,0,0,1,0),(4,0,1,3,0,0,3,0),(4,1,1,3,0,0,3,0),(5,0,1,1,0,0,1,0),(5,1,1,1,0,0,1,0),(6,0,1,3,0,0,3,0),(6,1,1,3,0,0,3,0),(7,0,1,1,0,0,1,0),(7,1,1,1,0,0,1,0),(8,0,1,2,0,0,2,0),(8,1,1,2,0,0,2,0),(9,0,1,3,0,0,3,0),(9,1,1,3,0,0,3,0),(10,0,1,2,0,0,2,0),(10,1,1,2,0,0,2,0),(11,0,1,1,0,0,1,0),(11,1,1,1,0,0,1,0),(12,0,1,2,0,0,2,0),(12,1,1,2,0,0,2,0),(13,0,1,1,0,0,1,0),(13,1,1,1,0,0,1,0),(14,0,1,1,0,0,1,0),(14,1,1,1,0,0,1,0),(15,0,1,1,0,0,1,0),(15,1,1,1,0,0,1,0); /*!40000 ALTER TABLE `tag_summary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_calculation` -- DROP TABLE IF EXISTS `tax_calculation`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tax_calculation` ( `tax_calculation_id` int(11) NOT NULL auto_increment COMMENT 'Tax Calculation Id', `tax_calculation_rate_id` int(11) NOT NULL COMMENT 'Tax Calculation Rate Id', `tax_calculation_rule_id` int(11) NOT NULL COMMENT 'Tax Calculation Rule Id', `customer_tax_class_id` smallint(6) NOT NULL COMMENT 'Customer Tax Class Id', `product_tax_class_id` smallint(6) NOT NULL COMMENT 'Product Tax Class Id', PRIMARY KEY (`tax_calculation_id`), KEY `IDX_TAX_CALCULATION_TAX_CALCULATION_RULE_ID` (`tax_calculation_rule_id`), KEY `IDX_TAX_CALCULATION_TAX_CALCULATION_RATE_ID` (`tax_calculation_rate_id`), KEY `IDX_TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID` (`customer_tax_class_id`), KEY `IDX_TAX_CALCULATION_PRODUCT_TAX_CLASS_ID` (`product_tax_class_id`), KEY `IDX_TAX_CALC_TAX_CALC_RATE_ID_CSTR_TAX_CLASS_ID_PRD_TAX_CLASS_ID` (`tax_calculation_rate_id`,`customer_tax_class_id`,`product_tax_class_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tax_calculation` -- LOCK TABLES `tax_calculation` WRITE; /*!40000 ALTER TABLE `tax_calculation` DISABLE KEYS */; INSERT INTO `tax_calculation` VALUES (1,1,1,3,2),(2,2,1,3,2); /*!40000 ALTER TABLE `tax_calculation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_calculation_rate` -- DROP TABLE IF EXISTS `tax_calculation_rate`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tax_calculation_rate` ( `tax_calculation_rate_id` int(11) NOT NULL auto_increment COMMENT 'Tax Calculation Rate Id', `tax_country_id` varchar(2) NOT NULL COMMENT 'Tax Country Id', `tax_region_id` int(11) NOT NULL COMMENT 'Tax Region Id', `tax_postcode` varchar(21) default NULL COMMENT 'Tax Postcode', `code` varchar(255) NOT NULL COMMENT 'Code', `rate` decimal(12,4) NOT NULL COMMENT 'Rate', `zip_is_range` smallint(6) default NULL COMMENT 'Zip Is Range', `zip_from` int(10) unsigned default NULL COMMENT 'Zip From', `zip_to` int(10) unsigned default NULL COMMENT 'Zip To', PRIMARY KEY (`tax_calculation_rate_id`), KEY `IDX_TAX_CALC_RATE_TAX_COUNTRY_ID_TAX_REGION_ID_TAX_POSTCODE` (`tax_country_id`,`tax_region_id`,`tax_postcode`), KEY `IDX_TAX_CALCULATION_RATE_CODE` (`code`), KEY `CA799F1E2CB843495F601E56C84A626D` (`tax_calculation_rate_id`,`tax_country_id`,`tax_region_id`,`zip_is_range`,`tax_postcode`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tax_calculation_rate` -- LOCK TABLES `tax_calculation_rate` WRITE; /*!40000 ALTER TABLE `tax_calculation_rate` DISABLE KEYS */; INSERT INTO `tax_calculation_rate` VALUES (1,'US',12,'*','US-CA-*-Rate 1','8.2500',NULL,NULL,NULL),(2,'US',43,'*','US-NY-*-Rate 1','8.3750',NULL,NULL,NULL); /*!40000 ALTER TABLE `tax_calculation_rate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_calculation_rate_title` -- DROP TABLE IF EXISTS `tax_calculation_rate_title`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tax_calculation_rate_title` ( `tax_calculation_rate_title_id` int(11) NOT NULL auto_increment COMMENT 'Tax Calculation Rate Title Id', `tax_calculation_rate_id` int(11) NOT NULL COMMENT 'Tax Calculation Rate Id', `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store Id', `value` varchar(255) NOT NULL COMMENT 'Value', PRIMARY KEY (`tax_calculation_rate_title_id`), KEY `IDX_TAX_CALCULATION_RATE_TITLE_TAX_CALCULATION_RATE_ID_STORE_ID` (`tax_calculation_rate_id`,`store_id`), KEY `IDX_TAX_CALCULATION_RATE_TITLE_TAX_CALCULATION_RATE_ID` (`tax_calculation_rate_id`), KEY `IDX_TAX_CALCULATION_RATE_TITLE_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate Title'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tax_calculation_rate_title` -- LOCK TABLES `tax_calculation_rate_title` WRITE; /*!40000 ALTER TABLE `tax_calculation_rate_title` DISABLE KEYS */; /*!40000 ALTER TABLE `tax_calculation_rate_title` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_calculation_rule` -- DROP TABLE IF EXISTS `tax_calculation_rule`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tax_calculation_rule` ( `tax_calculation_rule_id` int(11) NOT NULL auto_increment COMMENT 'Tax Calculation Rule Id', `code` varchar(255) NOT NULL COMMENT 'Code', `priority` int(11) NOT NULL COMMENT 'Priority', `position` int(11) NOT NULL COMMENT 'Position', `calculate_subtotal` int(11) NOT NULL COMMENT 'Calculate off subtotal option', PRIMARY KEY (`tax_calculation_rule_id`), KEY `IDX_TAX_CALC_RULE_PRIORITY_POSITION_TAX_CALC_RULE_ID` (`priority`,`position`,`tax_calculation_rule_id`), KEY `IDX_TAX_CALCULATION_RULE_CODE` (`code`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rule'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tax_calculation_rule` -- LOCK TABLES `tax_calculation_rule` WRITE; /*!40000 ALTER TABLE `tax_calculation_rule` DISABLE KEYS */; INSERT INTO `tax_calculation_rule` VALUES (1,'Retail Customer-Taxable Goods-Rate 1',1,1,0); /*!40000 ALTER TABLE `tax_calculation_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_class` -- DROP TABLE IF EXISTS `tax_class`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tax_class` ( `class_id` smallint(6) NOT NULL auto_increment COMMENT 'Class Id', `class_name` varchar(255) NOT NULL COMMENT 'Class Name', `class_type` varchar(8) NOT NULL default 'CUSTOMER' COMMENT 'Class Type', PRIMARY KEY (`class_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Tax Class'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tax_class` -- LOCK TABLES `tax_class` WRITE; /*!40000 ALTER TABLE `tax_class` DISABLE KEYS */; INSERT INTO `tax_class` VALUES (2,'Taxable Goods','PRODUCT'),(3,'Retail Customer','CUSTOMER'),(4,'Shipping','PRODUCT'); /*!40000 ALTER TABLE `tax_class` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_order_aggregated_created` -- DROP TABLE IF EXISTS `tax_order_aggregated_created`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tax_order_aggregated_created` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `code` varchar(255) NOT NULL COMMENT 'Code', `order_status` varchar(50) NOT NULL COMMENT 'Order Status', `percent` float default NULL COMMENT 'Percent', `orders_count` int(10) unsigned NOT NULL default '0' COMMENT 'Orders Count', `tax_base_amount_sum` float default NULL COMMENT 'Tax Base Amount Sum', PRIMARY KEY (`id`), UNIQUE KEY `FCA5E2C02689EB2641B30580D7AACF12` (`period`,`store_id`,`code`,`percent`,`order_status`), KEY `IDX_TAX_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregation'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tax_order_aggregated_created` -- LOCK TABLES `tax_order_aggregated_created` WRITE; /*!40000 ALTER TABLE `tax_order_aggregated_created` DISABLE KEYS */; /*!40000 ALTER TABLE `tax_order_aggregated_created` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_order_aggregated_updated` -- DROP TABLE IF EXISTS `tax_order_aggregated_updated`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `tax_order_aggregated_updated` ( `id` int(10) unsigned NOT NULL auto_increment COMMENT 'Id', `period` date default NULL COMMENT 'Period', `store_id` smallint(5) unsigned default NULL COMMENT 'Store Id', `code` varchar(255) NOT NULL COMMENT 'Code', `order_status` varchar(50) NOT NULL COMMENT 'Order Status', `percent` float default NULL COMMENT 'Percent', `orders_count` int(10) unsigned NOT NULL default '0' COMMENT 'Orders Count', `tax_base_amount_sum` float default NULL COMMENT 'Tax Base Amount Sum', PRIMARY KEY (`id`), UNIQUE KEY `DB0AF14011199AA6CD31D5078B90AA8D` (`period`,`store_id`,`code`,`percent`,`order_status`), KEY `IDX_TAX_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregated Updated'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `tax_order_aggregated_updated` -- LOCK TABLES `tax_order_aggregated_updated` WRITE; /*!40000 ALTER TABLE `tax_order_aggregated_updated` DISABLE KEYS */; /*!40000 ALTER TABLE `tax_order_aggregated_updated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `weee_discount` -- DROP TABLE IF EXISTS `weee_discount`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `weee_discount` ( `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website Id', `customer_group_id` smallint(5) unsigned NOT NULL COMMENT 'Customer Group Id', `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value', KEY `IDX_WEEE_DISCOUNT_WEBSITE_ID` (`website_id`), KEY `IDX_WEEE_DISCOUNT_ENTITY_ID` (`entity_id`), KEY `IDX_WEEE_DISCOUNT_CUSTOMER_GROUP_ID` (`customer_group_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Weee Discount'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `weee_discount` -- LOCK TABLES `weee_discount` WRITE; /*!40000 ALTER TABLE `weee_discount` DISABLE KEYS */; /*!40000 ALTER TABLE `weee_discount` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `weee_tax` -- DROP TABLE IF EXISTS `weee_tax`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `weee_tax` ( `value_id` int(11) NOT NULL auto_increment COMMENT 'Value Id', `website_id` smallint(5) unsigned NOT NULL default '0' COMMENT 'Website Id', `entity_id` int(10) unsigned NOT NULL default '0' COMMENT 'Entity Id', `country` varchar(2) default NULL COMMENT 'Country', `value` decimal(12,4) NOT NULL default '0.0000' COMMENT 'Value', `state` varchar(255) NOT NULL default '*' COMMENT 'State', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id', `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type Id', PRIMARY KEY (`value_id`), KEY `IDX_WEEE_TAX_WEBSITE_ID` (`website_id`), KEY `IDX_WEEE_TAX_ENTITY_ID` (`entity_id`), KEY `IDX_WEEE_TAX_COUNTRY` (`country`), KEY `IDX_WEEE_TAX_ATTRIBUTE_ID` (`attribute_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Weee Tax'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `weee_tax` -- LOCK TABLES `weee_tax` WRITE; /*!40000 ALTER TABLE `weee_tax` DISABLE KEYS */; /*!40000 ALTER TABLE `weee_tax` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget` -- DROP TABLE IF EXISTS `widget`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `widget` ( `widget_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Widget Id', `widget_code` varchar(255) default NULL COMMENT 'Widget code for template directive', `widget_type` varchar(255) default NULL COMMENT 'Widget Type', `parameters` text COMMENT 'Parameters', PRIMARY KEY (`widget_id`), KEY `IDX_WIDGET_WIDGET_CODE` (`widget_code`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Preconfigured Widgets'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `widget` -- LOCK TABLES `widget` WRITE; /*!40000 ALTER TABLE `widget` DISABLE KEYS */; /*!40000 ALTER TABLE `widget` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_instance` -- DROP TABLE IF EXISTS `widget_instance`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `widget_instance` ( `instance_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Instance Id', `instance_type` varchar(255) default NULL COMMENT 'Instance Type', `package_theme` varchar(255) default NULL COMMENT 'Package Theme', `title` varchar(255) default NULL COMMENT 'Widget Title', `store_ids` varchar(255) NOT NULL default '0' COMMENT 'Store ids', `widget_parameters` text COMMENT 'Widget parameters', `sort_order` smallint(5) unsigned NOT NULL default '0' COMMENT 'Sort order', PRIMARY KEY (`instance_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Instances of Widget for Package Theme'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `widget_instance` -- LOCK TABLES `widget_instance` WRITE; /*!40000 ALTER TABLE `widget_instance` DISABLE KEYS */; INSERT INTO `widget_instance` VALUES (1,'catalogsale/widget_list','default/theme707','Specials','0','a:1:{s:14:\"products_count\";s:1:\"5\";}',0),(2,'cms/widget_block','default/theme707','Slider','0','a:1:{s:8:\"block_id\";s:2:\"13\";}',0),(3,'catalog/product_widget_new','default/theme707','New products','0','a:4:{s:12:\"display_type\";s:12:\"new_products\";s:10:\"show_pager\";s:1:\"0\";s:14:\"products_count\";s:2:\"10\";s:14:\"cache_lifetime\";s:0:\"\";}',1),(4,'blog/last','default/theme707','BLog','0','a:2:{s:12:\"blocks_count\";s:1:\"2\";s:10:\"categories\";a:1:{i:0;s:1:\"1\";}}',3); /*!40000 ALTER TABLE `widget_instance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_instance_page` -- DROP TABLE IF EXISTS `widget_instance_page`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `widget_instance_page` ( `page_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Page Id', `instance_id` int(10) unsigned NOT NULL default '0' COMMENT 'Instance Id', `page_group` varchar(25) default NULL COMMENT 'Block Group Type', `layout_handle` varchar(255) default NULL COMMENT 'Layout Handle', `block_reference` varchar(255) default NULL COMMENT 'Block Reference', `page_for` varchar(25) default NULL COMMENT 'For instance entities', `entities` text COMMENT 'Catalog entities (comma separated)', `page_template` varchar(255) default NULL COMMENT 'Path to widget template', PRIMARY KEY (`page_id`), KEY `IDX_WIDGET_INSTANCE_PAGE_INSTANCE_ID` (`instance_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Instance of Widget on Page'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `widget_instance_page` -- LOCK TABLES `widget_instance_page` WRITE; /*!40000 ALTER TABLE `widget_instance_page` DISABLE KEYS */; INSERT INTO `widget_instance_page` VALUES (1,1,'pages','cms_index_index','left','all','','catalog/product/widget/sale/sale_default_list.phtml'),(2,2,'pages','cms_index_index','content','all','','cms/widget/static_block/default.phtml'),(3,3,'pages','cms_index_index','content','all','','catalog/product/widget/new/content/new_grid.phtml'),(4,4,'pages','cms_index_index','aw_blog_footer','all','',''); /*!40000 ALTER TABLE `widget_instance_page` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_instance_page_layout` -- DROP TABLE IF EXISTS `widget_instance_page_layout`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `widget_instance_page_layout` ( `page_id` int(10) unsigned NOT NULL default '0' COMMENT 'Page Id', `layout_update_id` int(10) unsigned NOT NULL default '0' COMMENT 'Layout Update Id', UNIQUE KEY `UNQ_WIDGET_INSTANCE_PAGE_LAYOUT_LAYOUT_UPDATE_ID_PAGE_ID` (`layout_update_id`,`page_id`), KEY `IDX_WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID` (`page_id`), KEY `IDX_WIDGET_INSTANCE_PAGE_LAYOUT_LAYOUT_UPDATE_ID` (`layout_update_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Layout updates'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `widget_instance_page_layout` -- LOCK TABLES `widget_instance_page_layout` WRITE; /*!40000 ALTER TABLE `widget_instance_page_layout` DISABLE KEYS */; INSERT INTO `widget_instance_page_layout` VALUES (1,4),(2,5),(3,7),(4,8); /*!40000 ALTER TABLE `widget_instance_page_layout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wishlist` -- DROP TABLE IF EXISTS `wishlist`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wishlist` ( `wishlist_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Wishlist ID', `customer_id` int(10) unsigned NOT NULL default '0' COMMENT 'Customer ID', `shared` smallint(5) unsigned NOT NULL default '0' COMMENT 'Sharing flag (0 or 1)', `sharing_code` varchar(32) default NULL COMMENT 'Sharing encrypted code', `updated_at` timestamp NULL default NULL COMMENT 'Last updated date', PRIMARY KEY (`wishlist_id`), UNIQUE KEY `UNQ_WISHLIST_CUSTOMER_ID` (`customer_id`), KEY `IDX_WISHLIST_SHARED` (`shared`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Wishlist main Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wishlist` -- LOCK TABLES `wishlist` WRITE; /*!40000 ALTER TABLE `wishlist` DISABLE KEYS */; /*!40000 ALTER TABLE `wishlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wishlist_item` -- DROP TABLE IF EXISTS `wishlist_item`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wishlist_item` ( `wishlist_item_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Wishlist item ID', `wishlist_id` int(10) unsigned NOT NULL default '0' COMMENT 'Wishlist ID', `product_id` int(10) unsigned NOT NULL default '0' COMMENT 'Product ID', `store_id` smallint(5) unsigned default NULL COMMENT 'Store ID', `added_at` timestamp NULL default NULL COMMENT 'Add date and time', `description` text COMMENT 'Short description of wish list item', `qty` decimal(12,4) NOT NULL COMMENT 'Qty', PRIMARY KEY (`wishlist_item_id`), KEY `IDX_WISHLIST_ITEM_WISHLIST_ID` (`wishlist_id`), KEY `IDX_WISHLIST_ITEM_PRODUCT_ID` (`product_id`), KEY `IDX_WISHLIST_ITEM_STORE_ID` (`store_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Wishlist items'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wishlist_item` -- LOCK TABLES `wishlist_item` WRITE; /*!40000 ALTER TABLE `wishlist_item` DISABLE KEYS */; /*!40000 ALTER TABLE `wishlist_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wishlist_item_option` -- DROP TABLE IF EXISTS `wishlist_item_option`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wishlist_item_option` ( `option_id` int(10) unsigned NOT NULL auto_increment COMMENT 'Option Id', `wishlist_item_id` int(10) unsigned NOT NULL COMMENT 'Wishlist Item Id', `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id', `code` varchar(255) NOT NULL COMMENT 'Code', `value` text COMMENT 'Value', PRIMARY KEY (`option_id`), KEY `FK_A014B30B04B72DD0EAB3EECD779728D6` (`wishlist_item_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Wishlist Item Option Table'; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wishlist_item_option` -- LOCK TABLES `wishlist_item_option` WRITE; /*!40000 ALTER TABLE `wishlist_item_option` DISABLE KEYS */; /*!40000 ALTER TABLE `wishlist_item_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'magtt' -- DELIMITER ;; DELIMITER ; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2018-10-10 11:37:58