-- MySQL dump 10.13 Distrib 5.1.61, for redhat-linux-gnu (x86_64) -- -- Host: localhost Database: ganst1_fuj1 -- ------------------------------------------------------ -- Server version 5.1.61 /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' COMMENT 'Assert Type', `assert_data` text COMMENT 'Assert Data', PRIMARY KEY (`assert_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Assert Table'; /*!40101 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_role` -- DROP TABLE IF EXISTS `admin_role`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Admin Role Table'; /*!40101 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'),(2,1,2,0,'U',1,'Stefano '),(3,1,2,0,'U',2,'Stefano'),(5,1,2,0,'U',3,'Stefano'); /*!40000 ALTER TABLE `admin_role` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_rule` -- DROP TABLE IF EXISTS `admin_rule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_ADMIN_RULE_ROLE_ID_ADMIN_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `admin_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Admin Rule Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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', `failures_num` smallint(6) DEFAULT '0' COMMENT 'Failure Number', `first_failure` timestamp NULL DEFAULT NULL COMMENT 'First Failure', `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Expiration Lock Dates', PRIMARY KEY (`user_id`), UNIQUE KEY `UNQ_ADMIN_USER_USERNAME` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Admin User Table'; /*!40101 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,'Stefano ','Gandini','info@stefanogandini.it','Aadmin-0','e8a01295dec6778668c0c7caecfdd04b0b20e2f3a97f5ad05bef9519657e6d12:TS','2012-03-02 22:25:59','2012-02-20 15:30:57','2012-03-02 20:32:34',87,0,1,'a:1:{s:11:\"configState\";a:108:{s:11:\"tax_classes\";s:1:\"1\";s:15:\"tax_calculation\";s:1:\"1\";s:12:\"tax_defaults\";s:1:\"1\";s:11:\"tax_display\";s:1:\"1\";s:16:\"tax_cart_display\";s:1:\"1\";s:17:\"tax_sales_display\";s:1:\"1\";s:8:\"tax_weee\";s:1:\"1\";s:15:\"general_country\";s:1:\"1\";s:14:\"general_locale\";s:1:\"0\";s:25:\"general_store_information\";s:1:\"0\";s:21:\"easy_lightbox_general\";s:1:\"1\";s:20:\"ig_lightbox2_general\";s:1:\"1\";s:26:\"ig_lightbox2_type-lightbox\";s:1:\"1\";s:26:\"ig_lightbox2_type-fancybox\";s:1:\"1\";s:29:\"ig_lightbox2_type-prettyphoto\";s:1:\"1\";s:26:\"ig_lightbox2_type-colorbox\";s:1:\"1\";s:16:\"wishlist_general\";s:1:\"1\";s:14:\"wishlist_email\";s:1:\"1\";s:22:\"wishlist_wishlist_link\";s:1:\"1\";s:14:\"paypal_account\";s:1:\"1\";s:10:\"paypal_api\";s:1:\"1\";s:14:\"paypal_express\";s:1:\"0\";s:10:\"paypal_wps\";s:1:\"0\";s:10:\"paypal_wpp\";s:1:\"0\";s:31:\"paypal_paypal_billing_agreement\";s:1:\"1\";s:13:\"paypal_wpp_pe\";s:1:\"0\";s:15:\"paypal_verisign\";s:1:\"0\";s:17:\"paypal_express_pe\";s:1:\"0\";s:25:\"paypal_settlement_reports\";s:1:\"1\";s:12:\"paypal_style\";s:1:\"1\";s:19:\"paypal_payflow_link\";s:1:\"0\";s:17:\"paypal_hosted_pro\";s:1:\"0\";s:25:\"enterprise_reward_general\";s:1:\"1\";s:24:\"enterprise_reward_points\";s:1:\"1\";s:30:\"enterprise_reward_notification\";s:1:\"0\";s:16:\"catalog_frontend\";s:1:\"1\";s:15:\"catalog_sitemap\";s:1:\"0\";s:14:\"catalog_review\";s:1:\"1\";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:\"0\";s:14:\"catalog_search\";s:1:\"0\";s:20:\"catalog_downloadable\";s:1:\"0\";s:22:\"catalog_custom_options\";s:1:\"0\";s:31:\"advanced_modules_disable_output\";s:1:\"1\";s:15:\"shipping_origin\";s:1:\"1\";s:15:\"shipping_option\";s:1:\"0\";s:17:\"quickshop_general\";s:1:\"1\";s:14:\"design_package\";s:1:\"1\";s:12:\"design_theme\";s:1:\"1\";s:11:\"design_head\";s:1:\"1\";s:13:\"design_header\";s:1:\"1\";s:13:\"design_footer\";s:1:\"1\";s:16:\"design_watermark\";s:1:\"1\";s:17:\"design_pagination\";s:1:\"1\";s:7:\"web_url\";s:1:\"0\";s:7:\"web_seo\";s:1:\"0\";s:12:\"web_unsecure\";s:1:\"0\";s:10:\"web_secure\";s:1:\"0\";s:11:\"web_default\";s:1:\"1\";s:9:\"web_polls\";s:1:\"0\";s:10:\"web_cookie\";s:1:\"0\";s:11:\"web_session\";s:1:\"0\";s:24:\"web_browser_capabilities\";s:1:\"0\";s:12:\"dev_restrict\";s:1:\"1\";s:9:\"dev_debug\";s:1:\"1\";s:12:\"dev_template\";s:1:\"1\";s:20:\"dev_translate_inline\";s:1:\"1\";s:7:\"dev_log\";s:1:\"1\";s:6:\"dev_js\";s:1:\"1\";s:7:\"dev_css\";s:1:\"1\";s:17:\"easy_tabs_general\";s:1:\"1\";s:16:\"easy_tabs_custom\";s:1:\"1\";s:19:\"easy_tabs_customcms\";s:1:\"1\";s:15:\"payment_pbridge\";s:1:\"0\";s:14:\"payment_ccsave\";s:1:\"0\";s:28:\"payment_pbridge_ogone_direct\";s:1:\"0\";s:12:\"payment_free\";s:1:\"0\";s:15:\"payment_checkmo\";s:1:\"0\";s:21:\"payment_purchaseorder\";s:1:\"0\";s:31:\"payment_authorizenet_directpost\";s:1:\"0\";s:20:\"payment_authorizenet\";s:1:\"0\";s:13:\"payment_ogone\";s:1:\"0\";s:17:\"payment_keyclient\";s:1:\"1\";s:31:\"gomage_activation_lightcheckout\";s:1:\"1\";s:23:\"gomage_checkout_general\";s:1:\"1\";s:28:\"gomage_checkout_registration\";s:1:\"0\";s:28:\"gomage_checkout_deliverydate\";s:1:\"0\";s:21:\"gomage_checkout_geoip\";s:1:\"0\";s:20:\"gomage_checkout_ajax\";s:1:\"0\";s:30:\"gomage_checkout_address_fields\";s:1:\"1\";s:28:\"gomage_checkout_address_sort\";s:1:\"0\";s:19:\"gomage_checkout_vat\";s:1:\"0\";s:34:\"gomage_checkout_termsandconditions\";s:1:\"0\";s:29:\"gomage_checkout_poll_settings\";s:1:\"0\";s:29:\"gomage_checkout_gift_wrapping\";s:1:\"0\";s:17:\"carriers_flatrate\";s:1:\"1\";s:18:\"carriers_tablerate\";s:1:\"0\";s:21:\"carriers_freeshipping\";s:1:\"0\";s:12:\"carriers_ups\";s:1:\"0\";s:13:\"carriers_usps\";s:1:\"0\";s:14:\"carriers_fedex\";s:1:\"0\";s:12:\"carriers_dhl\";s:1:\"0\";}}',NULL,NULL,0,NULL,NULL),(2,'Stefano','gandini','stefano@stefanogandini.it','Gandini','dd23edc7e07b3175d1f41195747fb5fef0dec8c89db8f82412144f198b07f1f6:OR','2012-02-29 17:42:24','2012-02-23 09:06:34','2012-02-29 16:42:24',3,0,1,'N;',NULL,NULL,0,NULL,NULL),(3,'Stefano','Tresoldi','staff@tresoldi.net','stefano.tresoldi','e6000691574419228d0ff58a74e05774c0f6da9c242b23e376a8d74699aa2471:8S','2012-03-02 13:40:40','2012-03-02 12:40:40',NULL,0,0,1,'N;',NULL,NULL,0,NULL,NULL); /*!40000 ALTER TABLE `admin_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `adminnotification_inbox` -- DROP TABLE IF EXISTS `adminnotification_inbox`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Adminnotification Inbox'; /*!40101 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,'2012-01-20 20:17:16','Magento\'s Imagine eCommerce Conference 2012 – Registration Now Open!','Registration for the 2012 Imagine eCommerce Conference is officially OPEN! With an expected attendance of over 1000 Magento enthusiasts, this year’s exclusive event is taking place in Las Vegas, April 23rd – 25th at the luxurious M Resort. Join us for an unforgettable experience!','http://www.magentocommerce.com/blog/comments/registration-for-imagine-ecommerce-2012-is-live/',1,0); /*!40000 ALTER TABLE `adminnotification_inbox` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `api_assert` -- DROP TABLE IF EXISTS `api_assert`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Asserts'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Roles'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_API_RULE_ROLE_ID_API_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `api_role` (`role_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api ACL Rules'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `api_session` ( `user_id` int(10) unsigned NOT NULL COMMENT 'User id', `logdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_API_SESSION_USER_ID_API_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `api_user` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api Sessions'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Api Users'; /*!40101 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 `catalog_category_anc_categs_index_idx` -- DROP TABLE IF EXISTS `catalog_category_anc_categs_index_idx`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' COMMENT 'Path', KEY `IDX_CATALOG_CATEGORY_ANC_CATEGS_INDEX_IDX_CATEGORY_ID` (`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Indexer Index Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' COMMENT 'Path', KEY `IDX_CATALOG_CATEGORY_ANC_CATEGS_INDEX_TMP_CATEGORY_ID` (`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Indexer Temp Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Product Indexer Index Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Anchor Product Indexer Temp Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`) ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Table'; /*!40101 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,'2012-02-08 21:06:14','2012-02-08 21:06:14','1',0,0,24),(2,3,3,1,'2012-02-08 21:06:14','0000-00-00 00:00:00','1/2',1,1,23),(3,3,3,2,'2012-02-16 00:23:26','2012-02-29 07:07:02','1/2/3',0,2,6),(4,3,3,2,'2012-02-16 15:17:54','0000-00-00 00:00:00','1/2/4',1,2,13),(6,3,3,3,'2012-02-25 15:12:25','2012-02-28 10:30:31','1/2/3/6',0,3,0),(8,3,3,3,'2012-02-25 15:12:25','2012-02-26 19:31:26','1/2/3/8',0,3,0),(10,3,3,3,'2012-02-25 15:12:25','2012-02-29 09:18:01','1/2/3/10',0,3,0),(11,3,3,3,'2012-02-25 14:18:48','2012-02-26 19:32:09','1/2/3/11',3,3,0),(12,3,3,3,'2012-02-25 14:19:14','2012-02-26 19:31:11','1/2/3/12',2,3,0),(13,3,3,3,'2012-02-25 14:19:37','2012-02-26 19:31:52','1/2/3/13',1,3,0),(14,3,3,2,'2012-02-25 14:26:04','2012-02-25 14:26:04','1/2/14',0,2,0),(15,3,3,2,'2012-02-25 14:28:04','2012-02-25 14:28:04','1/2/15',2,2,0),(16,3,3,4,'2012-02-25 14:28:35','2012-02-25 14:28:35','1/2/4/16',1,3,0),(17,3,3,4,'2012-02-25 14:28:57','2012-02-25 14:28:57','1/2/4/17',2,3,0),(18,3,3,4,'2012-02-25 14:29:13','2012-02-25 14:29:13','1/2/4/18',3,3,0),(20,3,3,4,'2012-02-25 14:34:11','2012-02-25 14:34:11','1/2/4/20',4,3,0),(21,3,3,4,'2012-02-25 14:34:34','2012-02-25 14:34:34','1/2/4/21',5,3,0),(22,3,3,4,'2012-02-25 14:34:50','2012-02-25 14:34:50','1/2/4/22',6,3,0),(23,3,3,4,'2012-02-25 14:35:07','2012-02-25 14:35:07','1/2/4/23',7,3,0),(24,3,3,4,'2012-02-25 14:35:24','2012-02-25 14:35:24','1/2/4/24',8,3,0),(25,3,3,4,'2012-02-25 14:35:45','2012-02-25 14:35:45','1/2/4/25',9,3,0),(26,3,3,4,'2012-02-25 14:36:05','2012-02-25 14:36:05','1/2/4/26',10,3,0),(27,3,3,4,'2012-02-25 14:36:26','2012-02-25 14:36:26','1/2/4/27',11,3,0),(28,3,3,4,'2012-02-25 14:36:56','2012-02-25 14:36:56','1/2/4/28',12,3,0),(29,3,3,4,'2012-02-25 14:37:10','2012-02-25 14:37:10','1/2/4/29',13,3,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_ENTT_DTIME_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Datetime Attribute Backend Table'; /*!40101 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,53,0,6,NULL),(2,3,54,0,6,NULL),(3,3,53,0,8,NULL),(4,3,54,0,8,NULL),(5,3,53,0,10,NULL),(6,3,54,0,10,NULL),(7,3,53,0,11,NULL),(8,3,54,0,11,NULL),(9,3,53,0,12,NULL),(10,3,54,0,12,NULL),(11,3,53,0,13,NULL),(12,3,54,0,13,NULL),(21,3,53,0,14,NULL),(22,3,54,0,14,NULL),(23,3,53,0,15,NULL),(24,3,54,0,15,NULL),(25,3,53,0,16,NULL),(26,3,54,0,16,NULL),(27,3,53,0,17,NULL),(28,3,54,0,17,NULL),(29,3,53,0,18,NULL),(30,3,54,0,18,NULL),(33,3,53,0,20,NULL),(34,3,54,0,20,NULL),(35,3,53,0,21,NULL),(36,3,54,0,21,NULL),(37,3,53,0,22,NULL),(38,3,54,0,22,NULL),(39,3,53,0,23,NULL),(40,3,54,0,23,NULL),(41,3,53,0,24,NULL),(42,3,54,0,24,NULL),(43,3,53,0,25,NULL),(44,3,54,0,25,NULL),(45,3,53,0,26,NULL),(46,3,54,0,26,NULL),(47,3,53,0,27,NULL),(48,3,54,0,27,NULL),(49,3,53,0,28,NULL),(50,3,54,0,28,NULL),(51,3,53,0,29,NULL),(52,3,54,0,29,NULL),(53,3,53,0,3,NULL),(54,3,54,0,3,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_ENTT_DEC_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Decimal Attribute Backend Table'; /*!40101 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 */; /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_INT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_ENTT_INT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=184 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Integer Attribute Backend Table'; /*!40101 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,61,0,1,1),(2,3,61,1,1,1),(3,3,36,0,2,1),(4,3,61,0,2,1),(5,3,36,1,2,1),(6,3,61,1,2,1),(7,3,61,0,3,1),(8,3,36,0,3,1),(9,3,45,0,3,1),(10,3,45,0,2,1),(11,3,61,0,4,1),(12,3,36,0,4,1),(13,3,45,0,4,1),(14,3,64,0,2,0),(15,3,64,0,3,NULL),(16,3,64,0,4,0),(17,3,64,0,6,NULL),(18,3,61,0,6,1),(19,3,36,0,6,1),(20,3,45,0,6,1),(21,3,64,0,8,NULL),(22,3,61,0,8,1),(23,3,36,0,8,1),(24,3,45,0,8,1),(25,3,64,0,10,NULL),(26,3,61,0,10,1),(27,3,36,0,10,1),(28,3,45,0,10,1),(29,3,44,0,6,NULL),(30,3,62,0,6,0),(31,3,63,0,6,0),(33,3,44,0,8,NULL),(34,3,62,0,8,0),(35,3,63,0,8,0),(37,3,44,0,10,NULL),(38,3,62,0,10,0),(39,3,63,0,10,0),(41,3,36,0,11,1),(42,3,61,0,11,1),(43,3,44,0,11,NULL),(44,3,45,0,11,1),(45,3,62,0,11,0),(46,3,63,0,11,0),(47,3,64,0,11,NULL),(48,3,36,0,12,1),(49,3,61,0,12,1),(50,3,44,0,12,NULL),(51,3,45,0,12,1),(52,3,62,0,12,0),(53,3,63,0,12,0),(54,3,64,0,12,NULL),(55,3,36,0,13,1),(56,3,61,0,13,1),(57,3,44,0,13,NULL),(58,3,45,0,13,1),(59,3,62,0,13,0),(60,3,63,0,13,0),(61,3,64,0,13,NULL),(69,3,36,0,14,1),(70,3,61,0,14,1),(71,3,44,0,14,NULL),(72,3,45,0,14,1),(73,3,62,0,14,0),(74,3,63,0,14,0),(75,3,64,0,14,NULL),(76,3,36,0,15,1),(77,3,61,0,15,1),(78,3,44,0,15,NULL),(79,3,45,0,15,1),(80,3,62,0,15,0),(81,3,63,0,15,0),(82,3,64,0,15,NULL),(83,3,36,0,16,1),(84,3,61,0,16,1),(85,3,44,0,16,NULL),(86,3,45,0,16,1),(87,3,62,0,16,0),(88,3,63,0,16,0),(89,3,64,0,16,NULL),(90,3,36,0,17,1),(91,3,61,0,17,1),(92,3,44,0,17,NULL),(93,3,45,0,17,1),(94,3,62,0,17,0),(95,3,63,0,17,0),(96,3,64,0,17,NULL),(97,3,36,0,18,1),(98,3,61,0,18,1),(99,3,44,0,18,NULL),(100,3,45,0,18,1),(101,3,62,0,18,0),(102,3,63,0,18,0),(103,3,64,0,18,NULL),(111,3,36,0,20,1),(112,3,61,0,20,1),(113,3,44,0,20,NULL),(114,3,45,0,20,1),(115,3,62,0,20,0),(116,3,63,0,20,0),(117,3,64,0,20,NULL),(118,3,36,0,21,1),(119,3,61,0,21,1),(120,3,44,0,21,NULL),(121,3,45,0,21,1),(122,3,62,0,21,0),(123,3,63,0,21,0),(124,3,64,0,21,NULL),(125,3,36,0,22,1),(126,3,61,0,22,1),(127,3,44,0,22,NULL),(128,3,45,0,22,1),(129,3,62,0,22,0),(130,3,63,0,22,0),(131,3,64,0,22,NULL),(132,3,36,0,23,1),(133,3,61,0,23,1),(134,3,44,0,23,NULL),(135,3,45,0,23,1),(136,3,62,0,23,0),(137,3,63,0,23,0),(138,3,64,0,23,NULL),(139,3,36,0,24,1),(140,3,61,0,24,1),(141,3,44,0,24,NULL),(142,3,45,0,24,1),(143,3,62,0,24,0),(144,3,63,0,24,0),(145,3,64,0,24,NULL),(146,3,36,0,25,1),(147,3,61,0,25,1),(148,3,44,0,25,NULL),(149,3,45,0,25,1),(150,3,62,0,25,0),(151,3,63,0,25,0),(152,3,64,0,25,NULL),(153,3,36,0,26,1),(154,3,61,0,26,1),(155,3,44,0,26,NULL),(156,3,45,0,26,1),(157,3,62,0,26,0),(158,3,63,0,26,0),(159,3,64,0,26,NULL),(160,3,36,0,27,1),(161,3,61,0,27,1),(162,3,44,0,27,NULL),(163,3,45,0,27,1),(164,3,62,0,27,0),(165,3,63,0,27,0),(166,3,64,0,27,NULL),(167,3,36,0,28,1),(168,3,61,0,28,1),(169,3,44,0,28,NULL),(170,3,45,0,28,1),(171,3,62,0,28,0),(172,3,63,0,28,0),(173,3,64,0,28,NULL),(174,3,36,0,29,1),(175,3,61,0,29,1),(176,3,44,0,29,NULL),(177,3,45,0,29,1),(178,3,62,0,29,0),(179,3,63,0,29,0),(180,3,64,0,29,NULL),(181,3,44,0,3,NULL),(182,3,62,0,3,0),(183,3,63,0,3,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_ENTT_TEXT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=140 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Text Attribute Backend Table'; /*!40101 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,59,0,1,NULL),(2,3,59,1,1,NULL),(4,3,59,1,2,NULL),(5,3,38,0,6,NULL),(6,3,41,0,6,NULL),(7,3,42,0,6,NULL),(8,3,56,0,6,NULL),(9,3,59,0,6,NULL),(10,3,38,0,8,NULL),(11,3,41,0,8,NULL),(12,3,42,0,8,NULL),(13,3,56,0,8,NULL),(14,3,59,0,8,NULL),(15,3,38,0,10,NULL),(16,3,41,0,10,NULL),(17,3,42,0,10,NULL),(18,3,56,0,10,NULL),(19,3,59,0,10,NULL),(20,3,38,0,11,NULL),(21,3,41,0,11,NULL),(22,3,42,0,11,NULL),(23,3,56,0,11,NULL),(24,3,59,0,11,NULL),(25,3,38,0,12,NULL),(26,3,41,0,12,NULL),(27,3,42,0,12,NULL),(28,3,56,0,12,NULL),(29,3,59,0,12,NULL),(30,3,38,0,13,NULL),(31,3,41,0,13,NULL),(32,3,42,0,13,NULL),(33,3,56,0,13,NULL),(34,3,59,0,13,NULL),(55,3,38,0,14,NULL),(56,3,41,0,14,NULL),(57,3,42,0,14,NULL),(58,3,56,0,14,NULL),(59,3,59,0,14,NULL),(60,3,38,0,15,NULL),(61,3,41,0,15,NULL),(62,3,42,0,15,NULL),(63,3,56,0,15,NULL),(64,3,59,0,15,NULL),(65,3,38,0,16,NULL),(66,3,41,0,16,NULL),(67,3,42,0,16,NULL),(68,3,56,0,16,NULL),(69,3,59,0,16,NULL),(70,3,38,0,17,NULL),(71,3,41,0,17,NULL),(72,3,42,0,17,NULL),(73,3,56,0,17,NULL),(74,3,59,0,17,NULL),(75,3,38,0,18,NULL),(76,3,41,0,18,NULL),(77,3,42,0,18,NULL),(78,3,56,0,18,NULL),(79,3,59,0,18,NULL),(85,3,38,0,20,NULL),(86,3,41,0,20,NULL),(87,3,42,0,20,NULL),(88,3,56,0,20,NULL),(89,3,59,0,20,NULL),(90,3,38,0,21,NULL),(91,3,41,0,21,NULL),(92,3,42,0,21,NULL),(93,3,56,0,21,NULL),(94,3,59,0,21,NULL),(95,3,38,0,22,NULL),(96,3,41,0,22,NULL),(97,3,42,0,22,NULL),(98,3,56,0,22,NULL),(99,3,59,0,22,NULL),(100,3,38,0,23,NULL),(101,3,41,0,23,NULL),(102,3,42,0,23,NULL),(103,3,56,0,23,NULL),(104,3,59,0,23,NULL),(105,3,38,0,24,NULL),(106,3,41,0,24,NULL),(107,3,42,0,24,NULL),(108,3,56,0,24,NULL),(109,3,59,0,24,NULL),(110,3,38,0,25,NULL),(111,3,41,0,25,NULL),(112,3,42,0,25,NULL),(113,3,56,0,25,NULL),(114,3,59,0,25,NULL),(115,3,38,0,26,NULL),(116,3,41,0,26,NULL),(117,3,42,0,26,NULL),(118,3,56,0,26,NULL),(119,3,59,0,26,NULL),(120,3,38,0,27,NULL),(121,3,41,0,27,NULL),(122,3,42,0,27,NULL),(123,3,56,0,27,NULL),(124,3,59,0,27,NULL),(125,3,38,0,28,NULL),(126,3,41,0,28,NULL),(127,3,42,0,28,NULL),(128,3,56,0,28,NULL),(129,3,59,0,28,NULL),(130,3,38,0,29,NULL),(131,3,41,0,29,NULL),(132,3,42,0,29,NULL),(133,3,56,0,29,NULL),(134,3,59,0,29,NULL),(135,3,38,0,3,NULL),(136,3,41,0,3,NULL),(137,3,42,0,3,NULL),(138,3,56,0,3,'\r\n \r\n \r\n Test di modifica layout categoria]]>\r\n \r\n \r\n\r\n\r\n\r\n \r\n css/styles_pink.css\r\n media=\"all\"\r\n \r\n\r\n\r\n '),(139,3,59,0,3,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_ENTT_VCHR_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=210 DEFAULT CHARSET=utf8 COMMENT='Catalog Category Varchar Attribute Backend Table'; /*!40101 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,35,0,1,'Root Catalog'),(2,3,35,1,1,'Root Catalog'),(3,3,37,1,1,'root-catalog'),(4,3,35,0,2,'Default Category'),(5,3,35,1,2,'Default Category'),(6,3,43,1,2,'PRODUCTS'),(7,3,37,1,2,'default-category'),(8,3,43,0,3,'PRODUCTS'),(9,3,35,0,3,'Fotocamere digitali'),(10,3,37,0,3,'fotocamere-digitali'),(11,3,51,0,3,'fotocamere-digitali.html'),(12,3,43,0,4,'PRODUCTS'),(13,3,35,0,4,'Accessori'),(14,3,37,0,4,'accessori'),(15,3,51,0,4,'accessori.html'),(16,3,43,0,6,'PRODUCTS'),(17,3,35,0,6,'FinePix Serie J'),(18,3,37,0,6,'finepix-serie-j'),(19,3,51,0,6,'fotocamere-digitali/finepix-serie-j.html'),(20,3,43,0,8,'PRODUCTS'),(21,3,35,0,8,'FinePix Serie F'),(22,3,37,0,8,'finepix-serie-f'),(23,3,51,0,8,'fotocamere-digitali/finepix-serie-f.html'),(24,3,43,0,10,'PRODUCTS'),(25,3,35,0,10,'Fujiflm Serie X'),(26,3,37,0,10,'fujiflm-serie-x'),(27,3,51,0,10,'fotocamere-digitali/fujiflm-serie-x.html'),(28,3,40,0,6,NULL),(29,3,52,0,6,NULL),(30,3,55,0,6,'two_columns_left'),(32,3,51,1,6,'fotocamere-digitali/finepix-serie-j.html'),(33,3,40,0,8,NULL),(34,3,52,0,8,NULL),(35,3,55,0,8,'two_columns_left'),(37,3,51,1,8,'fotocamere-digitali/finepix-serie-f.html'),(38,3,40,0,10,NULL),(39,3,52,0,10,NULL),(40,3,55,0,10,'two_columns_left'),(42,3,51,1,10,'fotocamere-digitali/fujiflm-serie-x.html'),(43,3,35,0,11,'FinePix Serie A'),(44,3,37,0,11,'finepix-serie-a'),(45,3,40,0,11,NULL),(46,3,43,0,11,'PRODUCTS'),(47,3,52,0,11,NULL),(48,3,55,0,11,'two_columns_left'),(49,3,51,1,11,'fotocamere-digitali/finepix-serie-a.html'),(50,3,51,0,11,'fotocamere-digitali/finepix-serie-a.html'),(51,3,35,0,12,'FinePix Serie T/XP'),(52,3,37,0,12,'finepix-serie-t-xp'),(53,3,40,0,12,NULL),(54,3,43,0,12,'PRODUCTS'),(55,3,52,0,12,NULL),(56,3,55,0,12,'two_columns_left'),(57,3,51,1,12,'fotocamere-digitali/finepix-serie-t-xp.html'),(58,3,51,0,12,'fotocamere-digitali/finepix-serie-t-xp.html'),(59,3,35,0,13,'FinePix Serie S/HS'),(60,3,37,0,13,'finepix-serie-s-hs'),(61,3,40,0,13,NULL),(62,3,43,0,13,'PRODUCTS'),(63,3,52,0,13,NULL),(64,3,55,0,13,'two_columns_left'),(65,3,51,1,13,'fotocamere-digitali/finepix-serie-s-hs.html'),(66,3,51,0,13,'fotocamere-digitali/finepix-serie-s-hs.html'),(79,3,35,0,14,'Fotocamere Ricondizionate'),(80,3,37,0,14,'fotocamere-ricondizionate'),(81,3,40,0,14,NULL),(82,3,43,0,14,'PRODUCTS'),(83,3,52,0,14,NULL),(84,3,55,0,14,NULL),(85,3,35,0,15,'Estensione Garanzia'),(86,3,37,0,15,'estensione-garanzia'),(87,3,40,0,15,NULL),(88,3,43,0,15,'PRODUCTS'),(89,3,52,0,15,NULL),(90,3,55,0,15,NULL),(91,3,35,0,16,'Custodie macchine digitali'),(92,3,37,0,16,'custodie-macchine-digitali'),(93,3,40,0,16,NULL),(94,3,43,0,16,'PRODUCTS'),(95,3,52,0,16,NULL),(96,3,55,0,16,NULL),(97,3,51,1,16,'accessori/custodie-macchine-digitali-2.html'),(98,3,51,0,16,'accessori/custodie-macchine-digitali-2.html'),(99,3,35,0,17,'Custodie subaquee'),(100,3,37,0,17,'custodie-subaquee'),(101,3,40,0,17,NULL),(102,3,43,0,17,'PRODUCTS'),(103,3,52,0,17,NULL),(104,3,55,0,17,NULL),(105,3,51,1,17,'accessori/custodie-subaquee-1.html'),(106,3,51,0,17,'accessori/custodie-subaquee-1.html'),(107,3,35,0,18,'Batterie'),(108,3,37,0,18,'batterie'),(109,3,40,0,18,NULL),(110,3,43,0,18,'PRODUCTS'),(111,3,52,0,18,NULL),(112,3,55,0,18,NULL),(113,3,51,1,18,'accessori/batterie.html'),(114,3,51,0,18,'accessori/batterie.html'),(115,3,51,1,14,'fotocamere-ricondizionate.html'),(116,3,51,0,14,'fotocamere-ricondizionate.html'),(117,3,51,1,15,'estensione-garanzia.html'),(118,3,51,0,15,'estensione-garanzia.html'),(127,3,35,0,20,'Caricabatterie'),(128,3,37,0,20,'caricabatterie'),(129,3,40,0,20,NULL),(130,3,43,0,20,'PRODUCTS'),(131,3,52,0,20,NULL),(132,3,55,0,20,NULL),(133,3,51,1,20,'accessori/caricabatterie.html'),(134,3,51,0,20,'accessori/caricabatterie.html'),(135,3,35,0,21,'Alimentatori'),(136,3,37,0,21,'alimentatori'),(137,3,40,0,21,NULL),(138,3,43,0,21,'PRODUCTS'),(139,3,52,0,21,NULL),(140,3,55,0,21,NULL),(141,3,51,1,21,'accessori/alimentatori.html'),(142,3,51,0,21,'accessori/alimentatori.html'),(143,3,35,0,22,'Flash'),(144,3,37,0,22,'flash'),(145,3,40,0,22,NULL),(146,3,43,0,22,'PRODUCTS'),(147,3,52,0,22,NULL),(148,3,55,0,22,NULL),(149,3,51,1,22,'accessori/flash.html'),(150,3,51,0,22,'accessori/flash.html'),(151,3,35,0,23,'Cavi collegamento'),(152,3,37,0,23,'cavi-collegamento'),(153,3,40,0,23,NULL),(154,3,43,0,23,'PRODUCTS'),(155,3,52,0,23,NULL),(156,3,55,0,23,NULL),(157,3,51,1,23,'accessori/cavi-collegamento.html'),(158,3,51,0,23,'accessori/cavi-collegamento.html'),(159,3,35,0,24,'Lettori memory card'),(160,3,37,0,24,'lettori-memory-card'),(161,3,40,0,24,NULL),(162,3,43,0,24,'PRODUCTS'),(163,3,52,0,24,NULL),(164,3,55,0,24,NULL),(165,3,51,1,24,'accessori/lettori-memory-card.html'),(166,3,51,0,24,'accessori/lettori-memory-card.html'),(167,3,35,0,25,'Software & manuali'),(168,3,37,0,25,'software-manuali'),(169,3,40,0,25,NULL),(170,3,43,0,25,'PRODUCTS'),(171,3,52,0,25,NULL),(172,3,55,0,25,NULL),(173,3,51,1,25,'accessori/software-manuali.html'),(174,3,51,0,25,'accessori/software-manuali.html'),(175,3,35,0,26,'Carta stampe digitali'),(176,3,37,0,26,'carta-stampe-digitali'),(177,3,40,0,26,NULL),(178,3,43,0,26,'PRODUCTS'),(179,3,52,0,26,NULL),(180,3,55,0,26,NULL),(181,3,51,1,26,'accessori/carta-stampe-digitali.html'),(182,3,51,0,26,'accessori/carta-stampe-digitali.html'),(183,3,35,0,27,'Accesori dedicati'),(184,3,37,0,27,'accesori-dedicati'),(185,3,40,0,27,NULL),(186,3,43,0,27,'PRODUCTS'),(187,3,52,0,27,NULL),(188,3,55,0,27,NULL),(189,3,51,1,27,'accessori/accesori-dedicati.html'),(190,3,51,0,27,'accessori/accesori-dedicati.html'),(191,3,35,0,28,'Kit'),(192,3,37,0,28,'kit'),(193,3,40,0,28,NULL),(194,3,43,0,28,'PRODUCTS'),(195,3,52,0,28,NULL),(196,3,55,0,28,NULL),(197,3,51,1,28,'accessori/kit.html'),(198,3,51,0,28,'accessori/kit.html'),(199,3,35,0,29,'Instax Film'),(200,3,37,0,29,'instax-film'),(201,3,40,0,29,NULL),(202,3,43,0,29,'PRODUCTS'),(203,3,52,0,29,NULL),(204,3,55,0,29,NULL),(205,3,51,1,29,'accessori/instax-film.html'),(206,3,51,0,29,'accessori/instax-film.html'),(207,3,40,0,3,NULL),(208,3,52,0,3,'pro/default'),(209,3,55,0,3,'two_columns_left'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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` int(11) 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', `thumbnail` varchar(255) DEFAULT NULL COMMENT 'Thumbnail Image', `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`), CONSTRAINT `FK_CATALOG_CATEGORY_FLAT_STORE_1_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_FLAT_STORE_1_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Flat (Store 1)'; /*!40101 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,'2012-02-08 21:06:14','2012-02-08 21:06:14','1',0,0,24,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,NULL,NULL,NULL),(2,1,'2012-02-08 21:06:14','0000-00-00 00:00:00','1/2',1,1,23,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,1,1,1,NULL,NULL,NULL,NULL,'Default Category',NULL,NULL,NULL,NULL,NULL),(3,2,'2012-02-16 00:23:26','2012-02-27 06:14:54','1/2/3',0,2,6,1,NULL,NULL,NULL,0,NULL,NULL,NULL,'\r\n \r\n \r\n Test di modifica layout categoria]]>\r\n \r\n \r\n\r\n\r\n\r\n \r\n css/styles_pink.css\r\n media=\"all\"\r\n \r\n\r\n\r\n ',0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Fotocamere digitali','two_columns_left',NULL,NULL,'fotocamere-digitali','fotocamere-digitali.html'),(4,2,'2012-02-16 15:17:54','0000-00-00 00:00:00','1/2/4',1,2,13,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'PRODUCTS',0,NULL,1,1,1,NULL,NULL,NULL,NULL,'Accessori',NULL,NULL,NULL,'accessori','accessori.html'),(6,3,'2012-02-25 15:12:25','2012-02-26 19:30:39','1/2/3/6',0,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'FinePix Serie J','two_columns_left',NULL,NULL,'finepix-serie-j','fotocamere-digitali/finepix-serie-j.html'),(8,3,'2012-02-25 15:12:25','2012-02-26 19:31:26','1/2/3/8',0,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'FinePix Serie F','two_columns_left',NULL,NULL,'finepix-serie-f','fotocamere-digitali/finepix-serie-f.html'),(10,3,'2012-02-25 15:12:25','2012-02-26 19:31:40','1/2/3/10',0,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Fujiflm Serie X','two_columns_left',NULL,NULL,'fujiflm-serie-x','fotocamere-digitali/fujiflm-serie-x.html'),(11,3,'2012-02-25 14:18:48','2012-02-26 19:32:09','1/2/3/11',3,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'FinePix Serie A','two_columns_left',NULL,NULL,'finepix-serie-a','fotocamere-digitali/finepix-serie-a.html'),(12,3,'2012-02-25 14:19:14','2012-02-26 19:31:11','1/2/3/12',2,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'FinePix Serie T/XP','two_columns_left',NULL,NULL,'finepix-serie-t-xp','fotocamere-digitali/finepix-serie-t-xp.html'),(13,3,'2012-02-25 14:19:37','2012-02-26 19:31:52','1/2/3/13',1,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'FinePix Serie S/HS','two_columns_left',NULL,NULL,'finepix-serie-s-hs','fotocamere-digitali/finepix-serie-s-hs.html'),(14,2,'2012-02-25 14:26:04','2012-02-25 14:26:04','1/2/14',0,2,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Fotocamere Ricondizionate',NULL,NULL,NULL,'fotocamere-ricondizionate','fotocamere-ricondizionate.html'),(15,2,'2012-02-25 14:28:04','2012-02-25 14:28:04','1/2/15',2,2,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Estensione Garanzia',NULL,NULL,NULL,'estensione-garanzia','estensione-garanzia.html'),(16,4,'2012-02-25 14:28:35','2012-02-25 14:28:35','1/2/4/16',1,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Custodie macchine digitali',NULL,NULL,NULL,'custodie-macchine-digitali','accessori/custodie-macchine-digitali-2.html'),(17,4,'2012-02-25 14:28:57','2012-02-25 14:28:57','1/2/4/17',2,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Custodie subaquee',NULL,NULL,NULL,'custodie-subaquee','accessori/custodie-subaquee-1.html'),(18,4,'2012-02-25 14:29:13','2012-02-25 14:29:13','1/2/4/18',3,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Batterie',NULL,NULL,NULL,'batterie','accessori/batterie.html'),(20,4,'2012-02-25 14:34:11','2012-02-25 14:34:11','1/2/4/20',4,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Caricabatterie',NULL,NULL,NULL,'caricabatterie','accessori/caricabatterie.html'),(21,4,'2012-02-25 14:34:34','2012-02-25 14:34:34','1/2/4/21',5,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Alimentatori',NULL,NULL,NULL,'alimentatori','accessori/alimentatori.html'),(22,4,'2012-02-25 14:34:50','2012-02-25 14:34:50','1/2/4/22',6,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Flash',NULL,NULL,NULL,'flash','accessori/flash.html'),(23,4,'2012-02-25 14:35:07','2012-02-25 14:35:07','1/2/4/23',7,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Cavi collegamento',NULL,NULL,NULL,'cavi-collegamento','accessori/cavi-collegamento.html'),(24,4,'2012-02-25 14:35:24','2012-02-25 14:35:24','1/2/4/24',8,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Lettori memory card',NULL,NULL,NULL,'lettori-memory-card','accessori/lettori-memory-card.html'),(25,4,'2012-02-25 14:35:45','2012-02-25 14:35:45','1/2/4/25',9,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Software & manuali',NULL,NULL,NULL,'software-manuali','accessori/software-manuali.html'),(26,4,'2012-02-25 14:36:05','2012-02-25 14:36:05','1/2/4/26',10,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Carta stampe digitali',NULL,NULL,NULL,'carta-stampe-digitali','accessori/carta-stampe-digitali.html'),(27,4,'2012-02-25 14:36:26','2012-02-25 14:36:26','1/2/4/27',11,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Accesori dedicati',NULL,NULL,NULL,'accesori-dedicati','accessori/accesori-dedicati.html'),(28,4,'2012-02-25 14:36:56','2012-02-25 14:36:56','1/2/4/28',12,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Kit',NULL,NULL,NULL,'kit','accessori/kit.html'),(29,4,'2012-02-25 14:37:10','2012-02-25 14:37:10','1/2/4/29',13,3,0,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,0,NULL,NULL,'PRODUCTS',NULL,NULL,1,1,1,NULL,NULL,NULL,NULL,'Instax Film',NULL,NULL,NULL,'instax-film','accessori/instax-film.html'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_CTGR_PRD_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_PRD_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Category Linkage Table'; /*!40101 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,0),(3,4,0),(3,5,0),(3,6,0),(4,3,1),(6,3,0),(6,4,0),(6,5,0),(10,4,0),(10,5,0),(10,6,0); /*!40000 ALTER TABLE `catalog_category_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_category_product_index` -- DROP TABLE IF EXISTS `catalog_category_product_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_CATEGORY_PRODUCT_INDEX_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_PRD_IDX_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CTGR_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index'; /*!40101 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,2,30000,0,1,4),(2,4,30000,0,1,4),(2,5,30000,0,1,4),(2,6,30000,0,1,4),(2,1,30001,0,1,4),(2,3,40000,0,1,4),(3,3,40000,0,1,4),(3,2,0,1,1,4),(3,4,0,1,1,4),(3,5,0,1,1,4),(3,6,0,1,1,4),(3,1,1,1,1,4),(4,3,1,1,1,4),(6,3,0,1,1,4),(6,4,0,1,1,4),(6,5,0,1,1,4),(10,4,0,1,1,4),(10,5,0,1,1,4),(10,6,0,1,1,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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_CATALOG_CATEGORY_PRODUCT_INDEX_ENBL_IDX_PRODUCT_ID` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Enabled Indexer Index Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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_CATALOG_CATEGORY_PRODUCT_INDEX_ENBL_TMP_PRODUCT_ID` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Enabled Indexer Temp Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Indexer Index Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Indexer Temp Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_COMPARE_ITEM_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOG_COMPARE_ITEM_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `FK_CAT_CMP_ITEM_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COMMENT='Catalog Compare Table'; /*!40101 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,19,NULL,1,1),(2,29,NULL,2,1),(4,61,NULL,1,1),(5,61,NULL,6,1),(6,62,NULL,1,1),(8,62,NULL,4,1),(10,61,NULL,5,1),(11,61,NULL,4,1),(12,61,NULL,2,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog EAV Attribute Table'; /*!40101 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 (35,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(36,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(37,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(38,NULL,0,1,0,0,0,0,1,0,0,0,0,1,NULL,0,0,1,0),(39,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(40,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(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,0,0,0,0,0,1,NULL,0,0,0,0),(45,NULL,1,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(46,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(47,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(48,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(49,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(50,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(51,NULL,0,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(52,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(53,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(54,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(55,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(56,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(57,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(58,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(59,'adminhtml/catalog_category_helper_sortby_available',0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(60,'adminhtml/catalog_category_helper_sortby_default',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,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(64,'adminhtml/catalog_category_helper_pricestep',0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(65,NULL,0,1,1,0,0,0,0,0,0,1,1,1,NULL,1,0,0,0),(66,NULL,0,1,1,0,1,0,1,0,0,0,0,1,NULL,1,0,1,0),(67,NULL,0,1,1,0,1,0,1,0,0,1,0,1,NULL,1,0,1,0),(68,NULL,1,1,1,0,1,0,0,0,0,0,0,1,NULL,1,0,0,0),(69,NULL,2,1,1,1,0,0,0,0,0,1,1,1,'simple,configurable,virtual,bundle,downloadable',1,0,0,0),(70,NULL,2,1,0,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(71,NULL,2,1,0,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(72,NULL,2,1,0,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(73,NULL,2,1,0,0,0,0,0,0,0,0,0,1,'virtual,downloadable',0,0,0,0),(74,NULL,1,1,0,0,1,0,0,0,0,0,0,1,'simple,giftcard,bundle',0,0,0,0),(75,NULL,1,1,1,0,1,0,0,0,0,0,0,1,'simple',1,0,0,0),(76,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(77,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(78,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(79,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(80,NULL,0,1,0,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(81,NULL,0,1,0,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(82,NULL,1,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(83,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(84,NULL,2,1,0,0,0,0,0,0,0,0,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(85,NULL,1,1,1,1,1,0,0,0,1,1,0,1,'simple',1,0,0,0),(86,NULL,2,1,0,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(87,NULL,2,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,2,1,1,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(90,NULL,0,1,0,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(91,NULL,0,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(92,NULL,0,0,0,0,0,0,0,0,0,0,0,1,'simple,configurable,virtual,bundle,downloadable',0,0,0,0),(93,NULL,1,1,0,0,0,0,0,0,0,0,0,0,'simple,virtual',0,0,0,0),(94,NULL,1,1,0,0,0,0,0,0,0,0,0,0,'simple,virtual',0,0,0,0),(95,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(96,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(97,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(98,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(99,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(100,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(101,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,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,1,0,0,0,0,0,0,0,0,1,0,1,NULL,0,0,0,0),(104,NULL,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(105,NULL,0,0,0,0,0,0,0,0,0,1,0,0,NULL,0,0,0,0),(106,NULL,0,0,0,0,0,0,0,0,0,1,0,0,NULL,0,0,0,0),(107,NULL,0,0,0,0,0,0,0,0,0,1,0,0,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,1,0,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(110,NULL,2,1,0,0,0,0,0,0,0,0,0,0,'simple,configurable,bundle,grouped',0,0,0,0),(111,'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),(112,'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),(113,NULL,2,1,0,0,0,0,0,0,0,1,0,1,'simple,bundle,configurable,virtual,downloadable',0,0,0,0),(114,NULL,1,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0),(115,NULL,2,1,1,0,0,0,0,0,0,1,0,1,'simple,configurable,virtual,downloadable,bundle',1,0,0,0),(116,'giftmessage/adminhtml_product_helper_form_config',1,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0),(117,NULL,1,0,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(118,NULL,1,0,0,0,0,0,0,0,0,0,0,0,'bundle',0,0,0,0),(119,NULL,1,0,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(120,NULL,1,1,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(121,NULL,1,0,0,0,0,0,0,0,0,1,0,0,'bundle',0,0,0,0),(122,NULL,1,0,0,0,0,0,0,0,0,1,0,0,'downloadable',0,0,0,0),(123,NULL,0,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0),(124,NULL,0,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0),(125,NULL,1,0,0,0,0,0,0,0,0,1,0,0,'downloadable',0,0,0,0),(126,NULL,0,1,0,0,0,0,0,0,0,0,0,1,NULL,0,0,0,0),(127,NULL,2,1,0,0,0,0,0,0,0,1,0,0,'giftcard',0,0,0,0),(128,NULL,2,1,0,0,0,0,0,0,0,1,0,0,'giftcard',0,0,0,0),(129,NULL,2,1,0,0,0,0,0,0,0,1,0,0,'giftcard',0,0,0,0),(130,NULL,2,1,0,0,0,0,0,0,0,1,0,0,'giftcard',0,0,0,0),(131,NULL,1,0,0,0,0,0,0,0,0,0,0,0,'giftcard',0,0,0,0),(132,NULL,2,0,0,0,0,0,0,0,0,0,0,0,'giftcard',0,0,0,0),(133,NULL,2,0,0,0,0,0,0,0,0,0,0,0,'giftcard',0,0,0,0),(134,NULL,2,0,0,0,0,0,0,0,0,0,0,0,'giftcard',0,0,0,0),(135,NULL,2,0,0,0,0,0,0,0,0,0,0,0,'giftcard',0,0,0,0),(136,NULL,0,0,0,0,0,0,0,0,0,0,0,0,'giftcard',0,0,0,0),(137,NULL,0,0,0,0,0,0,0,0,0,0,0,0,'giftcard',0,0,0,0),(138,NULL,0,0,0,0,0,0,0,0,0,0,0,0,'giftcard',0,0,0,0),(139,NULL,0,0,0,0,0,0,0,0,0,0,0,0,'giftcard',0,0,0,0),(142,NULL,1,1,0,1,1,0,0,0,0,0,0,1,'',0,0,0,0),(143,NULL,1,1,0,1,1,0,0,0,1,0,0,1,'',0,0,0,0),(144,NULL,1,1,0,1,1,0,0,0,1,0,0,1,'',0,0,0,0),(145,NULL,1,1,0,1,1,0,0,0,0,0,0,1,'',0,0,0,0),(146,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(147,NULL,1,1,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0),(148,NULL,1,1,0,0,0,0,1,0,0,0,0,1,'',0,0,0,0),(149,NULL,1,1,0,0,1,0,0,0,1,0,0,1,'',0,0,0,0),(150,NULL,1,1,0,0,1,0,0,0,0,0,0,1,'',0,0,0,0),(151,NULL,1,1,0,0,1,0,0,0,0,0,0,1,'',0,0,0,0),(152,NULL,1,1,0,0,1,0,0,0,0,0,0,1,'',0,0,0,0),(153,NULL,1,1,0,0,1,0,0,0,0,0,0,1,'',0,0,0,0),(154,NULL,1,1,0,0,1,0,0,0,0,0,0,1,'',0,0,0,0),(155,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(156,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(157,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(158,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(159,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(160,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(161,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(162,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(163,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(164,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(165,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(166,NULL,1,1,0,0,1,0,1,0,0,0,0,1,'',0,0,0,0),(168,NULL,1,1,1,0,1,0,1,0,0,0,0,0,NULL,1,0,1,0),(169,NULL,0,1,1,0,0,0,1,0,0,0,0,0,NULL,1,0,1,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_BNDL_OPT_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Option'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_BNDL_OPT_VAL_OPT_ID_CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Option Value'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_BNDL_PRICE_IDX_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_BNDL_PRICE_IDX_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_BNDL_PRICE_IDX_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Price Index'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_BNDL_SELECTION_OPT_ID_CAT_PRD_BNDL_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_bundle_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_BNDL_SELECTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_BNDL_SELECTION_PRICE_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_DCF37523AA05D770A70AA4ED7C2616E4` FOREIGN KEY (`selection_id`) REFERENCES `catalog_product_bundle_selection` (`selection_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Selection Price'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Bundle Stock Index'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_PRODUCT_ENABLED_INDEX_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENABLED_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Visibility Index Table'; /*!40101 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 */; INSERT INTO `catalog_product_enabled_index` VALUES (1,1,4),(2,1,4),(3,1,4),(4,1,4),(5,1,4),(6,1,4); /*!40000 ALTER TABLE `catalog_product_enabled_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity` -- DROP TABLE IF EXISTS `catalog_product_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_ENTT_ATTR_SET_ID_EAV_ATTR_SET_ATTR_SET_ID` FOREIGN KEY (`attribute_set_id`) REFERENCES `eav_attribute_set` (`attribute_set_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Table'; /*!40101 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,9,'simple','16010849',1,0,'2012-02-16 00:38:47','2012-02-26 19:37:04'),(2,4,9,'simple','99999999',0,0,'2012-02-16 10:27:34','2012-02-26 19:37:04'),(3,4,4,'simple','123',0,0,'2012-02-16 15:18:22','2012-02-16 15:22:09'),(4,4,9,'simple','16190120',0,0,'2012-02-20 08:35:46','2012-02-26 19:37:04'),(5,4,9,'simple','16199229',0,0,'2012-02-20 08:35:46','2012-02-26 19:37:04'),(6,4,9,'simple','16128335',0,0,'2012-02-20 08:35:47','2012-02-29 09:14:40'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_DTIME_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=85 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Datetime Attribute Backend Table'; /*!40101 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,86,0,1,NULL),(2,4,87,0,1,'2022-02-26 00:00:00'),(3,4,71,0,1,NULL),(4,4,72,0,1,NULL),(5,4,97,0,1,NULL),(6,4,98,0,1,NULL),(7,4,86,0,4,NULL),(8,4,87,0,4,'2022-02-26 00:00:00'),(9,4,71,0,4,NULL),(10,4,72,0,4,NULL),(11,4,97,0,4,NULL),(12,4,98,0,4,NULL),(19,4,86,0,5,NULL),(20,4,87,0,5,'2022-02-26 00:00:00'),(21,4,71,0,5,NULL),(22,4,72,0,5,NULL),(23,4,97,0,5,NULL),(24,4,98,0,5,NULL),(25,4,86,0,6,'2012-02-26 00:00:00'),(26,4,87,0,6,'2022-02-26 00:00:00'),(27,4,71,0,6,NULL),(28,4,72,0,6,NULL),(29,4,97,0,6,NULL),(30,4,98,0,6,NULL),(84,4,87,0,2,'2022-02-26 00:00:00'); /*!40000 ALTER TABLE `catalog_product_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_decimal` -- DROP TABLE IF EXISTS `catalog_product_entity_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_DEC_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Decimal Attribute Backend Table'; /*!40101 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,69,0,1,'100.0000'),(2,4,74,0,1,'1.0000'),(3,4,69,0,2,'100.0000'),(4,4,69,0,3,'22.0000'),(5,4,70,0,1,'500.0000'),(6,4,113,0,1,'1550.0000'),(8,4,69,0,4,'500.0000'),(9,4,69,0,5,'1550.0000'),(10,4,69,0,6,'700.0000'),(12,4,113,0,4,NULL),(18,4,113,0,5,NULL),(21,4,113,0,6,NULL),(26,4,70,0,4,NULL),(41,4,70,0,5,NULL),(44,4,70,0,6,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_GLR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Gallery Attribute Backend Table'; /*!40101 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_int` -- DROP TABLE IF EXISTS `catalog_product_entity_int`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_INT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_INT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=84 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Integer Attribute Backend Table'; /*!40101 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,85,0,1,3),(2,4,114,0,1,1),(3,4,89,0,1,1),(4,4,115,0,1,2),(5,4,95,0,1,4),(6,4,145,0,1,33),(7,4,144,0,1,27),(8,4,153,0,1,42),(9,4,149,0,1,35),(10,4,150,0,1,36),(11,4,152,0,1,41),(12,4,142,0,1,17),(13,4,151,0,1,38),(14,4,143,0,1,22),(15,4,145,0,2,33),(16,4,85,0,2,10),(17,4,114,0,2,1),(18,4,144,0,2,27),(19,4,153,0,2,42),(20,4,149,0,2,35),(21,4,150,0,2,36),(22,4,152,0,2,41),(23,4,142,0,2,15),(24,4,151,0,2,38),(25,4,89,0,2,1),(26,4,115,0,2,2),(27,4,95,0,2,4),(28,4,143,0,2,22),(29,4,114,0,3,1),(30,4,89,0,3,1),(31,4,115,0,3,2),(32,4,95,0,3,4),(33,4,93,0,1,0),(34,4,89,0,4,1),(35,4,95,0,4,4),(36,4,115,0,4,2),(37,4,89,0,5,1),(38,4,95,0,5,4),(39,4,115,0,5,2),(40,4,89,0,6,1),(41,4,95,0,6,4),(42,4,115,0,6,2),(43,4,143,0,4,20),(44,4,145,0,4,44),(45,4,142,0,4,45),(46,4,144,0,4,46),(47,4,85,0,4,47),(48,4,143,0,5,25),(49,4,145,0,5,44),(50,4,142,0,5,45),(51,4,144,0,5,46),(52,4,85,0,5,47),(53,4,143,0,6,48),(54,4,145,0,6,44),(55,4,142,0,6,49),(56,4,144,0,6,29),(57,4,85,0,6,47),(58,4,114,0,4,0),(59,4,93,0,4,0),(60,4,149,0,4,NULL),(61,4,150,0,4,NULL),(62,4,151,0,4,NULL),(63,4,152,0,4,NULL),(64,4,153,0,4,NULL),(70,4,114,0,5,0),(71,4,93,0,5,0),(72,4,149,0,5,NULL),(73,4,150,0,5,NULL),(74,4,151,0,5,NULL),(75,4,152,0,5,NULL),(76,4,153,0,5,NULL),(77,4,114,0,6,0),(78,4,93,0,6,0),(79,4,149,0,6,NULL),(80,4,150,0,6,NULL),(81,4,151,0,6,NULL),(82,4,152,0,6,NULL),(83,4,153,0,6,NULL); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_ENTT_MDA_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_MDA_GLR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Backend Table'; /*!40101 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,82,1,'/a/v/av100_front_b__1_1.jpg'),(2,82,2,'/a/v/av100_front_b__1_1.jpg'),(3,82,4,'/f/u/fujifilmx10_01_1.jpg'),(4,82,4,'/f/u/fujifilmx10_05_1.jpg'),(5,82,4,'/f/u/fujifilmx10_02_1.jpg'),(6,82,4,'/f/u/fujifilmx10_04.jpg'),(7,82,4,'/f/u/fujifilmx10_03_1.jpg'),(8,82,4,'/f/u/fujifilmx10_06.jpg'),(9,82,5,'/f/u/fujifilmxs1_05.jpg'),(10,82,5,'/f/u/fujifilmxs1_02.jpg'),(11,82,5,'/f/u/fujifilmxs1_04.jpg'),(12,82,5,'/f/u/fujifilmxs1_01.jpg'),(13,82,5,'/f/u/fujifilmxs1_03.jpg'),(14,82,5,'/f/u/fujifilmxs1_06.jpg'),(15,82,6,'/f/u/fujifilmx100_03.jpg'),(16,82,6,'/f/u/fujifilmx100_02.jpg'),(17,82,6,'/f/u/fujifilmx100_01.jpg'); /*!40000 ALTER TABLE `catalog_product_entity_media_gallery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_entity_media_gallery_value` -- DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_ENTT_MDA_GLR_VAL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_MDA_GLR_VAL_VAL_ID_CAT_PRD_ENTT_MDA_GLR_VAL_ID` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Media Gallery Attribute Value Table'; /*!40101 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,0,0),(2,0,NULL,0,0),(3,0,NULL,1,0),(4,0,NULL,2,0),(5,0,NULL,3,0),(6,0,NULL,4,0),(7,0,NULL,5,0),(8,0,NULL,6,0),(9,0,NULL,1,0),(10,0,NULL,2,0),(11,0,NULL,3,0),(12,0,NULL,4,0),(13,0,NULL,5,0),(14,0,NULL,6,0),(15,0,NULL,1,0),(16,0,NULL,2,0),(17,0,NULL,3,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_TEXT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Text Attribute Backend Table'; /*!40101 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,66,0,1,'1-- La fotocamera Finepix AV100 è dotata di ottica Fujinon 3x e sensore CCD da 12 Megapixel.
I sensori ad alta risoluzione e l’elevata qualità dell’ottica Fujinon sono combinati con le impostazioni di high sensitivity (fino a ISO 3200) per garantire in ogni condizione immagini definite e pulite, ideali per la stampa e per l’ingrandimento digitale, senza
compromessi rispetto alla qualità. La Digital Image Stabilization è stata adottata per ottenere immagini più nitide con un ridotto effetto “mosso” dando agli utenti la possibilità di cogliere ogni occasione di scatto.

L’alta definizione
L’intera gamma di prodotti della serie FinePix A consentirà di riprendere sensazionali video HD e fotografie FULL HD in formato 16:9. Potrete riprodurle su un televisore HD ready* (o sul PC di casa) e rimanere a bocca aperta, guardando le vostre fotografie prendere vita in tutto il loro splendore.

*Per la connessione a un TV HD-Ready, sarà necessario un HD Player (HDP-L1), accessorio opzionale.

Messa a fuoco del viso
Le fotocamere della serie A sono dotate della tecnologia Face Detection di Fujifilm, che assicura impostazioni ottimizzate rispetto ai soggetti presenti nell’inquadratura, ideale per riprendere primi piani o piccoli gruppi di persone. Gli scatti “rubati” in condizioni di luce scarsa sono resi possibili dalla modalità Natural Light, che aumentando automaticamente la sensibilità ISO ed escludendo il flash garantisce un risultato discreto e non intrusivo.
Per quelle occasioni dove la sola fotografia non rende giustizia all’importanza dell’evento, l’HD Movie Mode with sound (modalità video ad alta definizione con audio) consente la registrazione video di preziosi ricordi che potranno essere visti e rivisti nella straordinaria risoluzione HD.

La ricerca delle immagini
Fujifilm ha creato la nuova funzione Picture Search (Ricerca immagine) che consente di trovare le
fotografie in modo facile e veloce. È possibile cercare le immagini secondo la modalità “Scene Modes”
con cui è stata scattata la fotografia. Ad esempio, selezionando “Ritratti”, sarà possibile visualizzare
tutte le fotografie scattate con quella modalità, o “Macro” per visualizzare i relativi scatti.
Questa funzionalità consentirà di risparmiare tempo nella ricerca di una particolare fotografia tra
tutte immagini presenti.

Specifiche di base:
• Semplice da utilizzare – ideale come prima fotocamera
• Scene Recognition Auto (SR AUTO) – Riconoscimento automatico della scena ripresa
• Tecnologia “Face Detection” con rimozione automatica degli occhi rossi
• Risoluzione HD 720p per la ripresa di immagini (in formato 16 : 9) e per le riprese video
• Funzione “Image search” - per “volti” (Face), per modalità (Scene), per data (Date) e per tipo di file (data type).
• Modalità “Panorama Shooting” (Scatto Panoramico)
• Sensibilità ISO 1600 a piena risoluzione e fino a ISO 3200 con risoluzione 3 MP
• Alimentazione con batterie AA\r\n'),(2,4,67,0,1,'2 --I sensori ad alta risoluzione e l’elevata qualità'),(3,4,66,0,2,'La fotocamera Finepix AV100 è dotata di ottica Fujinon 3x e sensore CCD da 12 Megapixel.
I sensori ad alta risoluzione e l’elevata qualità dell’ottica Fujinon sono combinati con le impostazioni di high sensitivity (fino a ISO 3200) per garantire in ogni condizione immagini definite e pulite, ideali per la stampa e per l’ingrandimento digitale, senza
compromessi rispetto alla qualità. La Digital Image Stabilization è stata adottata per ottenere immagini più nitide con un ridotto effetto “mosso” dando agli utenti la possibilità di cogliere ogni occasione di scatto.

L’alta definizione
L’intera gamma di prodotti della serie FinePix A consentirà di riprendere sensazionali video HD e fotografie FULL HD in formato 16:9. Potrete riprodurle su un televisore HD ready* (o sul PC di casa) e rimanere a bocca aperta, guardando le vostre fotografie prendere vita in tutto il loro splendore.

*Per la connessione a un TV HD-Ready, sarà necessario un HD Player (HDP-L1), accessorio opzionale.

Messa a fuoco del viso
Le fotocamere della serie A sono dotate della tecnologia Face Detection di Fujifilm, che assicura impostazioni ottimizzate rispetto ai soggetti presenti nell’inquadratura, ideale per riprendere primi piani o piccoli gruppi di persone. Gli scatti “rubati” in condizioni di luce scarsa sono resi possibili dalla modalità Natural Light, che aumentando automaticamente la sensibilità ISO ed escludendo il flash garantisce un risultato discreto e non intrusivo.
Per quelle occasioni dove la sola fotografia non rende giustizia all’importanza dell’evento, l’HD Movie Mode with sound (modalità video ad alta definizione con audio) consente la registrazione video di preziosi ricordi che potranno essere visti e rivisti nella straordinaria risoluzione HD.

La ricerca delle immagini
Fujifilm ha creato la nuova funzione Picture Search (Ricerca immagine) che consente di trovare le
fotografie in modo facile e veloce. È possibile cercare le immagini secondo la modalità “Scene Modes”
con cui è stata scattata la fotografia. Ad esempio, selezionando “Ritratti”, sarà possibile visualizzare
tutte le fotografie scattate con quella modalità, o “Macro” per visualizzare i relativi scatti.
Questa funzionalità consentirà di risparmiare tempo nella ricerca di una particolare fotografia tra
tutte immagini presenti.

Specifiche di base:
• Semplice da utilizzare – ideale come prima fotocamera
• Scene Recognition Auto (SR AUTO) – Riconoscimento automatico della scena ripresa
• Tecnologia “Face Detection” con rimozione automatica degli occhi rossi
• Risoluzione HD 720p per la ripresa di immagini (in formato 16 : 9) e per le riprese video
• Funzione “Image search” - per “volti” (Face), per modalità (Scene), per data (Date) e per tipo di file (data type).
• Modalità “Panorama Shooting” (Scatto Panoramico)
• Sensibilità ISO 1600 a piena risoluzione e fino a ISO 3200 con risoluzione 3 MP
• Alimentazione con batterie AA\r\n'),(4,4,67,0,2,'I sensori ad alta risoluzione e l’elevata qualità'),(5,4,66,0,3,'desc'),(6,4,67,0,3,'d'),(7,4,77,0,1,'Fujifilm X10 � una fotocamera estremamente compatta, dotata di caratteristiche avanzate che ricalcano le orme della pluripremiata Fujifilm FinePix X100. Il nuovo modello amplia la serie X di Fujifilm riprendendone i tratti pi� distintivi legati all�estetica, alla qualit� dei componenti e alle funzionalit� tecniche.
Le sue prestazioni comprendono un sensore EXR CMOS da 2/3\" e 12 megapixel, un obiettivo FUJINON grandangolare ad alta definizione F2 ed un teleobiettivo F2,8 con zoom manuale 4x (28�112 mm equivalente). Fujifilm X10 dispone di un luminoso mirino ottico con zoom incorporato ad ampio angolo di visione. Questo nuovo modello si contraddistingue per l�attenzione ai dettagli e per i materiali di elevata qualit� della struttura e del rivestimento, che la rendono un�icona di stile e design nella sua categoria.

Zoom ottico FUJINON 4x manuale luminoso: grandangolare F2 e teleobbiettivo F2,8.
Capace di grandi prestazioni, questo versatile obiettivo permette di catturare ogni momento con una precisione straordinaria. Il nuovo zoom ottico manuale 4x � il frutto dell�attivit� di Ricerca & Sviluppo del reparto FUJINON, che vanta una lunga esperienza nella fornitura di obiettivi broadcasting. Con la superba luminosit� F2.0-2.8 e uno zoom che va dal grandangolo 28mm al tele 112mm, quest�obiettivo offre prestazioni ad alta risoluzione ottica su tutta l\'escursione focale.

L�obiettivo � costituito da 11 lenti in 9 gruppi, compresi 3 elementi ottici costituiti da lenti asferiche e 2 elementi ottici ED a bassissima dispersione. Inoltre, il trattamento superficiale multistrato Super EBC (Electron Beam Coating) di FUJINON riduce gli effetti ghosting e flair, garantendo immagini nitide anche in condizioni di ripresa difficili.

Lo stabilizzatore ottico OIS di nuova concezione, assicura che tutte le aberrazioni dell�obiettivo siano ridotte al minimo e previene la riduzione della luce negli angoli e lungo i bordi della foto, massimizzando la risoluzione dell�interna immagine.

Il corpo dell�obiettivo interamente in metallo garantisce un azionamento pi� regolare dello zoom, contribuendo ad una pi� facile e veloce composizione della fotografia. Inoltre, l�interruttore di alimentazione della fotocamera � stato inserito nel corpo dell�obiettivo per rendere pi� veloce l�accensione della macchina e agevolare la gestione dello scatto.

Lo zoom ottico 4x � dotato anche della nuova tecnologia Fujifilm \"Intelligent Digital 2x Telephoto\" che raddoppia la lunghezza focale portando a oltre 8x la capacit� dello zoom. Inoltre l�obiettivo � in grado di scattare fotografie in super-macro con riprese ad un solo centimetro dal soggetto. Questa funzione, combinata alla presenza di un diaframma a 7 lamelle fornisce un fantastico effetto \"bokeh\" sullo sfondo, perfetto anche per le foto di ritratto.

Mirino ottico luminoso, con ampio angolo di visione e zoom 4x.
Gli ingegneri di Fujifilm hanno impiegato un dispositivo con 3 lenti asferiche insieme a 2 prismi di vetro ad alte prestazioni per ottenere un mirino di luminosit� superiore e un superba visibilit� con un angolo di visione molto pi� ampio. Il tutto riuscendo a mantenere una dimensione molto compatta. Il mirino incorpora inoltre un meccanismo zoom 4x, in questo modo anche durante l\'utilizzo dello zoom, l\'immagine che si vede attraverso il mirino appare luminosa e nitida come ad occhio nudo.
Il mirino di Fujifilm X10 regala un gratificante feeling \"old style\" nelle riprese fotografiche e permette di ritrovare la libert� e il piacere di concentrarsi sul soggetto e di esplorare la scena da ogni angolazione.

Sensore EXR CMOS da 2/3 di pollice e 12 megapixel e processore EXR
Fujifilm X10 � dotata di un sensore EXR CMOS di nuova concezione da 2/3 di pollice e 12 megapixel che vanta un�area sensibile e un�area pixel maggiore di quella in dotazione ai modelli di punta della serie FinePix.
La dimensione del sensore unita alla tecnologia CMOS e alla tecnologia proprietaria EXR, offrono immagini nitide e brillanti in ogni condizione di ripresa.
La tecnologia EXR di Fujifilm permette di selezionare la migliore modalit� di scatto tra le opzioni SN / DR / HR):
Modalit� SN, elevata sensibilit� e basso rumore - produce immagini chiare e nitide mantenendo basso il livello del rumore, la scelta ideale per catturare scene notturne o riprese d�interni in situazioni di scarsa illuminazione.
Modalit� DR Wide Dynamic Range (ampio range dinamico) � offre una maggiore gamma dinamica (fino a 1600%) per ottenere maggiore dettaglio nelle ombre e nelle alte luci.
Modalit� HR High Resolution (alta risoluzione) � sfrutta appieno la risoluzione da 12 megapixel per riprodurre i minimi dettagli nei panorami e nei ritratti, ideale nelle condizioni di luce ottimale.

La presenza del processore EXR consente lo scatto continuo fino 7 fotogrammi al secondo alla risoluzione di 12 megapixel (L size) e 10 fotogrammi al secondo riducendo la risoluzione (M size).
Grazie alla maggiore velocit� di scatto che consente un ritardo di soli 0,001 secondi, X10 permette di cogliere tutti i momenti pi� salienti.
Il sistema AF con una matrice di contrasto da 49 punti garantisce, grazie alle caratteristiche di velocit� del sensore CMOS e del processore EXR, una messa a fuoco velocissima e di estrema precisione.

Estrema qualit� e design elegante \"Made in Japan\"
La struttura in lega di magnesio pressofusa e la fresatura di precisione delle ghiere e dell\'anello donano solidit� e qualit�, anche al tatto.
L�intero corpo di X10 � perfettamente progettato ed evidenzia la notevole qualit� della lavorazione artigianale, attenta ai pi� piccoli dettagli. Il raffinato design \"made in Japan\" fa di X10 una fotocamere compatta estremamente attraente e dallo stile senza tempo.

Modalit� versatili e creative
Fujifilm X10 offre EXR Auto che effettua il riconoscimento intelligente della scena (imposta i parametri della fotocamera per la ripresa del tramonto, dei cieli blu, dei prati verdi, delle spiagge, della neve, etc.), individua e identifica i soggetti difficili da fotografare controluce, ed ora � anche capace di rilevarne i movimenti. Il sensore intelligente EXR CMOS seleziona automaticamente la modalit� di scatto migliore in base alla scena, per catturare perfettamente ogni tipo di immagine anche nelle pi� difficili condizioni di ripresa.
Per gli utenti pi� creativi X10 offre anche possibilit� avanzate con le diverse modalit� di scatto manuali, che consentono di agire sull�impostazione dei tempi, dei diaframmi e sulla messa fuoco.
Infine, X10 permette di registrare video dalla qualit� eccezionale grazie alla capacit� di effettuare riprese video full HD da 1080p.

Funzioni esclusive per il controllo della qualit� dell�immagine
La gamma delle impostazioni ISO di X10 parte dal valore di 100 ISO fino ad arrivare all�elevatissima sensibilit� di 12.800 ISO per condizioni di luce al limite (utilizzando una risoluzione pi� bassa). Se selezionando manualmente l�impostazione ISO non � possibile ottenere un�esposizione corretta, la funzione ISO Auto Setting verr� in aiuto regolando automaticamente la sensibilit� della fotocamera, con valori compresi tra 100 e 3.200 ISO.
Per gli utenti che desiderano sperimentare, X10 offre l�esclusiva modalit� di simulazione delle pellicole Fujifilm. Sono disponibili otto impostazioni, che comprendono Velvia / PROVIA / ASTIA capaci di riprodurre le tonalit� di queste popolari pellicole invertibili (diapositive). X10 aumenta ulteriormente le possibilit� creative con la modalit� Monochrome che pu� essere modulata con l�impostazione dei filtri R / Ye/ G.
Fujifilm X10 offre anche la possibilit� di regolare alcuni parametri dell�immagine con opzioni che includono \"Color\" per regolare l�intensit� del colore, \"Highlight Tone\" / \"Shadow Tone\" per regolare il contrasto nelle alte luci e nelle ombre e \"Sharpness\" per indurire o ammorbidire la nitidezza.
Infine, la funzione per la riduzione del rumore (Noise Reduction Adjustment) permette di regolare il livello di intervento sul rumore presente nello scatto, con cinque differenti livelli.

Ampia gamma di accessori
Perfettamente in stile con il look and feel del corpo della X10, la custodia retr� in pelle tipo \"quick shot\" � progettata per adattarsi come un guanto alla fotocamera. Prodotta con materiale in pelle � stata realizzata prestando attenzione ai dettagli, garantendo la massima praticit� e facilit� di utilizzo.
Il paraluce, prodotto in metallo fresato, sar� disponibile con un anello adattatore compatibile con i filtri commerciali da 52 mm.
Infine, X10 potr� essere utilizzata con i flash EF-20 (Numero Guida: 20) e EF-42 (Numero Guida: 42).


Caratteristiche principali
� Sensore EXR CMOS da 2/3 di pollice e 12 megapixel e processore EXR
� Zoom ottico FUJINON 4x manuale: 28mm - 112mm (equivalente) e luminoso F2 - F2,8
� Stabilizzatore ottico OIS di nuova concezione
� Mirino ottico luminoso, con ampio angolo di visione e zoom 4x.
� Accensione in circa 0,8 secondi utilizzando l�interruttore on/off posto sull�obbiettivo (in modalit� Quick Start)
� Motion Panorama 360 per facili riprese panoramiche a 360 gradi
� EXR Auto e modalit� di scatto completamente manuali
� Video full HD da 1080p
� Sensibilit� ISO fino a 12800
� Flash pop-up manuale con una distanza operativa di 7 metri
� Monitor LCD a elevato contrasto e ampio angolo di visione da 2,8\" e 460.000 punti
� Quattro funzioni di bracketing automatico per l�esposizione, la sensibilit� ISO, il range dinamico e la simulazione della pellicola
� Indicatore elettronico del livello dell�orizzonte
� Riprese RAW elaborate direttamente nella fotocamera (software di conversione SilkyPix RAW fornito nella confezione)
� Corpo in lega di Magnesio Informazioni'),(8,4,99,0,1,'

Numero di Pixel effettivi

\n12,0 milioni di pixel \n\n

Sensore

\nEXR CMOS da 2/3 di pollice con filtro a colori primari \n\n

Supporto memoria

\nSD/ SDHC/ SDXC(UHS-I) \n\n

Formato file

\nImmagine: JPEG (Exif Ver 2.3), RAW (RAF format), RAW+JPEG \nVideo: H.264 (MOV) con audio stereo H.264(MOV) \n\n

Numero di pixel registrati

\nL: <4:3> 4000 x 3000 <3:2> 4000 x 2664 <16:9> 4000 x 2248 <1:1> 2992 x 2992 \nM: <4:3> 2816 x 2112 <3:2> 2816 x 1864 <16:9> 2816 x 1584 <1:1> 2112 x 2112 \nS: <4:3> 2048 x 1536 <3:2> 2048 x 1360 <16:9> 1920 x 1080 <1:1> 1536 x 1536 \n\nMotion Panorama \n360�Verticale 11520 x 1624 Orizzontale 11520 x 1080 \n300�Verticale 9600 x 1624 Orizzontale 9600 x 1080 \n240�Verticale 7680 x 1624 Orizzontale 7680 x 1080 \n180�Verticale 5760 x 1624 Orizzontale 5760 x 1080 \n120�Verticale 3840 x 1624 Orizzontale 3840 x 1080\n\n

Ottica

\nZoom ottico Fujinon 4x (con Intelligent digital zoom 2x) \n\n

Lunghezza focale

\nf=7.1 - 28.4mm, 28-112mm (equivalente a 35mm) \n\n

Apertura diaframma

\nF2.0-F11(grandangolo) F2.8-F11(tele) 1/3EV step (diaframma a 7 lamelle) \n\n

Distanza di messa a fuoco

\nNormale: Grandangolo: da circa 50 cm all�infinito � Tele: da circa 80cm all�infinito \nMacro: Grandangolo: da circa 10 cm a 3m - Tele: da circa 50cm a 3m \nSuper Macro : da circa 1cm a 1m \n\n

Sensibilit�

\nAuto, \nISO 100/200/250/320/400/500/640/800/1000/1250/1600/2000/2500/3200/4000/5000/6400*/12800* \n*ISO 6400:modalit� M o inferiori, ISO 12800:modalit� S \n\n

Modalit� di esposizione

\nAE programmata � AE Priorit� di tempi - AE Priorit� di diaframma, Manuale \n\n

Modalit� di ripresa

\nSP: Natural Light, Natural Light con flash, Ritratto, Miglioramento Ritratto, Paesaggio, Sport, Notte, Notte (cavalletto), Fuochi d�artificio, Tramonto, Neve, Spiaggia, Party, Fiori Macro, Testo, Subacqueo. \nModalit� DIAL: EXR, AUTO, P, S, A, M, C1, C2, Video, SP, Adv. \n\n

Stabilizzatore di immagine

\nMeccanico sull�ottica \n\n

Controllo di esposizione

\nMisurazione TTL 256 Zone, Multi, Spot, Average \n\n

Velocit� otturatore

\n(Auto) da 1/4 sec. a 1/4000* sec. , (tutte le altre modalit�) da 30 sec. a 1/4000* sec. \n\n

Scatto continuo

\nTOP: \nSuper High:circa. 10 fps (M,S) High:circa 7 fps (L,M,S) Middle.circa 5fps (L,M,S) Low:circa 3 fps (L,M,S) * SD memory card classe 4 (4 MB/sec.) o superiore * il numero massimo di scatti continui per ogni raffica � limitato \nBEST FRAME: \nSuper High: circa 10fps 8/16 frames (Size M,S) High: circa 7fps 8frames (Size L,M,S)/16 frames (Size M,S) Middle:circa 5fps 8frames (Size L,M,S)/16 frames (Size M,S) Low:circa 3fps 8frames (Size L,M,S)/16 frames (Size ,M,S) \n\n

Auto Bracketing

\nBracketing AE: �1/3EV,�2/3EV,�1EV \nBraketing Simulazione Pellicola: PROVIA, Velvia, ASTIA Braketing Gamma Dinamica: 100%/200%/400% \nBraketing ISO: �1/3EV,�2/3EV,�1EV \n\n

Compensazione dell�esposizione

\n-2.0EV - +2.0EV 1/3EV step \n\n

Messa a fuoco

\nAF Singolo/AF Continuo (EXR Auto, Video) \nManuale AF (modalit� One-Push AF inclusa) \nAF contrasto TTL, Illuminatore AF \nMulti, Area, Tracking \n\n

Bilanciamento del bianco

\nAutomatico con riconoscimento della scena \nSelezionabile (sereno, ombra, luce fluorescente (diurna), luce fluorescente (calda), luce fluorescente (fredda), luce a incandescenza, subacqueo, personalizzato, selezione temperatura colore \n\n

Autoscatto

\n10 sec./ 2 sec. \n\n

Flash

\nAutomatico (Super Intelligent Flash) Copertura flash (ISO AUTO (800)) Grandangolo: circa 50cm - 7.0m Tele: circa 80cm - 5.0m \nModalit� di funzionamento: \nRiduzione occhi rossi Disattivata (OFF): Auto, forzato, disattivato, sincronizzazione tempi lunghi Riduzione occhi rossi Attivata (ON): Riduzione occhi rossi automatica, Riduzione occhi rossi & forzato, flash disattivato, Riduzione occhi rossi & sincronizzazione tempi lunghi \n\n

Contatto per Flash Esterno

\ns� \n\n

Mirino Ottico

\nMirino zoom ottico\ncirca 85% di copertura \nAggiustamento diottrico: -3.5 - +1.5m-1(dpt) \n\n

LCD Monitor

\nTFT da 2,8�� (460.000 pixel) \n\n

Registrazione Video

\n1920 x 1080 pixels / 1280 x 720 pixels/ 640 x 480 pixels (30 frames / sec.) con audio stereo \npossibiit� uso Zoom ottico (manuale)\n\n

Funzioni Fotografiche

\nModalit� EXR (EXR Auto / Resolution priority / High ISO & Low noise priority / Dynamic range priority), Face recognition, Face Detection, Rimozione Occhi Rossi Auto, Simulazione pellicola, Reticolo inquadratura, Memoria numero fotogramma, Visualizzazione istogrammi, Migliore inquadratura, Modalit� Avanzate (Motion panorama360, Pro focus, Pro low light), Riprese Video Alta Velocit� (70/ 120/ 200 frames/sec.), Livello Elettronico, One-touch RAW Anti Mosso Avanzato \n\n

Funzioni di Riproduzione

\nFace Detection, Rimozione occhi rossi Auto, Visualizzazione fotogrammi multipli con Micro Miniature, Protezione, Ritaglio immagine, Ridimensiona immagine, Ruota immagine, Slide show (presentazione), Registrazione memo vocali, Visualizzazione istogrammi, Avviso sovraesposizione, guida album (Photobook), Ricerca immagine, Preferiti, Mark Upload, Panorama, Cancella immagini selezionate. \n\n

Altre funzioni

\nPictBridge, Exif Print, 35 lingue, Fuso orario, Modalit� Silenziosa \n\n

Uscita video

\nNTSC / PAL selezionabile con audio mono \n\n

Interfaccia

\nUSB 2.0 High-Speed \n\n

Uscita HDMI

\nConnettore HDMI Mini \n\n

Alimentazione

\nBatteria ricaricabile al Litio NP-50 (inclusa) \nCP-50 with AC power adapter AC-5VX (opzionale) \n\n

Autonomia batterie

\n300 scatti circa \n\n

Dimensioni

\n117.0 (W) x 69.6 (H) x 56.8 (D) mm \n\n

Peso

\ncirca 350g (inclusa batteria e scheda di memoria) \ncirca 330g (senza batteria e scheda di memoria) \n\n

Accessori inclusi

\nBatteria ricaricabile al Litio NP-50 � Carica batteria BC-45W - Cinghia di trasporto � Copriobiettivo � Cavo USB - CD-ROM Software - Manuale in lingua italiana.\n\n

Accessori Opzionali

\nCavo A/V AV-C1 - Paraluce LH-X10 - Borsa in pelle LC-X10 � Flash EF-42/EF-20 � Connettore di alimentazione CP-50 - Adattatore a corrente di a corrente di rete AC-5VX.\n'),(11,4,67,0,4,'Fujifilm X10 è una fotocamera estremamente compatta, dotata di caratteristiche avanzate che ricalcano le orme della pluripremiata Fujifilm FinePix X100. Il nuovo modello amplia la serie X di Fujifilm riprendendone i tratti più distintivi legati all’estetica, alla qualità dei componenti e alle funzionalità tecniche.
Le sue prestazioni comprendono un sensore EXR CMOS da 2/3\" e 12 megapixel, un obiettivo FUJINON grandangolare ad alta definizione F2 ed un teleobiettivo F2,8 con zoom manuale 4x (28–112 mm equivalente). Fujifilm X10 dispone di un luminoso mirino ottico con zoom incorporato ad ampio angolo di visione. Questo nuovo modello si contraddistingue per l’attenzione ai dettagli e per i materiali di elevata qualità della struttura e del rivestimento, che la rendono un’icona di stile e design nella sua categoria.

Zoom ottico FUJINON 4x manuale luminoso: grandangolare F2 e teleobbiettivo F2,8.
Capace di grandi prestazioni, questo versatile obiettivo permette di catturare ogni momento con una precisione straordinaria. Il nuovo zoom ottico manuale 4x è il frutto dell’attività di Ricerca & Sviluppo del reparto FUJINON, che vanta una lunga esperienza nella fornitura di obiettivi broadcasting. Con la superba luminosità F2.0-2.8 e uno zoom che va dal grandangolo 28mm al tele 112mm, quest’obiettivo offre prestazioni ad alta risoluzione ottica su tutta l\'escursione focale.

L’obiettivo è costituito da 11 lenti in 9 gruppi, compresi 3 elementi ottici costituiti da lenti asferiche e 2 elementi ottici ED a bassissima dispersione. Inoltre, il trattamento superficiale multistrato Super EBC (Electron Beam Coating) di FUJINON riduce gli effetti ghosting e flair, garantendo immagini nitide anche in condizioni di ripresa difficili.

Lo stabilizzatore ottico OIS di nuova concezione, assicura che tutte le aberrazioni dell’obiettivo siano ridotte al minimo e previene la riduzione della luce negli angoli e lungo i bordi della foto, massimizzando la risoluzione dell’interna immagine.

Il corpo dell’obiettivo interamente in metallo garantisce un azionamento più regolare dello zoom, contribuendo ad una più facile e veloce composizione della fotografia. Inoltre, l’interruttore di alimentazione della fotocamera è stato inserito nel corpo dell’obiettivo per rendere più veloce l’accensione della macchina e agevolare la gestione dello scatto.

Lo zoom ottico 4x è dotato anche della nuova tecnologia Fujifilm \"Intelligent Digital 2x Telephoto\" che raddoppia la lunghezza focale portando a oltre 8x la capacità dello zoom. Inoltre l’obiettivo è in grado di scattare fotografie in super-macro con riprese ad un solo centimetro dal soggetto. Questa funzione, combinata alla presenza di un diaframma a 7 lamelle fornisce un fantastico effetto \"bokeh\" sullo sfondo, perfetto anche per le foto di ritratto.

Mirino ottico luminoso, con ampio angolo di visione e zoom 4x.
Gli ingegneri di Fujifilm hanno impiegato un dispositivo con 3 lenti asferiche insieme a 2 prismi di vetro ad alte prestazioni per ottenere un mirino di luminosità superiore e un superba visibilità con un angolo di visione molto più ampio. Il tutto riuscendo a mantenere una dimensione molto compatta. Il mirino incorpora inoltre un meccanismo zoom 4x, in questo modo anche durante l\'utilizzo dello zoom, l\'immagine che si vede attraverso il mirino appare luminosa e nitida come ad occhio nudo.
Il mirino di Fujifilm X10 regala un gratificante feeling \"old style\" nelle riprese fotografiche e permette di ritrovare la libertà e il piacere di concentrarsi sul soggetto e di esplorare la scena da ogni angolazione.

Sensore EXR CMOS da 2/3 di pollice e 12 megapixel e processore EXR
Fujifilm X10 è dotata di un sensore EXR CMOS di nuova concezione da 2/3 di pollice e 12 megapixel che vanta un’area sensibile e un’area pixel maggiore di quella in dotazione ai modelli di punta della serie FinePix.
La dimensione del sensore unita alla tecnologia CMOS e alla tecnologia proprietaria EXR, offrono immagini nitide e brillanti in ogni condizione di ripresa.
La tecnologia EXR di Fujifilm permette di selezionare la migliore modalità di scatto tra le opzioni SN / DR / HR):
Modalità SN, elevata sensibilità e basso rumore - produce immagini chiare e nitide mantenendo basso il livello del rumore, la scelta ideale per catturare scene notturne o riprese d’interni in situazioni di scarsa illuminazione.
Modalità DR Wide Dynamic Range (ampio range dinamico) – offre una maggiore gamma dinamica (fino a 1600%) per ottenere maggiore dettaglio nelle ombre e nelle alte luci.
Modalità HR High Resolution (alta risoluzione) – sfrutta appieno la risoluzione da 12 megapixel per riprodurre i minimi dettagli nei panorami e nei ritratti, ideale nelle condizioni di luce ottimale.

La presenza del processore EXR consente lo scatto continuo fino 7 fotogrammi al secondo alla risoluzione di 12 megapixel (L size) e 10 fotogrammi al secondo riducendo la risoluzione (M size).
Grazie alla maggiore velocità di scatto che consente un ritardo di soli 0,001 secondi, X10 permette di cogliere tutti i momenti più salienti.
Il sistema AF con una matrice di contrasto da 49 punti garantisce, grazie alle caratteristiche di velocità del sensore CMOS e del processore EXR, una messa a fuoco velocissima e di estrema precisione.

Estrema qualità e design elegante \"Made in Japan\"
La struttura in lega di magnesio pressofusa e la fresatura di precisione delle ghiere e dell\'anello donano solidità e qualità, anche al tatto.
L’intero corpo di X10 è perfettamente progettato ed evidenzia la notevole qualità della lavorazione artigianale, attenta ai più piccoli dettagli. Il raffinato design \"made in Japan\" fa di X10 una fotocamere compatta estremamente attraente e dallo stile senza tempo.

Modalità versatili e creative
Fujifilm X10 offre EXR Auto che effettua il riconoscimento intelligente della scena (imposta i parametri della fotocamera per la ripresa del tramonto, dei cieli blu, dei prati verdi, delle spiagge, della neve, etc.), individua e identifica i soggetti difficili da fotografare controluce, ed ora è anche capace di rilevarne i movimenti. Il sensore intelligente EXR CMOS seleziona automaticamente la modalità di scatto migliore in base alla scena, per catturare perfettamente ogni tipo di immagine anche nelle più difficili condizioni di ripresa.
Per gli utenti più creativi X10 offre anche possibilità avanzate con le diverse modalità di scatto manuali, che consentono di agire sull’impostazione dei tempi, dei diaframmi e sulla messa fuoco.
Infine, X10 permette di registrare video dalla qualità eccezionale grazie alla capacità di effettuare riprese video full HD da 1080p.

Funzioni esclusive per il controllo della qualità dell’immagine
La gamma delle impostazioni ISO di X10 parte dal valore di 100 ISO fino ad arrivare all’elevatissima sensibilità di 12.800 ISO per condizioni di luce al limite (utilizzando una risoluzione più bassa). Se selezionando manualmente l’impostazione ISO non è possibile ottenere un’esposizione corretta, la funzione ISO Auto Setting verrà in aiuto regolando automaticamente la sensibilità della fotocamera, con valori compresi tra 100 e 3.200 ISO.
Per gli utenti che desiderano sperimentare, X10 offre l’esclusiva modalità di simulazione delle pellicole Fujifilm. Sono disponibili otto impostazioni, che comprendono Velvia / PROVIA / ASTIA capaci di riprodurre le tonalità di queste popolari pellicole invertibili (diapositive). X10 aumenta ulteriormente le possibilità creative con la modalità Monochrome che può essere modulata con l’impostazione dei filtri R / Ye/ G.
Fujifilm X10 offre anche la possibilità di regolare alcuni parametri dell’immagine con opzioni che includono \"Color\" per regolare l’intensità del colore, \"Highlight Tone\" / \"Shadow Tone\" per regolare il contrasto nelle alte luci e nelle ombre e \"Sharpness\" per indurire o ammorbidire la nitidezza.
Infine, la funzione per la riduzione del rumore (Noise Reduction Adjustment) permette di regolare il livello di intervento sul rumore presente nello scatto, con cinque differenti livelli.

Ampia gamma di accessori
Perfettamente in stile con il look and feel del corpo della X10, la custodia retrò in pelle tipo \"quick shot\" è progettata per adattarsi come un guanto alla fotocamera. Prodotta con materiale in pelle è stata realizzata prestando attenzione ai dettagli, garantendo la massima praticità e facilità di utilizzo.
Il paraluce, prodotto in metallo fresato, sarà disponibile con un anello adattatore compatibile con i filtri commerciali da 52 mm.
Infine, X10 potrà essere utilizzata con i flash EF-20 (Numero Guida: 20) e EF-42 (Numero Guida: 42).


Caratteristiche principali
• Sensore EXR CMOS da 2/3 di pollice e 12 megapixel e processore EXR
• Zoom ottico FUJINON 4x manuale: 28mm - 112mm (equivalente) e luminoso F2 - F2,8
• Stabilizzatore ottico OIS di nuova concezione
• Mirino ottico luminoso, con ampio angolo di visione e zoom 4x.
• Accensione in circa 0,8 secondi utilizzando l’interruttore on/off posto sull’obbiettivo (in modalità Quick Start)
• Motion Panorama 360 per facili riprese panoramiche a 360 gradi
• EXR Auto e modalità di scatto completamente manuali
• Video full HD da 1080p
• Sensibilità ISO fino a 12800
• Flash pop-up manuale con una distanza operativa di 7 metri
• Monitor LCD a elevato contrasto e ampio angolo di visione da 2,8\" e 460.000 punti
• Quattro funzioni di bracketing automatico per l’esposizione, la sensibilità ISO, il range dinamico e la simulazione della pellicola
• Indicatore elettronico del livello dell’orizzonte
• Riprese RAW elaborate direttamente nella fotocamera (software di conversione SilkyPix RAW fornito nella confezione)
• Corpo in lega di Magnesio Informazioni'),(12,4,66,0,4,'

Numero di Pixel effettivi

\r\n12,0 milioni di pixel \r\n\r\n

Sensore

\r\nEXR CMOS da 2/3 di pollice con filtro a colori primari \r\n\r\n

Supporto memoria

\r\nSD/ SDHC/ SDXC(UHS-I) \r\n\r\n

Formato file

\r\nImmagine: JPEG (Exif Ver 2.3), RAW (RAF format), RAW+JPEG \r\nVideo: H.264 (MOV) con audio stereo H.264(MOV) \r\n\r\n

Numero di pixel registrati

\r\nL: <4:3> 4000 x 3000 <3:2> 4000 x 2664 <16:9> 4000 x 2248 <1:1> 2992 x 2992 \r\nM: <4:3> 2816 x 2112 <3:2> 2816 x 1864 <16:9> 2816 x 1584 <1:1> 2112 x 2112 \r\nS: <4:3> 2048 x 1536 <3:2> 2048 x 1360 <16:9> 1920 x 1080 <1:1> 1536 x 1536 \r\n\r\nMotion Panorama \r\n360°Verticale 11520 x 1624 Orizzontale 11520 x 1080 \r\n300°Verticale 9600 x 1624 Orizzontale 9600 x 1080 \r\n240°Verticale 7680 x 1624 Orizzontale 7680 x 1080 \r\n180°Verticale 5760 x 1624 Orizzontale 5760 x 1080 \r\n120°Verticale 3840 x 1624 Orizzontale 3840 x 1080\r\n\r\n

Ottica

\r\nZoom ottico Fujinon 4x (con Intelligent digital zoom 2x) \r\n\r\n

Lunghezza focale

\r\nf=7.1 - 28.4mm, 28-112mm (equivalente a 35mm) \r\n\r\n

Apertura diaframma

\r\nF2.0-F11(grandangolo) F2.8-F11(tele) 1/3EV step (diaframma a 7 lamelle) \r\n\r\n

Distanza di messa a fuoco

\r\nNormale: Grandangolo: da circa 50 cm all’infinito – Tele: da circa 80cm all’infinito \r\nMacro: Grandangolo: da circa 10 cm a 3m - Tele: da circa 50cm a 3m \r\nSuper Macro : da circa 1cm a 1m \r\n\r\n

Sensibilità

\r\nAuto, \r\nISO 100/200/250/320/400/500/640/800/1000/1250/1600/2000/2500/3200/4000/5000/6400*/12800* \r\n*ISO 6400:modalità M o inferiori, ISO 12800:modalità S \r\n\r\n

Modalità di esposizione

\r\nAE programmata – AE Priorità di tempi - AE Priorità di diaframma, Manuale \r\n\r\n

Modalità di ripresa

\r\nSP: Natural Light, Natural Light con flash, Ritratto, Miglioramento Ritratto, Paesaggio, Sport, Notte, Notte (cavalletto), Fuochi d’artificio, Tramonto, Neve, Spiaggia, Party, Fiori Macro, Testo, Subacqueo. \r\nModalità DIAL: EXR, AUTO, P, S, A, M, C1, C2, Video, SP, Adv. \r\n\r\n

Stabilizzatore di immagine

\r\nMeccanico sull‘ottica \r\n\r\n

Controllo di esposizione

\r\nMisurazione TTL 256 Zone, Multi, Spot, Average \r\n\r\n

Velocità otturatore

\r\n(Auto) da 1/4 sec. a 1/4000* sec. , (tutte le altre modalità) da 30 sec. a 1/4000* sec. \r\n\r\n

Scatto continuo

\r\nTOP: \r\nSuper High:circa. 10 fps (M,S) High:circa 7 fps (L,M,S) Middle.circa 5fps (L,M,S) Low:circa 3 fps (L,M,S) * SD memory card classe 4 (4 MB/sec.) o superiore * il numero massimo di scatti continui per ogni raffica è limitato \r\nBEST FRAME: \r\nSuper High: circa 10fps 8/16 frames (Size M,S) High: circa 7fps 8frames (Size L,M,S)/16 frames (Size M,S) Middle:circa 5fps 8frames (Size L,M,S)/16 frames (Size M,S) Low:circa 3fps 8frames (Size L,M,S)/16 frames (Size ,M,S) \r\n\r\n

Auto Bracketing

\r\nBracketing AE: ±1/3EV,±2/3EV,±1EV \r\nBraketing Simulazione Pellicola: PROVIA, Velvia, ASTIA Braketing Gamma Dinamica: 100%/200%/400% \r\nBraketing ISO: ±1/3EV,±2/3EV,±1EV \r\n\r\n

Compensazione dell’esposizione

\r\n-2.0EV - +2.0EV 1/3EV step \r\n\r\n

Messa a fuoco

\r\nAF Singolo/AF Continuo (EXR Auto, Video) \r\nManuale AF (modalità One-Push AF inclusa) \r\nAF contrasto TTL, Illuminatore AF \r\nMulti, Area, Tracking \r\n\r\n

Bilanciamento del bianco

\r\nAutomatico con riconoscimento della scena \r\nSelezionabile (sereno, ombra, luce fluorescente (diurna), luce fluorescente (calda), luce fluorescente (fredda), luce a incandescenza, subacqueo, personalizzato, selezione temperatura colore \r\n\r\n

Autoscatto

\r\n10 sec./ 2 sec. \r\n\r\n

Flash

\r\nAutomatico (Super Intelligent Flash) Copertura flash (ISO AUTO (800)) Grandangolo: circa 50cm - 7.0m Tele: circa 80cm - 5.0m \r\nModalità di funzionamento: \r\nRiduzione occhi rossi Disattivata (OFF): Auto, forzato, disattivato, sincronizzazione tempi lunghi Riduzione occhi rossi Attivata (ON): Riduzione occhi rossi automatica, Riduzione occhi rossi & forzato, flash disattivato, Riduzione occhi rossi & sincronizzazione tempi lunghi \r\n\r\n

Contatto per Flash Esterno

\r\nsì \r\n\r\n

Mirino Ottico

\r\nMirino zoom ottico\r\ncirca 85% di copertura \r\nAggiustamento diottrico: -3.5 - +1.5m-1(dpt) \r\n\r\n

LCD Monitor

\r\nTFT da 2,8’’ (460.000 pixel) \r\n\r\n

Registrazione Video

\r\n1920 x 1080 pixels / 1280 x 720 pixels/ 640 x 480 pixels (30 frames / sec.) con audio stereo \r\npossibiità uso Zoom ottico (manuale)\r\n\r\n

Funzioni Fotografiche

\r\nModalità EXR (EXR Auto / Resolution priority / High ISO & Low noise priority / Dynamic range priority), Face recognition, Face Detection, Rimozione Occhi Rossi Auto, Simulazione pellicola, Reticolo inquadratura, Memoria numero fotogramma, Visualizzazione istogrammi, Migliore inquadratura, Modalità Avanzate (Motion panorama360, Pro focus, Pro low light), Riprese Video Alta Velocità (70/ 120/ 200 frames/sec.), Livello Elettronico, One-touch RAW Anti Mosso Avanzato \r\n\r\n

Funzioni di Riproduzione

\r\nFace Detection, Rimozione occhi rossi Auto, Visualizzazione fotogrammi multipli con Micro Miniature, Protezione, Ritaglio immagine, Ridimensiona immagine, Ruota immagine, Slide show (presentazione), Registrazione memo vocali, Visualizzazione istogrammi, Avviso sovraesposizione, guida album (Photobook), Ricerca immagine, Preferiti, Mark Upload, Panorama, Cancella immagini selezionate. \r\n\r\n

Altre funzioni

\r\nPictBridge, Exif Print, 35 lingue, Fuso orario, Modalità Silenziosa \r\n\r\n

Uscita video

\r\nNTSC / PAL selezionabile con audio mono \r\n\r\n

Interfaccia

\r\nUSB 2.0 High-Speed \r\n\r\n

Uscita HDMI

\r\nConnettore HDMI Mini \r\n\r\n

Alimentazione

\r\nBatteria ricaricabile al Litio NP-50 (inclusa) \r\nCP-50 with AC power adapter AC-5VX (opzionale) \r\n\r\n

Autonomia batterie

\r\n300 scatti circa \r\n\r\n

Dimensioni

\r\n117.0 (W) x 69.6 (H) x 56.8 (D) mm \r\n\r\n

Peso

\r\ncirca 350g (inclusa batteria e scheda di memoria) \r\ncirca 330g (senza batteria e scheda di memoria) \r\n\r\n

Accessori inclusi

\r\nBatteria ricaricabile al Litio NP-50 – Carica batteria BC-45W - Cinghia di trasporto – Copriobiettivo – Cavo USB - CD-ROM Software - Manuale in lingua italiana.\r\n\r\n

Accessori Opzionali

\r\nCavo A/V AV-C1 - Paraluce LH-X10 - Borsa in pelle LC-X10 – Flash EF-42/EF-20 – Connettore di alimentazione CP-50 - Adattatore a corrente di a corrente di rete AC-5VX.\r\n'),(13,4,67,0,5,'Fujifilm X-S1, tutta la potenza di una Super Zoom

X-S1 rappresenta una nuova generazione di fotocamere bridge. La fotocamera è progettata e costruita in Giappone ed ogni aspetto è stato elaborato seguendo i più elevati standard di produzione. Il design esprime qualità e affidabilità anche nei dettagli: dalle ghiere in metallo allo speciale rivestimento in gomma e l’eccezionale ergonomia del corpo che risponde alle esigenze degli appassionati di fotografia più esigenti.

X-S1 è anche in grado di offrire prestazioni di alto livello e funzioni che consentono al fotografo il pieno controllo delle immagini. Risultati eccellenti sono garantiti dalle caratteristiche di punta di cui è dotata X-S1 che includono: uno zoom ottico Fujinon 26x, l’esclusivo sensore EXR ereditato dalla X10 e un\'ampia gamma di funzioni fotografiche.

Massima versatilità dell’ottica
Il fulcro di X-S1 è l’ottica stabilizzata con zoom 26x Fujinon pari a 24-624 millimetri (35mm equivalente) e una superba luminosità F2.8 – F5.6, per essere in grado di soddisfare qualsiasi esigenza fotografica.

Lo zoom ottico è ulteriormente potenziato dalla tecnologia Intelligent Digital Zoom di Fujifilm in grado di raddoppiare la capacità del teleobiettivo portando lo zoom fino a 52x (24-1248mm), senza significative perdite nella qualità delle immagini.

La costruzione dell’ottica segue i più elevati standard: l’ottica comprende 17 lenti in vetro in 12 gruppi, di cui quattro elementi asferici e due lenti ED, per catturare il soggetto con sorprendente chiarezza ed elevata risoluzione. L’impiego delle camme in metallo e la struttura interna dello zoom, consentono movimenti regolari e una maggiore facilità di utilizzo, permettendo un controllo più rapido e preciso dello zoom.

X-S1 è l’ideale anche nelle riprese macro, in modalità standard la macro si ottiene tenendo l’obiettivo alla distanza di 30cm dal soggetto, ma selezionando la Modalità Super
Macro si può arrivare fino ad 1cm. Quando la modalità è utilizzata alla massima apertura del diaframma, costituito da 9 lamelle, è possibile ottenere riprese macro con un effetto sfocato sullo sfondo.


Tecnologia EXR per ottenere il massimo
X-S1 presenta lo stesso sensore EXR CMOS da 2/3 di pollice e 12 megapixel di cui è dotata la X10, assicurando quindi immagini di alta qualità in qualsiasi condizione di luce.

L\'esclusiva tecnologia EXR CMOS di Fujifilm consente all\'utente di decidere la modalità più corretta tra le tre a disposizione a seconda delle condizioni di luce, o di lasciare che sia la fotocamera a fare la scelta più opportuna impostando la modalità Auto EXR.

Le modalità SN / DR / HR selezionabili permettono di modificare le prestazioni del sensore:
HR, High Resolution, permette di riprodurre i minimi dettagli nelle immagini ed è ideale nelle situazioni in cui le condizioni di luce sono ottimali.
DR, Wide Dynamic Range, si attiva nei casi di forte contrasto per ottenere il massimo sia nelle zone d\'ombra che di luce dell’immagine.
SN, High Sensitivity & Low Noise, è la scelta ideale per catturare scene notturne o riprese d’interni in situazioni di scarsa illuminazione.

Il sensore EXR-CMOS, abbinato al veloce processore EXR, offre un ritardo minimo di scatto di appena 0,01 sec. e permette di raggiungere una velocità di scatto continuo di circa 7 fotogrammi al secondo a piena risoluzione (L) e 10 fps a 6 megapixel (M).
Inoltre, grazie all’ampio sensore, X-S1 è in grado di riprendere video Full HD (1920 x 1080) con audio stereo a 30 fotogrammi al secondo, con la possibilità di salvare il file nel formato H.264


Facile composizione e revisione immagine
X-S1 offre una potente combinazione tra mirino elettronico di alta qualità e display LCD, garantendo la composizione della foto e la visualizzazione delle immagini estremamente semplice e veloce, in qualsiasi condizione di illuminazione.

L’ampio mirino elettronico da 0,47” e 1,44 milioni di punti con la superficie di visione di 26 gradi, consente una grande visibilità e riduce gli effetti di affaticamento agli occhi. Il mirino utilizza 2 lenti in vetro e 1 lente asferica per catturare fedelmente la luce e visualizzare con elevata luminosità l\'immagine inquadrata. L\'impiego di un pannello LCD di circa 0,47 pollici, rende semplice il controllo delle impostazioni relative alla profondità di campo, al bilanciamento del bianco o alla messa a fuoco, durante le riprese compresa la modalità Macro.

Il grande display LCD TILT da 3 pollici è inclinabile, quindi può essere utilizzato anche per riprese più creative o in situazioni difficili, posizionando la macchina a terra o sopra la testa. La risoluzione di 460.000 pixel rende più facile agli utenti navigare tra i menu, verificare l\'accuratezza dell’esposizione e rivedere le immagini scattate. Infine, la modalità Daylight permette una migliore visualizzazione dello schermo in condizioni di elevata luminosità.


Pieno controllo ed estrema versatilità
X-S1 offre eccezionali funzionalità sia agli utenti in cerca di una compatta che permetta di ottenere sempre e in modo semplice il migliore risultato sia a coloro che vogliono sperimentare e cercano la versatilità tipica delle reflex digitali.

X-S1 è in grado di rilevare il soggetto da fotografare e il tipo di scena, nonché se l\'immagine contiene una persona, se vi è una situazione di controluce e se il soggetto è fermo o in movimento.
Queste informazioni vengono trasmesse al processore EXR ed elaborate per scegliere la modalità ottimale di ripresa tra le 99 predefinite e garantire la massima qualità dell\'immagine.


La gamma di sensibilità ISO comprende i valori da 100 a 12800, questa elevata sensibilità è molto utile per riprendere con chiarezza i soggetti in condizione di luce molto scarsa, riducendo la risoluzione (S). L’utente si può anche affidare alla funzione \"Auto ISO\" che selezionerà automaticamente l\'impostazione più corretta con valori ISO compresi tra 100 e 3200.

X-S1 dispone dell’esclusiva modalità di simulazione delle pellicole Fujifilm e permette otto impostazioni che comprendono Velvia/Provia/ASTIA per riprodurre le tonalità di queste popolari pellicole invertibili (diapositive) a colori o in bianco e nero con tre effetti filtro (R / Ye/ G.).
X-S1 offre anche quattro diverse opzioni di bracketing automatico per Esposizione, Sensibilità ISO, Gamma dinamica e Simulazione pellicola.

Per i più creativi X-S1 offre anche opzioni di ripresa che consentono di agire manualmente sui tempi e i diaframmi e consente le riprese RAW e l’elaborazione dei relativi file nella fotocamera. I dati possono essere modificati nell\'esposizione e nel bilanciamento del bianco e possono essere elaborati in modalità di simulazione pellicola.

Infine X-S1 permette di agire su cinque livelli di regolazione del colore per determinarne l’intensità optando tra \"Highlight Tone\" / \"Shadow Tone\" per regolare il contrasto tra ombre e alte luci e \"Sharpness\" per accentuare o meno i margini dei pixel. La funzione “Noise Reduction Adjustment” permette di impostare su cinque livelli la riduzione del rumore, secondo la priorità desiderata per ottenere un’elevata risoluzione o una bassa rumorosità.

Caratteristiche principali Fujifilm X-S1:

• Zoom ottico Fujinon 26x pari a 24-624 millimetri
• Obiettivo luminoso F2.8 – F5.6
• Intelligent Digital Zoom per uno zoom fino a 52x (1248mm in tele)
• Stabilizzazione ottica dell\'immagine
• Sensore EXR CMOS da 2/3 di pollice e 12 megapixel
• Fino a 10 fotogrammi al secondo
• EVF da 1,44 milioni di pixel e 26 gradi,
• Schermo LCD basculante da 3” con modalità Sunny Day
• Sensibilità ISO da 100 a 12800
• Formato dei file Raw
• Video Full HD
• Modalità PASM
• Modalità Panorama 360° e Super Macro
• Modalità di simulazione pellicole Fujifilm
• Batteria al litio che offre fino a 500 scatti per carica
• Design “Made in Japan” ed elevata qualità di costruzione e nelle finiture
• Ergonomia estrema
• Paraluce in metallo e ghiera sull’obiettivo
'),(14,4,66,0,5,'

Pixel effettivi

\r\n12,0 milioni di pixel\r\n\r\n

Sensore

\r\nEXR CMOS da 2/3 di pollice con filtro a colori primari \r\n\r\n

Supporto memoria

\r\nSD/ SDHC/ SDXC(UHS-I) - Memoria interna 26 MB circa\r\n\r\n

Formato file

\r\nImmagine: JPEG (Exif Ver 2.3), RAW (RAF format), RAW+JPEG \r\nVideo: H.264 (MOV) con audio stereo \r\n\r\n

Numero di pixel registrati

\r\nL: <4:3> 4000 x 3000 <3:2> 4000 x 2664 <16:9> 4000 x 2248 <1:1> 2992 x 2992\r\nM: <4:3> 2816 x 2112 <3:2> 2816 x 1864 <16:9> 2816 x 1584 <1:1> 2112 x 2112\r\nS: <4:3> 2048 x 1536 <3:2> 2048 x 1360 <16:9> 1920 x 1080 <1:1> 1536 x 1536\r\n\r\nMotion Panorama\r\n360?Verticale 11520 x 1624 Orizzontale 11520 x 1080\r\n180?Verticale 5760 x 1624 Orizzontale 5760 x 1080\r\n120?Verticale 3840 x 1624 Orizzontale 3840 x 1080\r\n\r\n

Obiettivo

\r\nZoom ottico Fujinon 26x F. 2,8 (Wide) - F.5,6 (Tele) (equivalente a 24-624 mm nel formato 35 mm ) \r\n\r\n

Lunghezza focale

\r\nf=6.1 – 158.6mm, 24-624mm (equivalente a 35mm)\r\n\r\n

Gruppo Lenti

\r\n12 gruppi 17 lenti (4 asferiche e 2ED)\r\n\r\n

Zoom

\r\nZoom digitale: 2X (1.4) (fino a 52x in combinazione con lo zoom ottico)\r\n\r\n

Apertura diaframma

\r\nF2.8-F11(grandangolo) \r\nF5.6-F11(tele) 1/3EV step (diaframma a 9 lamelle)\r\n\r\n

Distanza di messa a fuoco

\r\nNormale: Grandangolo: da circa 30 cm all’infinito – Tele: da circa 2 m all’infinito\r\nMacro: Grandangolo: da circa 7 cm a 3 m - Tele: da circa 2 m a 3,5 m\r\nSuper Macro : da circa 1cm a 1m\r\n\r\n

Sensibilità

\r\nAuto (400) / Auto (800) / Auto (1600) / Auto (3200) \r\nEquivalente a ISO 100/200/250/320/400/500/640/800/1000/1250/1600/2000/2500/3200/4000*/5000*/6400*/12800*\r\n*ISO 4000/5000/6400:modalità M o inferiori, ISO 12800:modalità S \r\n\r\n

Controllo esposizione

\r\nMisurazione TTL 256 zone, Spot, Multi, Average \r\n\r\n

Modalità di esposizione

\r\nAE programmata – AE Priorità di tempi - AE Priorità di diaframma, Manuale \r\n\r\n

Modalità di ripresa

\r\nSP: Natural Light, Natural Light con flash, Ritratto, Miglioramento Ritratto, Cane, Gatto, Paesaggio, Sport, Notte, Notte (cavalletto), Fuochi d’artificio, Tramonto, Neve, Spiaggia, Party, Fiori Macro, Testo.\r\nModalità DIAL: EXR, AUTO, Adv., SP, C3, C2, C1, M, A, S, P.\r\n\r\n

Stabilizzatore di immagine

\r\nMeccanico sull’ottica\r\n\r\n

Face Detection

\r\nSi\r\n\r\n

Compensazione dell‘esposizione

\r\n-2.0EV - +2.0EV 1/3EV Step\r\n\r\n

Velocità otturatore

\r\n(Auto) da 1/4 sec. a 1/4000 sec., (tutte le altre modalità) da 30 sec. a 1/4000 sec.\r\n\r\n

Scatto continuoTOP:

\r\nSuper High: circa 10 fps (M,S)\r\nHigh: circa 7fps (L,M,S)\r\nMiddle: circa 5fps (L,M,S)\r\nLow: circa 3 fps (L,M,S)\r\n* sono raccomandate schede di memoria SD classe 4 (4 MB/sec.) o superiori\r\n* il numero massimo di scatti continui per ogni raffica varia a seconda delle condizioni di \r\nripresa \r\n\r\nBEST FRAME:\r\nSuper High: circa 10fps 8/16 frames (Size M,S)\r\nHigh: circa 7fps 8frames (Size L,M,S)/16 frames (Size M,S)\r\nMiddle: circa 5fps 8frames (Size L,M,S)/16 frames (Size M,S)\r\nLow: circa 3fps 8frames (Size L,M,S)/16 frames (Size ,M,S)\r\n\r\n

Auto Bracketing

\r\nBracketing AE: ±1/3EV,±2/3EV,±1EV\r\nBraketing Simulazione Pellicola: PROVIA/standard, VELVIA/vivid , ASTIA/soft\r\nBraketing Gamma Dinamica : 100%/200%/400%\r\nBraketing ISO: ±1/3EV,±2/3EV,±1EV\r\n\r\n

Messa a fuoco

\r\nAF Singolo/AF Continuo (EXR Auto, Video)\r\nAF Manuale (modalità One-Push AF inclusa)\r\nAF contrasto TTL, Illuminatore AF\r\nMulti, Area, Tracking\r\n\r\n

Bilanciamento del bianco

\r\nAutomatico con riconoscimento della scena\r\nSelezionabile: sereno, ombra, luce fluorescente (diurna), luce fluorescente (calda), luce fluorescente (fredda), luce a incandescenza, personalizzato, selezione temperatura colore (2,500K ~ 10,000K)\r\n\r\n

Autoscatto

\r\n10 sec./ 2 sec., Rilascio automatico\r\n\r\n

Flash

\r\nAutomatico (Super Intelligent Flash) \r\nCopertura flash (ISO AUTO (800))\r\nGrandangolo: circa 30cm - 8.0m \r\nTele: circa 2.0m – 4.0m \r\n\r\nModalità di funzionamento:\r\nRimozione occhi rossi Disattivata (OFF): Auto, flash forzato, flash disattivato, sincronizzazione tempi lunghi\r\nRimozione occhi rossi Attivata (ON): Riduzione occhi rossi automatica, Riduzione occhi rossi & forzato, flash disattivato, Riduzione occhi rossi & sincronizzazione tempi lunghi\r\n\r\n

Contatto per Flash Esterno

\r\nSì\r\n\r\n

Mirino elettronico

\r\n0,47” circa 1440,000 pixel – copertura 100% ca - aggiustamento diottrico: -5 +3m-1(dpt) \r\n\r\n

LCD Monitor

\r\nTFT da 3.0’’ (460.000 pixel) - copertura 100% circa\r\n\r\n

Registrazione Video

\r\n1920 x 1080 pixels / 1280 x 720 pixels/ 640 x 480 pixels (30 frames / sec.) con audio stereo - Zoom ottico (manuale) disponibile durante la registrazione video\r\n\r\n

Funzioni Fotografiche

\r\nModalità EXR (EXR Auto / Alta Risoluzione / Alta Sensibilità & Basso Rumore / Gamma Dinamica), Face recognition, Face Detection, Rimozione Occhi Rossi Auto, Simulazione pellicola, Reticolo inquadratura, Memoria numero fotogramma, Visualizzazione istogrammi, Modalità Avanzate (Motion panorama 360°, Pro focus, Pro low light), Riprese Video Alta Velocità (70/ 120/ 200 frames/sec.), Livello Elettronico, One-touch RAW, Anti Mosso Avanzato, Focus check, Spazio di selezione del colore. \r\n\r\n

Funzioni di Riproduzione

\r\nFace Detection, Rimozione occhi rossi Auto, Visualizzazione fotogrammi multipli con Micro Miniature, Protezione, Ritaglio immagine, Ridimensiona immagine, Ruota immagine, Slide show (presentazione), Registrazione memo vocali, Visualizzazione istogrammi, Avviso sovraesposizione, Guida album (Photobook), Ricerca immagine, Preferiti, Mark Upload, Panorama, Cancella immagini selezionate, conversione Raw. \r\n\r\n

Altre funzioni

\r\nPictBridge, Exif Print, 35 lingue, Fuso orario, Modalità Silenziosa, Suono otturatore. \r\n\r\n

Uscita video

\r\nNTSC / PAL selezionabile con audio mono\r\n\r\n

Interfaccia

\r\nUSB 2.0 High-Speed\r\n\r\n

Uscita HDMI

\r\nConnettore HDMI Mini\r\n\r\n

Microfono esterno

\r\nØ 3,5 Mini con audio stereo\r\n\r\n

Alimentazione

\r\nBatteria ricaricabile al Litio NP-95 (inclusa)\r\n\r\n

Autonomia batterie

\r\n460 scatti circa (standard CIPA) – 500 scatti circa con utilizzo EVF\r\n\r\n

Dimensioni

\r\n135 (W) x 107 (H) x 149 (D) mm\r\n\r\n

Peso

\r\ncirca 945g (inclusa batteria e scheda di memoria)\r\ncirca 905g (senza batteria e scheda di memoria)\r\n\r\n

Accessori inclusi

\r\nBatteria ricaricabile al Litio NP-95 – Carica batteria BC-65N - Cinghia di trasporto – Copriobiettivo – Cinghietta per copriobiettivo – Paraluce - Cavo USB - CD-ROM Software - Manuale in lingua italiana. \r\n\r\n

Accessori Opzionali

\r\nBatteria ricaricabile al Litio NP-95 - Carica batteria BC-65N - Flash EF-42/EF-20 – Scatto a distanza (Remote release) RR-80\r\n'),(15,4,67,0,6,'FinePix X100, la fotocamera digitale di alto livello dotata di sensore APS-C CMOS da 12,3 megapixel, obbiettivo Fujinon a focale fissa da 23mm luminosità F2 e mirino Hybrid Viewfinder di ultima generazione.
'),(16,4,66,0,6,'FinePix X100, la fotocamera digitale di alto livello dotata di sensore APS-C CMOS da 12,3 megapixel, obbiettivo Fujinon a focale fissa da 23mm luminosità F2 e mirino Hybrid Viewfinder di ultima generazione.


Caratteristiche principali

Il primo mirino Hybrid Viewfinder al mondo
La vera soddisfazione del fotografo comincia con “il piacere di guardare il mondo attraverso il mirino della fotocamera”. Il nuovo Hybrid Viewfinder è stato progettato per ricondurre gli utenti a questa essenziale esperienza fotografica. È la perfetta combinazione di un mirino ottico a finestra di tipo “bright frame”, che si trova su molte fotocamere a pellicola 35mm, come la classica 135 o le macchine di medio formato, con un mirino elettronico, comune tra le fotocamere digitali compatte prive di specchio. Integrando un prisma e un pannello di visualizzazione LCD da 1.440.000 punti visibile nel mirino ottico Galileiano, il nuovo Hybrid Viewfinder è in grado di mostrare sia la cornice di scatto, sia vari dati relativi all’inquadratura. Naturalmente, può anche essere utilizzato come mirino elettronico di alta qualità per comporre o riprodurre gli scatti. Grazie alla possibilità di passare istantaneamente da mirino ottico a mirino elettronico con un semplice comando “one touch”, il nuovo Hybrid Viewfinder offre agli utenti maggiore libertà nella realizzazione e nel piacere della fotografia in un’ampia varietà di condizioni di scatto estreme.

Il mirino Galileiano ottico con un ingrandimento x0,5 è costituito da elementi in vetro ottico con un indice rifrattivo elevato che consente basse aberrazioni cromatiche e distorsioni ottiche.

In modalità mirino ottico (OVF), la luminosità della cornice e dei dati di scatto si adatta automaticamente alle condizioni di luce, assicurando che le informazioni siano sempre chiare e visibili. Inoltre, i dati di scatto sono costantemente aggiornati rispetto al cambiamento del tempo di posa, dell’esposizione, della sensibilità e degli altri parametri, in modo che l’occhio del fotografo non debba mai staccarsi dal mirino.

In modalità mirino elettronico (EVF), il fotografo può visualizzare un’anteprima dello scatto o riprodurre quelli appena eseguiti con la riproduzione “attraverso il sensore” e una risoluzione di 1.440.000 di pixel.

Con un movimento della leva “one-touch”, l’utente può selezionare EVF o “anteprima” e confermare le impostazioni di esposizione, profondità di campo e bilanciamento dei bianchi. Una funzionalità davvero utile specialmente quando si scattano scene macro o altre situazioni in cui avere solo un mirino ottico sarebbe problematico.


Obbiettivo Fujinon 23mm F2 ad elevate prestazioni
Obbiettivo 23mm (equivalente ad una fotocamera 135 - 35mm) F2. 8 elementi in 6 gruppi. Una lente asferica.

L’adozione di una struttura di lenti fissa di minima lunghezza focale, non solo contribuisce ad una dimensione compatta, ma elimina anche il movimento telescopico dell’obbiettivo quando si accende la fotocamera. La fotocamera è pronta a scattare subito dopo l’accensione.

Sfruttando i vantaggi della focale fissa, questo obbiettivo consente una nitida risoluzione di tutta l’immagine, dal centro ai bordi. Le caratteristiche dell’obbiettivo non solo comprendono l’elevata luminosità F2, ma anche un’architettura ottica che mantiene un’elevata risoluzione anche con 1 o 2 stop chiusi.

L’adozione del diaframma con 9 lame, combinata con la luminosità F2 e l’elevata qualità dell’obbiettivo, consente agli utenti di scattare bellissime fotografie con il morbido effetto circolare “fuori fuoco” (bokeh).

L’opportunità di scattare in modalità Macro fino a 10 cm. di distanza, consente agli utenti di esplorare il fascino della macrofotografia divertendosi.

Il filtro ND integrato (equivalente a una riduzione di 3 stop), può essere attivato o disattivato semplicemente attraverso le impostazioni della fotocamera.


Sensore APS-C CMOS da 12,3 Megapixel e Processore EXR
La FinePix X100 è dotata di sensore CMOS ad alte prestazioni, ottimizzato e rinnovato esclusivamente per questo modello di fotocamera.

L’ottimizzazione dell’angolo di incidenza, unitamente all’obbiettivo, anch’esso di esclusiva realizzazione, migliorano la capacità di assorbimento della luce per tutto il perimetro del sensore per un’immagine più nitida di qualità eccezionale.

Durante la ripresa di video HD, la combinazione del sensore di grandi dimensioni ed il luminoso obbiettivo F2, consente agli utenti riprese con un morbido effetto fuori fuoco (bokeh), una funzionalità solitamente non disponibile sulle compatte convenzionali.

La combinazione ideale dell’ottica a lunghezza focale fissa, del sensore ad alta sensibilità (circa 10 volte la sensibilità di una normale fotocamera compatta*) e del processore di elevate prestazioni consente di scattare fotografie di altissima qualità sia con impostazioni di bassa e di alta sensibilità. La sensibilità ISO è impostata normalmente da 200 a 6400, ma può essere estesa con valori da 100 fino a 12800.

Il processore EXR di nuova generazione porta l’elaborazione EXR ad un nuovo livello. Combinato con il sensore ad alta sensibilità, il processore EXR è in grado di ottenere la migliore risoluzione, sensibilità e gamma dinamica mai raggiunti da una fotocamera FinePix, per ottenere sempre i migliori risultati, in ogni scatto.

Il sensore CMOS ad alta velocità di lettura e il migliorato sistema di elaborazione del processore EXR contribuiscono ad accelerare le prestazioni AF, mentre la combinazione del mirino ottico con il ridottissimo tempo di reazione dell’otturatore, migliorano il risultato di ogni scatto.

*Comparata ad altri modelli FinePix.


Design
Design bellissimo, ispirato alle bellezze classiche e al fascino delle tradizionali macchine a pellicola.

La copertura dei comandi sulla parte superiore e la base sono realizzate con pressofusione in lega di magnesio (metodo di fusione del metallo semi-solido), per un corpo macchina solido e resistente.

Tutti i selettori e le ghiere sono in metallo zigrinato. L’adozione dei tradizionali selettori “manuali” consente all’utente di confermare le correnti impostazioni senza dover accendere la fotocamera.

L’ergonomia del design offre il perfetto equilibrio tra la convenienza di una compatta e la semplicità d’impiego.

I comandi della fotocamera sono stati accuratamente pensati per dare all’utente un rapido e facile accesso alle impostazioni del diaframma, del tempo di posa, della compensazione, ecc… consentendo la massima espressione creativa con il minimo sforzo, abilitando la visualizzazione delle impostazioni anche a fotocamera spenta. È possibile inoltre impostare modalità “one-touch” personalizzate per il cambiamento delle impostazioni.

La qualità premium è riconoscibile in ogni dettaglio. La scocca della fotocamera è rifinita con pregiati accenti effetto pelle ed è un piacere da impugnare e utilizzare.


Funzionalità “Original Image Quality” migliorate
Oltre all’originale modalità “Simulazione Pellicola” di Fujifilm, che conferisce alle immagini il riconoscibile effetto delle pellicole Velvia, PROVIA e ASTIA, la X100 estende la capacità dell’espressione fotografica con la modalità Monochrome, che può essere ulteriormente “raffinata” con la selezione dei filtri R/Ye/G (rosso/giallo/verde).

La possibilità di selezionare diverse opzioni per le ombre e per i punti luce consente agli utenti di riprodurre le vivaci tonalità dei soggetti ad elevato contrasto.

Catturare immagini nel formato RAW risulta semplice poiché è previsto un pulsante RAW posto sul retro della fotocamera. Durante la ricerca del successivo luogo da fotografare, gli utenti avranno la possibilità di utilizzare la funzionalità di sviluppo RAW, integrata nella fotocamera, per “sviluppare” i dati RAW direttamente “in-camera” e fruire dell’esclusiva “image creation” di Fujifilm che si adatta ai parametri di qualità impostati nella fotocamera.


Funzionalità stimolano il desiderio di catturare ogni istante
La X100 offre agli utenti la possibilità di scegliere tra la messa a fuoco automatica EVF a 49 punti e la messa a fuoco automatica OVF a 25 punti, così come tra 5 diverse dimensioni di inquadratura in modalità EVF. Secondo le necessità, in ogni tipo di scena, la X100 offre una semplice “messa a fuoco ad hoc”.

La ripresa di video HD consente agli utenti di catturare l’azione con una risoluzione dei dettagli da 720 punti. Come per gli scatti fotografici, l’utente può riprendere video con priorità di diaframma AE e ottenere un morbido effetto sfocato dello sfondo. Inoltre, la porta HDMI integrata, consente di collegare la X100 direttamente a qualsiasi TV ad alta definizione per riprodurre fotografie e video con la massima rapidità e semplicità.

Grazie alla funzionalità Motion Panorama integrata, riprendere panorami a 180° e a 120° gradi è davvero semplice. Gli utenti potranno poi stampare i panorami in dettagliatissimi ingrandimenti in formato A3 e mostrare con orgoglio i risultati della fotografia panoramica di alta qualità.

La X100 è dotata anche di 4 differenti opzioni di bracketing: AE, ISO, Dynamic Range e Film Simulation. Con un solo scatto dell’otturatore la macchina riprende 3 diverse immagini, in modo da non perdere mai l’attimo.


Gamma di accessori Premium

Custodia
Come ideale complemento del look e della sensazione di altissima qualità del corpo della FinePix X100 è stata progettata una custodia “quick shot” in pelle stile retrò con strappo per avvolgere, come un guanto, la X100. Realizzata in pelle pregiata con grande attenzione ai dettagli, garantisce la migliore funzionalità e praticità.

coprilente e anello adattatore
In metallo finemente zigrinato, il paraluce e l’anello adattatore saranno disponibili in un set. L’anello è compatibile con i normali filtri 49 mm in commercio.

TTL Flash
Alla gamma dei flash TTL saranno aggiunti i modelli EF-20 (Numero guida 20) e EF-42 (Numero guida 42).'),(17,4,77,0,4,NULL),(18,4,99,0,4,NULL),(22,4,77,0,5,NULL),(23,4,99,0,5,NULL),(25,4,77,0,6,NULL),(26,4,99,0,6,NULL),(27,4,168,0,6,NULL),(31,4,169,0,6,'

Numero di Pixel effettivi

\r\n12,3 milioni di pixel effettivi*1\r\n\r\n

Sensore

CCD APS-C CMOS 23.6mm x 15.8mm \r\n\r\n

Supporto memoria

\r\nMemoria interna 20MB circa\r\nSD / SDHC / SDXC (UHS-I) Memory card*2 \r\n\r\n

Formato file Immagine

\r\nJPEG (Exif vers. 2.3)*3, RAW \r\n\r\n

Video

\r\nH.264 (MOV) con audio stereo\r\n \r\n

Numero di pixel registrati Immagine

\r\nL : (3:2) 4288 x 2848 / (16:9) 4288 x 2416 \r\nM : (3:2) 3072 x 2048 / (16:9) 3072 x 1728 \r\nS : (3:2) 2176 x 1448 / (16:9) 1920 x 1080 \r\n\r\nMotion Panorama\r\n180° Verticale 7680 x 2160 Orizzontale 7680 x 1440 \r\n120° Verticale 5120 x 2160 Orizzontale 5120 x 1440 \r\n\r\n

Ottica

\r\nFUJINON\r\n\r\n

lunghezza focale

\r\nfissa Lunghezza focale f.23 mm (equivalente a 35 mm ) \r\n\r\n

Massima apertura

\r\nF2 \r\n\r\n

Composizione

\r\n6 gruppi 8 lenti (inclusa una lente asferica) \r\n\r\n

Apertura diaframma

\r\nF2,0 - F16 \r\n\r\n

Distanza di messa a fuoco

\r\nNormale\r\nda 80cm circa fino all’infinito\r\n\r\nMacro\r\n10cm - 2.0m circa \r\n\r\n

Sensibilità

\r\nEquivalente a ISO 200-6400 (Sensibilità standard) \r\nEquivalente a ISO 100 o 12800 (Sensibilità estesa) \r\nDisponibile controllo automatico (ISO AUTO) \r\n\r\n

Controllo esposizione

\r\nMisurazione TTL a 256 zone, Multi / Spot / Media \r\n\r\n

Modalità di esposizione

\r\nAE programmata\r\nAE Priorità di tempi\r\nAE Priorità di diaframma\r\nManuale \r\n\r\n

compensazione dell\'esposizione

\r\n -2.0 EV ± 2.0EV \r\n\r\n

Tempo di posa

\r\n(modalità P) da 1/4 sec. a 1/4000* sec., (tutte le alter modalità) da 30 sec. a 1/4000* sec. Bulb (max.60min.) \r\n* 1/4000sec a F8 aperture minori, 1/1000 sec a F2 \r\n\r\n

Scatto continuo Fino a 10 /JPEG

\r\nFino a 8 /RAW o RAW+JPEG \r\n5 / 3 fps selezionabili \r\n\r\n

Auto bracketing Braketing AE

\r\nBraketing Simulazione Pellicola (Provia /Velvia/Astia/Bianco e Nero) \r\nBraketing Gamma Dinamica \r\nBraketing ISO \r\n\r\n

Messa a fuoco

\r\nModalità\r\nAF Singolo/ AF Continuo /MF Indicatore di Distanza \r\n\r\nTipo \r\nTTL a contrasto AF, Illuminatore ausiliario AF disponibile \r\n\r\nSelezione area AF \r\nArea / Multi \r\n\r\n

Bilanciamento del bianco

\r\nRiconoscimento automatico della scena \r\n\r\nPreimpostati \r\nFine, ombra, luce fluorescente (diurna), luce fluorescente (calda), luce fluorescente (fredda), luce a incandescenza, subacquea, personalizzato, selezione temperatura di colore \r\n\r\n

Autoscatto

\r\nApprox. 10sec. / 2sec. Delay \r\n\r\n

Flash

\r\nAutomatico (Super Intelligent Flash) \r\n\r\n

modalità flash

\r\nRed-eye removal OFF : Auto, Forced Flash, Suppressed Flash, Slow Synchro. Red-eye removal ON : Red-eye Reduction Auto, Red-eye Reduction & Forced Flash, Suppressed Flash, Red-eye Reduction & Slow Synchro. \r\n\r\n

Contatto per Flash Esterno

\r\nSi (dedicated TTL Flash compatible) \r\n\r\n

Mirino

\r\nMirino Ibrido\r\nMirino Ottico \r\nMirino Reverso Galileiano con display con cornice luminosa elettronica \r\nIngrandimento 0.5 x \r\nCopertura area cornice rispetto all’area effettivamente ripresa : circa. 90%\r\nMirino Elettronico\r\n0.47”., circa 1,440,000pixel (mirino LCD a colori) \r\nCopertura area di visione rispetto all’area effettivamente ripresa : circa. 100%\r\nSensore prossimità occhio\r\nPunto di conversione (tra display e mirino) : circa 15mm\r\nCorrezione diottrica : -2 - +1m-1 \r\n \r\n

LCD monitor

\r\nTFT da 2,8’’ (460.000 pixel) \r\n\r\n

Registrazione Video

\r\n1280 x 720 pixels (24frames / sec.) with stereo sound \r\n\r\n

Funzioni Fotografiche

\r\nSelezione impostazioni personalizzate, Motion panorama, simulazione pellicola, rimozione automatica occhi rossi, memorizzazione n. scatti, visualizzazione istogramma, anteprima profondità di campo, controllo di messa a fuoco, livella elettronica, RAW one-touch (tasto di selezione rapida) \r\n\r\n

Funzioni di Riproduzione

\r\nConversione file RAW, rotazione immagini, assistenza per Photobook, cancellazione immagini selezionate, ricerca immagini, riproduzione multipla immagini(microminiature), presentazione, selezione per upload, protezione, ritaglio, ridimensionamento , panorama, favorite. \r\n\r\n

Altre funzioni

\r\nPictBridge, Exif Print, Menù multilingue , Funzione fuso orario, Modalità silenziosa \r\n\r\n

Terminale

\r\nInterfaccia Digitale : USB 2.0 High-Speed\r\nUscita HD :Connettore HDMI Mini \r\n\r\n

Alimentazione

\r\nBatteria ricaricabile al Litio NP-95 (inclusa) \r\n\r\n

Dimensioni

\r\n126,5 (L) x 74,2 (A) x 53,9 (P) mm \r\n\r\n

Peso

\r\n405 g (senza batteria e supporti di memoria) \r\n\r\n

Temperatura di funzionamento

\r\n0°C - 40°C \r\n\r\n

Umidità in funzionamento

\r\n10% - 80% (no condensation) \r\n\r\n

Numero foto con batteria carica

\r\nApprox. 300 foto\r\n\r\n

Tempo di accensione

\r\nApprox. 2.2sec. ( Approx 0.7sec con modalità QUICK START)*4 \r\n\r\n

Accessori Inclusi

\r\nBatteria ricaricabile al Litio NP-95\r\nCarica batteria BC-65N\r\nCinghia di trasporto\r\nCopriobiettivo\r\nCavo USB\r\nCD-ROM Software*5 \r\nManuale in lingua italiana \r\n\r\n

Accessori Opzionali

\r\nAdattatore a corrente di rete AC-5VX\r\nConnettore di alimentazione CP-95B\r\nCarica batterie BC-65S\r\nParaluce LH-X100\r\nBorsa in pelle LC-X100\r\nAnello adattatore AR-X100\r\nFlash EF-42/EF-202 \r\n\r\n\r\n*1 Numero di pixel effettivi : numero di pixel sul sensore dell\'immagine che ricevono la luce in ingresso attraverso l’ottica e che sono effettivamente riflessi nei dati di output finale dell’immagine. \r\n*2 Controllare il sito internet Fujifilm per verificare la compatibilità con le schede di memoria. \r\n*3 Il file Exif 2.3 contiene numerose informazioni dello scatto, utili per la stampa.\r\n*4 Valutato con metodo FUJIFILM\r\n*5 Sistemi operativi compatibili con il software Viewer : Windows7 / Vista / XP, Mac OS X 10.9 - 10.6Convertitore di File Raw File : Windows7 / Vista / XP \r\n'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_6E08D719F0501DD1D8E6D4EFF2511C85` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_TIER_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_TIER_PRICE_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Attribute Backend Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_ENTT_VCHR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=209 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Varchar Attribute Backend Table'; /*!40101 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,79,0,1,'/a/v/av100_front_b__1_1.jpg'),(2,4,112,0,1,'4'),(3,4,111,0,1,'2'),(4,4,65,0,1,'FinePix AV100'),(5,4,102,0,1,'container2'),(6,4,80,0,1,'/a/v/av100_front_b__1_1.jpg'),(7,4,81,0,1,'/a/v/av100_front_b__1_1.jpg'),(8,4,90,0,1,'finepix-av100'),(9,4,91,0,1,'finepix-av100.html'),(11,4,166,0,1,'ss'),(12,4,158,0,1,'d'),(13,4,165,0,1,'vv'),(14,4,156,0,1,'ff'),(15,4,163,0,1,'cvvv'),(16,4,154,0,1,'x'),(17,4,157,0,1,'d'),(18,4,159,0,1,'s'),(19,4,164,0,1,'cv'),(20,4,155,0,1,'x'),(21,4,161,0,1,'x'),(22,4,162,0,1,'x'),(23,4,160,0,1,'360° Verticale 7680x1080 Orizzontale 7680x720
180° Verticale 3840x1080 Orizzontale 3840x720
120° Verticale 2560x1080 Orizzontale 2560x720'),(24,4,166,0,2,'ss'),(25,4,158,0,2,'d'),(26,4,165,0,2,'vv'),(27,4,156,0,2,'ff'),(28,4,79,0,2,'/a/v/av100_front_b__1_1.jpg'),(29,4,163,0,2,'cvvv'),(30,4,112,0,2,'4'),(31,4,111,0,2,'2'),(32,4,65,0,2,'FinePix AV100 Rosso'),(33,4,102,0,2,'container2'),(34,4,154,0,2,'x'),(35,4,80,0,2,'/a/v/av100_front_b__1_1.jpg'),(36,4,157,0,2,'d'),(37,4,159,0,2,'s'),(38,4,164,0,2,'cv'),(39,4,81,0,2,'/a/v/av100_front_b__1_1.jpg'),(40,4,155,0,2,'x'),(41,4,90,0,2,'finepix-av100'),(42,4,91,0,2,'finepix-av100-2.html'),(43,4,161,0,2,'x'),(44,4,162,0,2,'x'),(45,4,160,0,2,'s'),(46,4,74,0,2,'1'),(47,4,79,0,3,'no_selection'),(48,4,112,0,3,'4'),(49,4,111,0,3,'2'),(50,4,65,0,3,'Accessorio'),(51,4,102,0,3,'container2'),(52,4,80,0,3,'no_selection'),(53,4,81,0,3,'no_selection'),(54,4,90,0,3,'accessorio'),(55,4,74,0,3,'1'),(56,4,91,0,3,'accessorio.html'),(57,4,91,1,2,'finepix-av100-2.html'),(58,4,110,0,1,'FinePix X10'),(59,4,76,0,1,NULL),(60,4,78,0,1,NULL),(61,4,96,0,1,NULL),(62,4,100,0,1,'Fujifilm X-S1'),(63,4,146,0,1,NULL),(64,4,147,0,1,NULL),(65,4,148,0,1,NULL),(66,4,116,0,1,'Fujifilm X100'),(67,4,105,0,1,NULL),(68,4,106,0,1,NULL),(69,4,107,0,1,NULL),(70,4,65,0,4,'FinePix X10'),(71,4,102,0,4,'container2'),(72,4,90,0,4,'finepix-x10'),(73,4,91,0,4,'finepix-x10.html'),(74,4,65,0,5,'Fujifilm X-S1'),(75,4,102,0,5,'container2'),(76,4,90,0,5,'fujifilm-x-s1'),(77,4,91,0,5,'fujifilm-x-s1.html'),(78,4,65,0,6,'Fujifilm X100'),(79,4,102,0,6,'container2'),(80,4,90,0,6,'fujifilm-x100'),(81,4,91,0,6,'fujifilm-x100.html'),(82,4,74,0,4,'1'),(83,4,110,0,4,NULL),(84,4,111,0,4,'2'),(85,4,112,0,4,'4'),(86,4,76,0,4,NULL),(87,4,78,0,4,NULL),(88,4,79,0,4,'/f/u/fujifilmx10_01_1.jpg'),(89,4,80,0,4,'/f/u/fujifilmx10_01_1.jpg'),(90,4,81,0,4,'/f/u/fujifilmx10_01_1.jpg'),(91,4,96,0,4,NULL),(92,4,100,0,4,NULL),(93,4,146,0,4,NULL),(94,4,147,0,4,NULL),(95,4,148,0,4,NULL),(96,4,154,0,4,NULL),(97,4,155,0,4,NULL),(98,4,156,0,4,NULL),(99,4,157,0,4,NULL),(100,4,158,0,4,NULL),(101,4,159,0,4,NULL),(102,4,160,0,4,NULL),(103,4,161,0,4,NULL),(104,4,162,0,4,NULL),(105,4,163,0,4,NULL),(106,4,164,0,4,NULL),(107,4,165,0,4,NULL),(108,4,166,0,4,NULL),(109,4,116,0,4,NULL),(110,4,105,0,4,NULL),(111,4,106,0,4,NULL),(112,4,107,0,4,NULL),(140,4,79,0,5,'/f/u/fujifilmxs1_01.jpg'),(141,4,80,0,5,'/f/u/fujifilmxs1_01.jpg'),(142,4,81,0,5,'/f/u/fujifilmxs1_01.jpg'),(143,4,74,0,5,'1'),(148,4,110,0,5,NULL),(149,4,111,0,5,'2'),(150,4,112,0,5,'4'),(151,4,76,0,5,NULL),(152,4,78,0,5,NULL),(153,4,96,0,5,NULL),(154,4,100,0,5,NULL),(155,4,146,0,5,NULL),(156,4,147,0,5,NULL),(157,4,148,0,5,NULL),(158,4,154,0,5,NULL),(159,4,155,0,5,NULL),(160,4,156,0,5,NULL),(161,4,157,0,5,NULL),(162,4,158,0,5,NULL),(163,4,159,0,5,NULL),(164,4,160,0,5,NULL),(165,4,161,0,5,NULL),(166,4,162,0,5,NULL),(167,4,163,0,5,NULL),(168,4,164,0,5,NULL),(169,4,165,0,5,NULL),(170,4,166,0,5,NULL),(171,4,116,0,5,NULL),(172,4,105,0,5,NULL),(173,4,106,0,5,NULL),(174,4,107,0,5,NULL),(178,4,110,0,6,NULL),(179,4,111,0,6,'2'),(180,4,112,0,6,'4'),(181,4,76,0,6,NULL),(182,4,78,0,6,NULL),(183,4,79,0,6,'/f/u/fujifilmx100_01.jpg'),(184,4,80,0,6,'/f/u/fujifilmx100_01.jpg'),(185,4,81,0,6,'/f/u/fujifilmx100_01.jpg'),(186,4,96,0,6,NULL),(187,4,100,0,6,NULL),(188,4,146,0,6,NULL),(189,4,147,0,6,NULL),(190,4,148,0,6,NULL),(191,4,154,0,6,NULL),(192,4,155,0,6,NULL),(193,4,156,0,6,NULL),(194,4,157,0,6,NULL),(195,4,158,0,6,NULL),(196,4,159,0,6,NULL),(197,4,160,0,6,NULL),(198,4,161,0,6,NULL),(199,4,162,0,6,NULL),(200,4,163,0,6,NULL),(201,4,164,0,6,NULL),(202,4,165,0,6,NULL),(203,4,166,0,6,NULL),(204,4,74,0,6,'1'),(205,4,116,0,6,NULL),(206,4,105,0,6,NULL),(207,4,106,0,6,NULL),(208,4,107,0,6,NULL); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', `allow_open_amount` int(11) DEFAULT NULL COMMENT 'Allow Open Amount', `cost` decimal(12,4) DEFAULT NULL COMMENT 'Cost', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At', `email_template` varchar(255) DEFAULT NULL COMMENT 'Email Template', `enable_googlecheckout` smallint(6) DEFAULT NULL COMMENT 'Enable Googlecheckout', `giftcard_amounts` decimal(12,4) DEFAULT NULL COMMENT 'Giftcard Amounts', `giftcard_type` smallint(5) unsigned DEFAULT NULL COMMENT 'Giftcard Type', `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', `is_redeemable` int(11) DEFAULT NULL COMMENT 'Is Redeemable', `lifetime` int(11) DEFAULT NULL COMMENT 'Lifetime', `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', `open_amount_max` decimal(12,4) DEFAULT NULL COMMENT 'Open Amount Max', `open_amount_min` decimal(12,4) DEFAULT NULL COMMENT 'Open Amount Min', `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', `use_config_email_template` int(11) DEFAULT NULL COMMENT 'Use Config Email Template', `use_config_is_redeemable` int(11) DEFAULT NULL COMMENT 'Use Config Is Redeemable', `use_config_lifetime` int(11) DEFAULT NULL COMMENT 'Use Config Lifetime', `visibility` smallint(5) unsigned DEFAULT NULL COMMENT 'Visibility', `weight` varchar(255) DEFAULT NULL COMMENT 'Weight', `weight_type` int(11) DEFAULT NULL COMMENT 'Weight Type', `color` int(11) DEFAULT NULL COMMENT 'Color', `color_value` varchar(255) DEFAULT NULL COMMENT 'Color Value', 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`), CONSTRAINT `FK_CAT_PRD_FLAT_1_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Flat (Store 1)'; /*!40101 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 */; INSERT INTO `catalog_product_flat_1` VALUES (1,9,'simple',NULL,NULL,'2012-02-16 00:38:47',NULL,1,NULL,NULL,0,1,NULL,0,NULL,NULL,NULL,NULL,NULL,'1550.0000','4',2,'FinePix AV100',NULL,'2022-02-26 00:00:00',NULL,NULL,'100.0000',NULL,NULL,NULL,0,NULL,'2 --I sensori ad alta risoluzione e l’elevata qualità','16010849',NULL,'/a/v/av100_front_b__1_1.jpg',NULL,NULL,'500.0000',NULL,2,'/a/v/av100_front_b__1_1.jpg',NULL,'2012-02-26 19:37:04','finepix-av100','finepix-av100.html',NULL,NULL,NULL,4,NULL,NULL,3,'Nero '),(2,9,'simple',NULL,NULL,'2012-02-16 10:27:34',NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'4',2,'FinePix AV100 Rosso',NULL,'2022-02-26 00:00:00',NULL,NULL,'100.0000',NULL,NULL,NULL,0,NULL,'I sensori ad alta risoluzione e l’elevata qualità','99999999',NULL,'/a/v/av100_front_b__1_1.jpg',NULL,NULL,NULL,NULL,2,'/a/v/av100_front_b__1_1.jpg',NULL,'2012-02-26 19:37:04','finepix-av100','finepix-av100-2.html',NULL,NULL,NULL,4,'1',NULL,10,'Fuxia'),(3,4,'simple',NULL,NULL,'2012-02-16 15:18:22',NULL,1,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'4',2,'Accessorio',NULL,NULL,NULL,NULL,'22.0000',NULL,NULL,NULL,0,NULL,'d','123',NULL,'no_selection',NULL,NULL,NULL,NULL,2,'no_selection',NULL,'2012-02-16 15:22:09','accessorio','accessorio.html',NULL,NULL,NULL,4,'1',NULL,NULL,NULL),(4,9,'simple',NULL,NULL,'2012-02-20 08:35:46',NULL,0,NULL,NULL,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'4',2,'FinePix X10',NULL,'2022-02-26 00:00:00',NULL,NULL,'500.0000',NULL,NULL,NULL,0,NULL,'Fujifilm X10 è una fotocamera estremamente compatta, dotata di caratteristiche avanzate che ricalcano le orme della pluripremiata Fujifilm FinePix X100. Il nuovo modello amplia la serie X di Fujifilm riprendendone i tratti più distintivi legati all’estetica, alla qualità dei componenti e alle funzionalità tecniche.
Le sue prestazioni comprendono un sensore EXR CMOS da 2/3\" e 12 megapixel, un obiettivo FUJINON grandangolare ad alta definizione F2 ed un teleobiettivo F2,8 con zoom manuale 4x (28–112 mm equivalente). Fujifilm X10 dispone di un luminoso mirino ottico con zoom incorporato ad ampio angolo di visione. Questo nuovo modello si contraddistingue per l’attenzione ai dettagli e per i materiali di elevata qualità della struttura e del rivestimento, che la rendono un’icona di stile e design nella sua categoria.

Zoom ottico FUJINON 4x manuale luminoso: grandangolare F2 e teleobbiettivo F2,8.
Capace di grandi prestazioni, questo versatile obiettivo permette di catturare ogni momento con una precisione straordinaria. Il nuovo zoom ottico manuale 4x è il frutto dell’attività di Ricerca & Sviluppo del reparto FUJINON, che vanta una lunga esperienza nella fornitura di obiettivi broadcasting. Con la superba luminosità F2.0-2.8 e uno zoom che va dal grandangolo 28mm al tele 112mm, quest’obiettivo offre prestazioni ad alta risoluzione ottica su tutta l\'escursione focale.

L’obiettivo è costituito da 11 lenti in 9 gruppi, compresi 3 elementi ottici costituiti da lenti asferiche e 2 elementi ottici ED a bassissima dispersione. Inoltre, il trattamento superficiale multistrato Super EBC (Electron Beam Coating) di FUJINON riduce gli effetti ghosting e flair, garantendo immagini nitide anche in condizioni di ripresa difficili.

Lo stabilizzatore ottico OIS di nuova concezione, assicura che tutte le aberrazioni dell’obiettivo siano ridotte al minimo e previene la riduzione della luce negli angoli e lungo i bordi della foto, massimizzando la risoluzione dell’interna immagine.

Il corpo dell’obiettivo interamente in metallo garantisce un azionamento più regolare dello zoom, contribuendo ad una più facile e veloce composizione della fotografia. Inoltre, l’interruttore di alimentazione della fotocamera è stato inserito nel corpo dell’obiettivo per rendere più veloce l’accensione della macchina e agevolare la gestione dello scatto.

Lo zoom ottico 4x è dotato anche della nuova tecnologia Fujifilm \"Intelligent Digital 2x Telephoto\" che raddoppia la lunghezza focale portando a oltre 8x la capacità dello zoom. Inoltre l’obiettivo è in grado di scattare fotografie in super-macro con riprese ad un solo centimetro dal soggetto. Questa funzione, combinata alla presenza di un diaframma a 7 lamelle fornisce un fantastico effetto \"bokeh\" sullo sfondo, perfetto anche per le foto di ritratto.

Mirino ottico luminoso, con ampio angolo di visione e zoom 4x.
Gli ingegneri di Fujifilm hanno impiegato un dispositivo con 3 lenti asferiche insieme a 2 prismi di vetro ad alte prestazioni per ottenere un mirino di luminosità superiore e un superba visibilità con un angolo di visione molto più ampio. Il tutto riuscendo a mantenere una dimensione molto compatta. Il mirino incorpora inoltre un meccanismo zoom 4x, in questo modo anche durante l\'utilizzo dello zoom, l\'immagine che si vede attraverso il mirino appare luminosa e nitida come ad occhio nudo.
Il mirino di Fujifilm X10 regala un gratificante feeling \"old style\" nelle riprese fotografiche e permette di ritrovare la libertà e il piacere di concentrarsi sul soggetto e di esplorare la scena da ogni angolazione.

Sensore EXR CMOS da 2/3 di pollice e 12 megapixel e processore EXR
Fujifilm X10 è dotata di un sensore EXR CMOS di nuova concezione da 2/3 di pollice e 12 megapixel che vanta un’area sensibile e un’area pixel maggiore di quella in dotazione ai modelli di punta della serie FinePix.
La dimensione del sensore unita alla tecnologia CMOS e alla tecnologia proprietaria EXR, offrono immagini nitide e brillanti in ogni condizione di ripresa.
La tecnologia EXR di Fujifilm permette di selezionare la migliore modalità di scatto tra le opzioni SN / DR / HR):
Modalità SN, elevata sensibilità e basso rumore - produce immagini chiare e nitide mantenendo basso il livello del rumore, la scelta ideale per catturare scene notturne o riprese d’interni in situazioni di scarsa illuminazione.
Modalità DR Wide Dynamic Range (ampio range dinamico) – offre una maggiore gamma dinamica (fino a 1600%) per ottenere maggiore dettaglio nelle ombre e nelle alte luci.
Modalità HR High Resolution (alta risoluzione) – sfrutta appieno la risoluzione da 12 megapixel per riprodurre i minimi dettagli nei panorami e nei ritratti, ideale nelle condizioni di luce ottimale.

La presenza del processore EXR consente lo scatto continuo fino 7 fotogrammi al secondo alla risoluzione di 12 megapixel (L size) e 10 fotogrammi al secondo riducendo la risoluzione (M size).
Grazie alla maggiore velocità di scatto che consente un ritardo di soli 0,001 secondi, X10 permette di cogliere tutti i momenti più salienti.
Il sistema AF con una matrice di contrasto da 49 punti garantisce, grazie alle caratteristiche di velocità del sensore CMOS e del processore EXR, una messa a fuoco velocissima e di estrema precisione.

Estrema qualità e design elegante \"Made in Japan\"
La struttura in lega di magnesio pressofusa e la fresatura di precisione delle ghiere e dell\'anello donano solidità e qualità, anche al tatto.
L’intero corpo di X10 è perfettamente progettato ed evidenzia la notevole qualità della lavorazione artigianale, attenta ai più piccoli dettagli. Il raffinato design \"made in Japan\" fa di X10 una fotocamere compatta estremamente attraente e dallo stile senza tempo.

Modalità versatili e creative
Fujifilm X10 offre EXR Auto che effettua il riconoscimento intelligente della scena (imposta i parametri della fotocamera per la ripresa del tramonto, dei cieli blu, dei prati verdi, delle spiagge, della neve, etc.), individua e identifica i soggetti difficili da fotografare controluce, ed ora è anche capace di rilevarne i movimenti. Il sensore intelligente EXR CMOS seleziona automaticamente la modalità di scatto migliore in base alla scena, per catturare perfettamente ogni tipo di immagine anche nelle più difficili condizioni di ripresa.
Per gli utenti più creativi X10 offre anche possibilità avanzate con le diverse modalità di scatto manuali, che consentono di agire sull’impostazione dei tempi, dei diaframmi e sulla messa fuoco.
Infine, X10 permette di registrare video dalla qualità eccezionale grazie alla capacità di effettuare riprese video full HD da 1080p.

Funzioni esclusive per il controllo della qualità dell’immagine
La gamma delle impostazioni ISO di X10 parte dal valore di 100 ISO fino ad arrivare all’elevatissima sensibilità di 12.800 ISO per condizioni di luce al limite (utilizzando una risoluzione più bassa). Se selezionando manualmente l’impostazione ISO non è possibile ottenere un’esposizione corretta, la funzione ISO Auto Setting verrà in aiuto regolando automaticamente la sensibilità della fotocamera, con valori compresi tra 100 e 3.200 ISO.
Per gli utenti che desiderano sperimentare, X10 offre l’esclusiva modalità di simulazione delle pellicole Fujifilm. Sono disponibili otto impostazioni, che comprendono Velvia / PROVIA / ASTIA capaci di riprodurre le tonalità di queste popolari pellicole invertibili (diapositive). X10 aumenta ulteriormente le possibilità creative con la modalità Monochrome che può essere modulata con l’impostazione dei filtri R / Ye/ G.
Fujifilm X10 offre anche la possibilità di regolare alcuni parametri dell’immagine con opzioni che includono \"Color\" per regolare l’intensità del colore, \"Highlight Tone\" / \"Shadow Tone\" per regolare il contrasto nelle alte luci e nelle ombre e \"Sharpness\" per indurire o ammorbidire la nitidezza.
Infine, la funzione per la riduzione del rumore (Noise Reduction Adjustment) permette di regolare il livello di intervento sul rumore presente nello scatto, con cinque differenti livelli.

Ampia gamma di accessori
Perfettamente in stile con il look and feel del corpo della X10, la custodia retrò in pelle tipo \"quick shot\" è progettata per adattarsi come un guanto alla fotocamera. Prodotta con materiale in pelle è stata realizzata prestando attenzione ai dettagli, garantendo la massima praticità e facilità di utilizzo.
Il paraluce, prodotto in metallo fresato, sarà disponibile con un anello adattatore compatibile con i filtri commerciali da 52 mm.
Infine, X10 potrà essere utilizzata con i flash EF-20 (Numero Guida: 20) e EF-42 (Numero Guida: 42).


Caratteristiche principali
• Sensore EXR CMOS da 2/3 di pollice e 12 megapixel e processore EXR
• Zoom ottico FUJINON 4x manuale: 28mm - 112mm (equivalente) e luminoso F2 - F2,8
• Stabilizzatore ottico OIS di nuova concezione
• Mirino ottico luminoso, con ampio angolo di visione e zoom 4x.
• Accensione in circa 0,8 secondi utilizzando l’interruttore on/off posto sull’obbiettivo (in modalità Quick Start)
• Motion Panorama 360 per facili riprese panoramiche a 360 gradi
• EXR Auto e modalità di scatto completamente manuali
• Video full HD da 1080p
• Sensibilità ISO fino a 12800
• Flash pop-up manuale con una distanza operativa di 7 metri
• Monitor LCD a elevato contrasto e ampio angolo di visione da 2,8\" e 460.000 punti
• Quattro funzioni di bracketing automatico per l’esposizione, la sensibilità ISO, il range dinamico e la simulazione della pellicola
• Indicatore elettronico del livello dell’orizzonte
• Riprese RAW elaborate direttamente nella fotocamera (software di conversione SilkyPix RAW fornito nella confezione)
• Corpo in lega di Magnesio Informazioni','16190120',NULL,'/f/u/fujifilmx10_01_1.jpg',NULL,NULL,NULL,NULL,2,'/f/u/fujifilmx10_01_1.jpg',NULL,'2012-02-26 19:37:04','finepix-x10','finepix-x10.html',NULL,NULL,NULL,4,'1',NULL,47,'black'),(5,9,'simple',NULL,NULL,'2012-02-20 08:35:46',NULL,0,NULL,NULL,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'4',2,'Fujifilm X-S1',NULL,'2022-02-26 00:00:00',NULL,NULL,'1550.0000',NULL,NULL,NULL,0,NULL,'Fujifilm X-S1, tutta la potenza di una Super Zoom

X-S1 rappresenta una nuova generazione di fotocamere bridge. La fotocamera è progettata e costruita in Giappone ed ogni aspetto è stato elaborato seguendo i più elevati standard di produzione. Il design esprime qualità e affidabilità anche nei dettagli: dalle ghiere in metallo allo speciale rivestimento in gomma e l’eccezionale ergonomia del corpo che risponde alle esigenze degli appassionati di fotografia più esigenti.

X-S1 è anche in grado di offrire prestazioni di alto livello e funzioni che consentono al fotografo il pieno controllo delle immagini. Risultati eccellenti sono garantiti dalle caratteristiche di punta di cui è dotata X-S1 che includono: uno zoom ottico Fujinon 26x, l’esclusivo sensore EXR ereditato dalla X10 e un\'ampia gamma di funzioni fotografiche.

Massima versatilità dell’ottica
Il fulcro di X-S1 è l’ottica stabilizzata con zoom 26x Fujinon pari a 24-624 millimetri (35mm equivalente) e una superba luminosità F2.8 – F5.6, per essere in grado di soddisfare qualsiasi esigenza fotografica.

Lo zoom ottico è ulteriormente potenziato dalla tecnologia Intelligent Digital Zoom di Fujifilm in grado di raddoppiare la capacità del teleobiettivo portando lo zoom fino a 52x (24-1248mm), senza significative perdite nella qualità delle immagini.

La costruzione dell’ottica segue i più elevati standard: l’ottica comprende 17 lenti in vetro in 12 gruppi, di cui quattro elementi asferici e due lenti ED, per catturare il soggetto con sorprendente chiarezza ed elevata risoluzione. L’impiego delle camme in metallo e la struttura interna dello zoom, consentono movimenti regolari e una maggiore facilità di utilizzo, permettendo un controllo più rapido e preciso dello zoom.

X-S1 è l’ideale anche nelle riprese macro, in modalità standard la macro si ottiene tenendo l’obiettivo alla distanza di 30cm dal soggetto, ma selezionando la Modalità Super
Macro si può arrivare fino ad 1cm. Quando la modalità è utilizzata alla massima apertura del diaframma, costituito da 9 lamelle, è possibile ottenere riprese macro con un effetto sfocato sullo sfondo.


Tecnologia EXR per ottenere il massimo
X-S1 presenta lo stesso sensore EXR CMOS da 2/3 di pollice e 12 megapixel di cui è dotata la X10, assicurando quindi immagini di alta qualità in qualsiasi condizione di luce.

L\'esclusiva tecnologia EXR CMOS di Fujifilm consente all\'utente di decidere la modalità più corretta tra le tre a disposizione a seconda delle condizioni di luce, o di lasciare che sia la fotocamera a fare la scelta più opportuna impostando la modalità Auto EXR.

Le modalità SN / DR / HR selezionabili permettono di modificare le prestazioni del sensore:
HR, High Resolution, permette di riprodurre i minimi dettagli nelle immagini ed è ideale nelle situazioni in cui le condizioni di luce sono ottimali.
DR, Wide Dynamic Range, si attiva nei casi di forte contrasto per ottenere il massimo sia nelle zone d\'ombra che di luce dell’immagine.
SN, High Sensitivity & Low Noise, è la scelta ideale per catturare scene notturne o riprese d’interni in situazioni di scarsa illuminazione.

Il sensore EXR-CMOS, abbinato al veloce processore EXR, offre un ritardo minimo di scatto di appena 0,01 sec. e permette di raggiungere una velocità di scatto continuo di circa 7 fotogrammi al secondo a piena risoluzione (L) e 10 fps a 6 megapixel (M).
Inoltre, grazie all’ampio sensore, X-S1 è in grado di riprendere video Full HD (1920 x 1080) con audio stereo a 30 fotogrammi al secondo, con la possibilità di salvare il file nel formato H.264


Facile composizione e revisione immagine
X-S1 offre una potente combinazione tra mirino elettronico di alta qualità e display LCD, garantendo la composizione della foto e la visualizzazione delle immagini estremamente semplice e veloce, in qualsiasi condizione di illuminazione.

L’ampio mirino elettronico da 0,47” e 1,44 milioni di punti con la superficie di visione di 26 gradi, consente una grande visibilità e riduce gli effetti di affaticamento agli occhi. Il mirino utilizza 2 lenti in vetro e 1 lente asferica per catturare fedelmente la luce e visualizzare con elevata luminosità l\'immagine inquadrata. L\'impiego di un pannello LCD di circa 0,47 pollici, rende semplice il controllo delle impostazioni relative alla profondità di campo, al bilanciamento del bianco o alla messa a fuoco, durante le riprese compresa la modalità Macro.

Il grande display LCD TILT da 3 pollici è inclinabile, quindi può essere utilizzato anche per riprese più creative o in situazioni difficili, posizionando la macchina a terra o sopra la testa. La risoluzione di 460.000 pixel rende più facile agli utenti navigare tra i menu, verificare l\'accuratezza dell’esposizione e rivedere le immagini scattate. Infine, la modalità Daylight permette una migliore visualizzazione dello schermo in condizioni di elevata luminosità.


Pieno controllo ed estrema versatilità
X-S1 offre eccezionali funzionalità sia agli utenti in cerca di una compatta che permetta di ottenere sempre e in modo semplice il migliore risultato sia a coloro che vogliono sperimentare e cercano la versatilità tipica delle reflex digitali.

X-S1 è in grado di rilevare il soggetto da fotografare e il tipo di scena, nonché se l\'immagine contiene una persona, se vi è una situazione di controluce e se il soggetto è fermo o in movimento.
Queste informazioni vengono trasmesse al processore EXR ed elaborate per scegliere la modalità ottimale di ripresa tra le 99 predefinite e garantire la massima qualità dell\'immagine.


La gamma di sensibilità ISO comprende i valori da 100 a 12800, questa elevata sensibilità è molto utile per riprendere con chiarezza i soggetti in condizione di luce molto scarsa, riducendo la risoluzione (S). L’utente si può anche affidare alla funzione \"Auto ISO\" che selezionerà automaticamente l\'impostazione più corretta con valori ISO compresi tra 100 e 3200.

X-S1 dispone dell’esclusiva modalità di simulazione delle pellicole Fujifilm e permette otto impostazioni che comprendono Velvia/Provia/ASTIA per riprodurre le tonalità di queste popolari pellicole invertibili (diapositive) a colori o in bianco e nero con tre effetti filtro (R / Ye/ G.).
X-S1 offre anche quattro diverse opzioni di bracketing automatico per Esposizione, Sensibilità ISO, Gamma dinamica e Simulazione pellicola.

Per i più creativi X-S1 offre anche opzioni di ripresa che consentono di agire manualmente sui tempi e i diaframmi e consente le riprese RAW e l’elaborazione dei relativi file nella fotocamera. I dati possono essere modificati nell\'esposizione e nel bilanciamento del bianco e possono essere elaborati in modalità di simulazione pellicola.

Infine X-S1 permette di agire su cinque livelli di regolazione del colore per determinarne l’intensità optando tra \"Highlight Tone\" / \"Shadow Tone\" per regolare il contrasto tra ombre e alte luci e \"Sharpness\" per accentuare o meno i margini dei pixel. La funzione “Noise Reduction Adjustment” permette di impostare su cinque livelli la riduzione del rumore, secondo la priorità desiderata per ottenere un’elevata risoluzione o una bassa rumorosità.

Caratteristiche principali Fujifilm X-S1:

• Zoom ottico Fujinon 26x pari a 24-624 millimetri
• Obiettivo luminoso F2.8 – F5.6
• Intelligent Digital Zoom per uno zoom fino a 52x (1248mm in tele)
• Stabilizzazione ottica dell\'immagine
• Sensore EXR CMOS da 2/3 di pollice e 12 megapixel
• Fino a 10 fotogrammi al secondo
• EVF da 1,44 milioni di pixel e 26 gradi,
• Schermo LCD basculante da 3” con modalità Sunny Day
• Sensibilità ISO da 100 a 12800
• Formato dei file Raw
• Video Full HD
• Modalità PASM
• Modalità Panorama 360° e Super Macro
• Modalità di simulazione pellicole Fujifilm
• Batteria al litio che offre fino a 500 scatti per carica
• Design “Made in Japan” ed elevata qualità di costruzione e nelle finiture
• Ergonomia estrema
• Paraluce in metallo e ghiera sull’obiettivo
','16199229',NULL,'/f/u/fujifilmxs1_01.jpg',NULL,NULL,NULL,NULL,2,'/f/u/fujifilmxs1_01.jpg',NULL,'2012-02-26 19:37:04','fujifilm-x-s1','fujifilm-x-s1.html',NULL,NULL,NULL,4,'1',NULL,47,'black'),(6,9,'simple',NULL,NULL,'2012-02-20 08:35:47',NULL,0,NULL,NULL,NULL,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,'4',2,'Fujifilm X100','2012-02-26 00:00:00','2022-02-26 00:00:00',NULL,NULL,'700.0000',NULL,NULL,NULL,0,NULL,'FinePix X100, la fotocamera digitale di alto livello dotata di sensore APS-C CMOS da 12,3 megapixel, obbiettivo Fujinon a focale fissa da 23mm luminosità F2 e mirino Hybrid Viewfinder di ultima generazione.
','16128335',NULL,'/f/u/fujifilmx100_01.jpg',NULL,NULL,NULL,NULL,2,'/f/u/fujifilmx100_01.jpg',NULL,'2012-02-29 09:14:40','fujifilm-x100','fujifilm-x100.html',NULL,NULL,NULL,4,'1',NULL,47,'black'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_PRODUCT_INDEX_EAV_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_IDX_EAV_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_IDX_EAV_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Index Table'; /*!40101 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,85,1,3),(2,85,1,10),(4,85,1,47),(5,85,1,47),(6,85,1,47),(1,115,1,2),(2,115,1,2),(3,115,1,2),(4,115,1,2),(5,115,1,2),(6,115,1,2),(1,142,1,17),(2,142,1,15),(4,142,1,45),(5,142,1,45),(6,142,1,49),(1,143,1,22),(2,143,1,22),(4,143,1,20),(5,143,1,25),(6,143,1,48),(1,144,1,27),(2,144,1,27),(4,144,1,46),(5,144,1,46),(6,144,1,29),(1,145,1,33),(2,145,1,33),(4,145,1,44),(5,145,1,44),(6,145,1,44),(1,149,1,35),(2,149,1,35); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_IDX_EAV_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_IDX_EAV_DEC_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_IDX_EAV_DEC_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Index Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Index Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Decimal Indexer Temp Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Index Table'; /*!40101 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,85,1,3),(2,85,1,10),(4,85,1,47),(5,85,1,47),(6,85,1,47),(1,115,1,2),(2,115,1,2),(3,115,1,2),(4,115,1,2),(5,115,1,2),(6,115,1,2),(1,142,1,17),(2,142,1,15),(4,142,1,45),(5,142,1,45),(6,142,1,49),(1,143,1,22),(2,143,1,22),(4,143,1,20),(5,143,1,25),(6,143,1,48),(1,144,1,27),(2,144,1,27),(4,144,1,46),(5,144,1,46),(6,144,1,29),(1,145,1,33),(2,145,1,33),(4,145,1,44),(5,145,1,44),(6,145,1,44),(1,149,1,35),(2,149,1,35); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product EAV Indexer Temp Table'; /*!40101 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 */; INSERT INTO `catalog_product_index_eav_tmp` VALUES (6,85,1,47),(6,115,1,2),(6,142,1,49),(6,143,1,48),(6,144,1,29),(6,145,1,44); /*!40000 ALTER TABLE `catalog_product_index_eav_tmp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalog_product_index_price` -- DROP TABLE IF EXISTS `catalog_product_index_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', 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`), CONSTRAINT `FK_CAT_PRD_IDX_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_IDX_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_IDX_PRICE_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Index Table'; /*!40101 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,'100.0000','100.0000','100.0000','100.0000',NULL),(1,1,1,2,'100.0000','100.0000','100.0000','100.0000',NULL),(1,2,1,2,'100.0000','100.0000','100.0000','100.0000',NULL),(1,3,1,2,'100.0000','100.0000','100.0000','100.0000',NULL),(3,0,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(3,1,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(3,2,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(3,3,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(4,0,1,2,'500.0000','500.0000','500.0000','500.0000',NULL),(4,1,1,2,'500.0000','500.0000','500.0000','500.0000',NULL),(4,2,1,2,'500.0000','500.0000','500.0000','500.0000',NULL),(4,3,1,2,'500.0000','500.0000','500.0000','500.0000',NULL),(5,0,1,2,'1550.0000','1550.0000','1550.0000','1550.0000',NULL),(5,1,1,2,'1550.0000','1550.0000','1550.0000','1550.0000',NULL),(5,2,1,2,'1550.0000','1550.0000','1550.0000','1550.0000',NULL),(5,3,1,2,'1550.0000','1550.0000','1550.0000','1550.0000',NULL),(6,0,1,2,'700.0000','700.0000','700.0000','700.0000',NULL),(6,1,1,2,'700.0000','700.0000','700.0000','700.0000',NULL),(6,2,1,2,'700.0000','700.0000','700.0000','700.0000',NULL),(6,3,1,2,'700.0000','700.0000','700.0000','700.0000',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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Idx'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Idx'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Opt Tmp'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Idx'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`,`selection_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Sel Tmp'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Index Price Bundle Tmp'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Index '; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`parent_id`,`child_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Aggregate Temp T'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Index Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Config Option Temp Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Indexer Table for price of downloadable products'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Index Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Final Temp Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Index Table'; /*!40101 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,'100.0000','100.0000','100.0000','100.0000',NULL),(1,1,1,2,'100.0000','100.0000','100.0000','100.0000',NULL),(1,2,1,2,'100.0000','100.0000','100.0000','100.0000',NULL),(1,3,1,2,'100.0000','100.0000','100.0000','100.0000',NULL),(2,0,1,2,'100.0000','100.0000','100.0000','100.0000',NULL),(2,1,1,2,'100.0000','100.0000','100.0000','100.0000',NULL),(2,2,1,2,'100.0000','100.0000','100.0000','100.0000',NULL),(2,3,1,2,'100.0000','100.0000','100.0000','100.0000',NULL),(3,0,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(3,1,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(3,2,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(3,3,1,2,'22.0000','22.0000','22.0000','22.0000',NULL),(4,0,1,2,'500.0000','500.0000','500.0000','500.0000',NULL),(4,1,1,2,'500.0000','500.0000','500.0000','500.0000',NULL),(4,2,1,2,'500.0000','500.0000','500.0000','500.0000',NULL),(4,3,1,2,'500.0000','500.0000','500.0000','500.0000',NULL),(5,0,1,2,'1550.0000','1550.0000','1550.0000','1550.0000',NULL),(5,1,1,2,'1550.0000','1550.0000','1550.0000','1550.0000',NULL),(5,2,1,2,'1550.0000','1550.0000','1550.0000','1550.0000',NULL),(5,3,1,2,'1550.0000','1550.0000','1550.0000','1550.0000',NULL),(6,0,1,2,'700.0000','700.0000','700.0000','700.0000',NULL),(6,1,1,2,'700.0000','700.0000','700.0000','700.0000',NULL),(6,2,1,2,'700.0000','700.0000','700.0000','700.0000',NULL),(6,3,1,2,'700.0000','700.0000','700.0000','700.0000',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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Index Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`,`option_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Aggregate Temp Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Index Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Option Temp Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Price Indexer Temp Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_IDX_TIER_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_IDX_TIER_PRICE_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_IDX_TIER_PRICE_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Tier Price Index Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_IDX_WS_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Website Index Table'; /*!40101 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,'2012-02-29',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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_LNK_LNKED_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`linked_product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_LNK_LNK_TYPE_ID_CAT_PRD_LNK_TYPE_LNK_TYPE_ID` FOREIGN KEY (`link_type_id`) REFERENCES `catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_LNK_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Product Linkage Table'; /*!40101 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 */; /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' COMMENT 'Product Link Attribute Code', `data_type` varchar(32) NOT NULL DEFAULT '' COMMENT 'Data Type', PRIMARY KEY (`product_link_attribute_id`), KEY `IDX_CATALOG_PRODUCT_LINK_ATTRIBUTE_LINK_TYPE_ID` (`link_type_id`), CONSTRAINT `FK_CAT_PRD_LNK_ATTR_LNK_TYPE_ID_CAT_PRD_LNK_TYPE_LNK_TYPE_ID` FOREIGN KEY (`link_type_id`) REFERENCES `catalog_product_link_type` (`link_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Attribute Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_AB2EFA9A14F7BCF1D5400056203D14B6` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_LNK_ATTR_DEC_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Decimal Attribute Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_LNK_ATTR_INT_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_D6D878F8BA2A4282F8DDED7E6E3DE35C` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Integer Attribute Table'; /*!40101 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 */; /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_LNK_ATTR_VCHR_LNK_ID_CAT_PRD_LNK_LNK_ID` FOREIGN KEY (`link_id`) REFERENCES `catalog_product_link` (`link_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_DEE9C4DA61CFCC01DFCF50F0D79CEA51` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Varchar Attribute Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' COMMENT 'Code', PRIMARY KEY (`link_type_id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Link Type Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_CAT_PRD_OPT_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Table'; /*!40101 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,'radio',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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_PRICE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_OPT_PRICE_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Price Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_CATALOG_PRODUCT_OPTION_TITLE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_OPT_TTL_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Title Table'; /*!40101 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 (2,1,0,'colore'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_B523E3378E8602F376CC415825576B7F` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_OPT_TYPE_PRICE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Price Table'; /*!40101 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','percent'),(2,2,0,'0.0000','percent'),(3,3,0,'0.0000','percent'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_C085B9CF2C2A302E8043FDEA1937D6A2` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_OPT_TYPE_TTL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Title Table'; /*!40101 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,'rosso'),(2,2,0,'nero'),(3,3,0,'verde'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_OPT_TYPE_VAL_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Catalog Product Option Type Value Table'; /*!40101 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,'111',0),(2,1,'112',0),(3,1,'113',0); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_RELATION_CHILD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`child_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_RELATION_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Relation Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_SPR_ATTR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_309442281DF7784210ED82B2CC51E5D5` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_SPR_ATTR_LBL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Label Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_CAT_PRD_SPR_ATTR_PRICING_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CDE8813117106CFAA3AD209358F66332` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Attribute Pricing Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CAT_PRD_SPR_LNK_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_SPR_LNK_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Super Link Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOG_PRODUCT_WEBSITE_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CAT_PRD_WS_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product To Website Linkage Table'; /*!40101 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); /*!40000 ALTER TABLE `catalog_product_website` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock` -- DROP TABLE IF EXISTS `cataloginventory_stock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', 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`), CONSTRAINT `FK_CATINV_STOCK_ITEM_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATINV_STOCK_ITEM_STOCK_ID_CATINV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `cataloginventory_stock` (`stock_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Item'; /*!40101 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,'1.0000','0.0000',0,0,0,0,'1.0000',0,'10000.0000',0,1,NULL,'0.0000',0,1,0,0,0,'0.0000',0,0),(2,2,1,'0.0000','0.0000',0,0,0,0,'1.0000',0,'10000.0000',0,0,NULL,NULL,0,1,0,1,0,'0.0000',0,0),(3,3,1,'1.0000','0.0000',0,0,0,0,'1.0000',0,'10000.0000',0,1,NULL,NULL,0,1,0,0,0,'0.0000',0,0),(4,4,1,'100.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),(5,5,1,'100.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),(6,6,1,'90.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); /*!40000 ALTER TABLE `cataloginventory_stock_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cataloginventory_stock_status` -- DROP TABLE IF EXISTS `cataloginventory_stock_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATINV_STOCK_STS_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATINV_STOCK_STS_STOCK_ID_CATINV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `cataloginventory_stock` (`stock_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATINV_STOCK_STS_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status'; /*!40101 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,'1.0000',1),(2,1,1,'0.0000',0),(3,1,1,'1.0000',1),(4,1,1,'100.0000',1),(5,1,1,'100.0000',1),(6,1,1,'90.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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Idx'; /*!40101 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,'1.0000',1),(2,1,1,'1.0000',1),(3,1,1,'1.0000',1),(4,1,1,'100.0000',1),(5,1,1,'100.0000',1),(6,1,1,'100.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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status Indexer Tmp'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', `customer_group_ids` text COMMENT 'Customer Group Ids', `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', `website_ids` text COMMENT 'Website Ids', `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=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Affected Product'; /*!40101 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_group_website` -- DROP TABLE IF EXISTS `catalogrule_group_website`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOGRULE_GROUP_WEBSITE_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATRULE_GROUP_WS_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Group Website'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', 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`), CONSTRAINT `FK_CATALOGRULE_PRODUCT_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATALOGRULE_PRODUCT_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATRULE_PRD_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATRULE_PRD_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATRULE_PRD_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATRULE_PRD_PRICE_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product Price'; /*!40101 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 `catalogsearch_fulltext` -- DROP TABLE IF EXISTS `catalogsearch_fulltext`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=73 DEFAULT CHARSET=utf8 COMMENT='Catalog search result table'; /*!40101 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 (72,6,1,'16128335|Abilitato|Taxable Goods|black|Fujifilm X100|FinePix X100, la fotocamera digitale di alto livello dotata di sensore APS-C CMOS da 12,3 megapixel, obbiettivo Fujinon a focale fissa da 23mm luminosità F2 e mirino Hybrid Viewfinder di ultima generazione.|FinePix X100, la fotocamera digitale di alto livello dotata di sensore APS-C CMOS da 12,3 megapixel, obbiettivo Fujinon a focale fissa da 23mm luminosità F2 e mirino Hybrid Viewfinder di ultima generazione. Caratteristiche principaliIl primo mirino Hybrid Viewfinder al mondo La vera soddisfazione del fotografo comincia con “il piacere di guardare il mondo attraverso il mirino della fotocamera”. Il nuovo Hybrid Viewfinder è stato progettato per ricondurre gli utenti a questa essenziale esperienza fotografica. È la perfetta combinazione di un mirino ottico a finestra di tipo “bright frame”, che si trova su molte fotocamere a pellicola 35mm, come la classica 135 o le macchine di medio formato, con un mirino elettronico, comune tra le fotocamere digitali compatte prive di specchio. Integrando un prisma e un pannello di visualizzazione LCD da 1.440.000 punti visibile nel mirino ottico Galileiano, il nuovo Hybrid Viewfinder è in grado di mostrare sia la cornice di scatto, sia vari dati relativi all’inquadratura. Naturalmente, può anche essere utilizzato come mirino elettronico di alta qualità per comporre o riprodurre gli scatti. Grazie alla possibilità di passare istantaneamente da mirino ottico a mirino elettronico con un semplice comando “one touch”, il nuovo Hybrid Viewfinder offre agli utenti maggiore libertà nella realizzazione e nel piacere della fotografia in un’ampia varietà di condizioni di scatto estreme. Il mirino Galileiano ottico con un ingrandimento x0,5 è costituito da elementi in vetro ottico con un indice rifrattivo elevato che consente basse aberrazioni cromatiche e distorsioni ottiche. In modalità mirino ottico (OVF), la luminosità della cornice e dei dati di scatto si adatta automaticamente alle condizioni di luce, assicurando che le informazioni siano sempre chiare e visibili. Inoltre, i dati di scatto sono costantemente aggiornati rispetto al cambiamento del tempo di posa, dell’esposizione, della sensibilità e degli altri parametri, in modo che l’occhio del fotografo non debba mai staccarsi dal mirino. In modalità mirino elettronico (EVF), il fotografo può visualizzare un’anteprima dello scatto o riprodurre quelli appena eseguiti con la riproduzione “attraverso il sensore” e una risoluzione di 1.440.000 di pixel. Con un movimento della leva “one-touch”, l’utente può selezionare EVF o “anteprima” e confermare le impostazioni di esposizione, profondità di campo e bilanciamento dei bianchi. Una funzionalità davvero utile specialmente quando si scattano scene macro o altre situazioni in cui avere solo un mirino ottico sarebbe problematico. Obbiettivo Fujinon 23mm F2 ad elevate prestazioniObbiettivo 23mm (equivalente ad una fotocamera 135 - 35mm) F2. 8 elementi in 6 gruppi. Una lente asferica. L’adozione di una struttura di lenti fissa di minima lunghezza focale, non solo contribuisce ad una dimensione compatta, ma elimina anche il movimento telescopico dell’obbiettivo quando si accende la fotocamera. La fotocamera è pronta a scattare subito dopo l’accensione. Sfruttando i vantaggi della focale fissa, questo obbiettivo consente una nitida risoluzione di tutta l’immagine, dal centro ai bordi. Le caratteristiche dell’obbiettivo non solo comprendono l’elevata luminosità F2, ma anche un’architettura ottica che mantiene un’elevata risoluzione anche con 1 o 2 stop chiusi. L’adozione del diaframma con 9 lame, combinata con la luminosità F2 e l’elevata qualità dell’obbiettivo, consente agli utenti di scattare bellissime fotografie con il morbido effetto circolare “fuori fuoco” (bokeh). L’opportunità di scattare in modalità Macro fino a 10 cm. di distanza, consente agli utenti di esplorare il fascino della macrofotografia divertendosi. Il filtro ND integrato (equivalente a una riduzione di 3 stop), può essere attivato o disattivato semplicemente attraverso le impostazioni della fotocamera. Sensore APS-C CMOS da 12,3 Megapixel e Processore EXRLa FinePix X100 è dotata di sensore CMOS ad alte prestazioni, ottimizzato e rinnovato esclusivamente per questo modello di fotocamera. L’ottimizzazione dell’angolo di incidenza, unitamente all’obbiettivo, anch’esso di esclusiva realizzazione, migliorano la capacità di assorbimento della luce per tutto il perimetro del sensore per un’immagine più nitida di qualità eccezionale. Durante la ripresa di video HD, la combinazione del sensore di grandi dimensioni ed il luminoso obbiettivo F2, consente agli utenti riprese con un morbido effetto fuori fuoco (bokeh), una funzionalità solitamente non disponibile sulle compatte convenzionali. La combinazione ideale dell’ottica a lunghezza focale fissa, del sensore ad alta sensibilità (circa 10 volte la sensibilità di una normale fotocamera compatta*) e del processore di elevate prestazioni consente di scattare fotografie di altissima qualità sia con impostazioni di bassa e di alta sensibilità. La sensibilità ISO è impostata normalmente da 200 a 6400, ma può essere estesa con valori da 100 fino a 12800. Il processore EXR di nuova generazione porta l’elaborazione EXR ad un nuovo livello. Combinato con il sensore ad alta sensibilità, il processore EXR è in grado di ottenere la migliore risoluzione, sensibilità e gamma dinamica mai raggiunti da una fotocamera FinePix, per ottenere sempre i migliori risultati, in ogni scatto. Il sensore CMOS ad alta velocità di lettura e il migliorato sistema di elaborazione del processore EXR contribuiscono ad accelerare le prestazioni AF, mentre la combinazione del mirino ottico con il ridottissimo tempo di reazione dell’otturatore, migliorano il risultato di ogni scatto. *Comparata ad altri modelli FinePix. DesignDesign bellissimo, ispirato alle bellezze classiche e al fascino delle tradizionali macchine a pellicola. La copertura dei comandi sulla parte superiore e la base sono realizzate con pressofusione in lega di magnesio (metodo di fusione del metallo semi-solido), per un corpo macchina solido e resistente. Tutti i selettori e le ghiere sono in metallo zigrinato. L’adozione dei tradizionali selettori “manuali” consente all’utente di confermare le correnti impostazioni senza dover accendere la fotocamera. L’ergonomia del design offre il perfetto equilibrio tra la convenienza di una compatta e la semplicità d’impiego. I comandi della fotocamera sono stati accuratamente pensati per dare all’utente un rapido e facile accesso alle impostazioni del diaframma, del tempo di posa, della compensazione, ecc… consentendo la massima espressione creativa con il minimo sforzo, abilitando la visualizzazione delle impostazioni anche a fotocamera spenta. È possibile inoltre impostare modalità “one-touch” personalizzate per il cambiamento delle impostazioni. La qualità premium è riconoscibile in ogni dettaglio. La scocca della fotocamera è rifinita con pregiati accenti effetto pelle ed è un piacere da impugnare e utilizzare. Funzionalità “Original Image Quality” migliorateOltre all’originale modalità “Simulazione Pellicola” di Fujifilm, che conferisce alle immagini il riconoscibile effetto delle pellicole Velvia, PROVIA e ASTIA, la X100 estende la capacità dell’espressione fotografica con la modalità Monochrome, che può essere ulteriormente “raffinata” con la selezione dei filtri R/Ye/G (rosso/giallo/verde). La possibilità di selezionare diverse opzioni per le ombre e per i punti luce consente agli utenti di riprodurre le vivaci tonalità dei soggetti ad elevato contrasto. Catturare immagini nel formato RAW risulta semplice poiché è previsto un pulsante RAW posto sul retro della fotocamera. Durante la ricerca del successivo luogo da fotografare, gli utenti avranno la possibilità di utilizzare la funzionalità di sviluppo RAW, integrata nella fotocamera, per “sviluppare” i dati RAW direttamente “in-camera” e fruire dell’esclusiva “image creation” di Fujifilm che si adatta ai parametri di qualità impostati nella fotocamera. Funzionalità stimolano il desiderio di catturare ogni istanteLa X100 offre agli utenti la possibilità di scegliere tra la messa a fuoco automatica EVF a 49 punti e la messa a fuoco automatica OVF a 25 punti, così come tra 5 diverse dimensioni di inquadratura in modalità EVF. Secondo le necessità, in ogni tipo di scena, la X100 offre una semplice “messa a fuoco ad hoc”. La ripresa di video HD consente agli utenti di catturare l’azione con una risoluzione dei dettagli da 720 punti. Come per gli scatti fotografici, l’utente può riprendere video con priorità di diaframma AE e ottenere un morbido effetto sfocato dello sfondo. Inoltre, la porta HDMI integrata, consente di collegare la X100 direttamente a qualsiasi TV ad alta definizione per riprodurre fotografie e video con la massima rapidità e semplicità. Grazie alla funzionalità Motion Panorama integrata, riprendere panorami a 180° e a 120° gradi è davvero semplice. Gli utenti potranno poi stampare i panorami in dettagliatissimi ingrandimenti in formato A3 e mostrare con orgoglio i risultati della fotografia panoramica di alta qualità. La X100 è dotata anche di 4 differenti opzioni di bracketing: AE, ISO, Dynamic Range e Film Simulation. Con un solo scatto dell’otturatore la macchina riprende 3 diverse immagini, in modo da non perdere mai l’attimo. Gamma di accessori PremiumCustodiaCome ideale complemento del look e della sensazione di altissima qualità del corpo della FinePix X100 è stata progettata una custodia “quick shot” in pelle stile retrò con strappo per avvolgere, come un guanto, la X100. Realizzata in pelle pregiata con grande attenzione ai dettagli, garantisce la migliore funzionalità e praticità. coprilente e anello adattatoreIn metallo finemente zigrinato, il paraluce e l’anello adattatore saranno disponibili in un set. L’anello è compatibile con i normali filtri 49 mm in commercio. TTL Flash Alla gamma dei flash TTL saranno aggiunti i modelli EF-20 (Numero guida 20) e EF-42 (Numero guida 42).||Numero di Pixel effettivi 12,3 milioni di pixel effettivi*1 Sensore CCD APS-C CMOS 23.6mm x 15.8mm Supporto memoria Memoria interna 20MB circa SD / SDHC / SDXC (UHS-I) Memory card*2 Formato file Immagine JPEG (Exif vers. 2.3)*3, RAW Video H.264 (MOV) con audio stereo Numero di pixel registrati Immagine L : (3:2) 4288 x 2848 / (16:9) 4288 x 2416 M : (3:2) 3072 x 2048 / (16:9) 3072 x 1728 S : (3:2) 2176 x 1448 / (16:9) 1920 x 1080 Motion Panorama 180° Verticale 7680 x 2160 Orizzontale 7680 x 1440 120° Verticale 5120 x 2160 Orizzontale 5120 x 1440 Ottica FUJINON lunghezza focale fissa Lunghezza focale f.23 mm (equivalente a 35 mm ) Massima apertura F2 Composizione 6 gruppi 8 lenti (inclusa una lente asferica) Apertura diaframma F2,0 - F16 Distanza di messa a fuoco Normale da 80cm circa fino all’infinito Macro 10cm - 2.0m circa Sensibilità Equivalente a ISO 200-6400 (Sensibilità standard) Equivalente a ISO 100 o 12800 (Sensibilità estesa) Disponibile controllo automatico (ISO AUTO) Controllo esposizione Misurazione TTL a 256 zone, Multi / Spot / Media Modalità di esposizione AE programmata AE Priorità di tempi AE Priorità di diaframma Manuale compensazione dell\'esposizione -2.0 EV ± 2.0EV Tempo di posa (modalità P) da 1/4 sec. a 1/4000* sec., (tutte le alter modalità) da 30 sec. a 1/4000* sec. Bulb (max.60min.) * 1/4000sec a F8 aperture minori, 1/1000 sec a F2 Scatto continuo Fino a 10 /JPEG Fino a 8 /RAW o RAW+JPEG 5 / 3 fps selezionabili Auto bracketing Braketing AE Braketing Simulazione Pellicola (Provia /Velvia/Astia/Bianco e Nero) Braketing Gamma Dinamica Braketing ISO Messa a fuoco Modalità AF Singolo/ AF Continuo /MF Indicatore di Distanza Tipo TTL a contrasto AF, Illuminatore ausiliario AF disponibile Selezione area AF Area / Multi Bilanciamento del bianco Riconoscimento automatico della scena Preimpostati Fine, ombra, luce fluorescente (diurna), luce fluorescente (calda), luce fluorescente (fredda), luce a incandescenza, subacquea, personalizzato, selezione temperatura di colore Autoscatto Approx. 10sec. / 2sec. Delay Flash Automatico (Super Intelligent Flash) modalità flash Red-eye removal OFF : Auto, Forced Flash, Suppressed Flash, Slow Synchro. Red-eye removal ON : Red-eye Reduction Auto, Red-eye Reduction & Forced Flash, Suppressed Flash, Red-eye Reduction & Slow Synchro. Contatto per Flash Esterno Si (dedicated TTL Flash compatible) Mirino Mirino Ibrido Mirino Ottico Mirino Reverso Galileiano con display con cornice luminosa elettronica Ingrandimento 0.5 x Copertura area cornice rispetto all’area effettivamente ripresa : circa. 90% Mirino Elettronico 0.47”., circa 1,440,000pixel (mirino LCD a colori) Copertura area di visione rispetto all’area effettivamente ripresa : circa. 100% Sensore prossimità occhio Punto di conversione (tra display e mirino) : circa 15mm Correzione diottrica : -2 - +1m-1 LCD monitor TFT da 2,8’’ (460.000 pixel) Registrazione Video 1280 x 720 pixels (24frames / sec.) with stereo sound Funzioni Fotografiche Selezione impostazioni personalizzate, Motion panorama, simulazione pellicola, rimozione automatica occhi rossi, memorizzazione n. scatti, visualizzazione istogramma, anteprima profondità di campo, controllo di messa a fuoco, livella elettronica, RAW one-touch (tasto di selezione rapida) Funzioni di Riproduzione Conversione file RAW, rotazione immagini, assistenza per Photobook, cancellazione immagini selezionate, ricerca immagini, riproduzione multipla immagini(microminiature), presentazione, selezione per upload, protezione, ritaglio, ridimensionamento , panorama, favorite. Altre funzioni PictBridge, Exif Print, Menù multilingue , Funzione fuso orario, Modalità silenziosa Terminale Interfaccia Digitale : USB 2.0 High-Speed Uscita HD :Connettore HDMI Mini Alimentazione Batteria ricaricabile al Litio NP-95 (inclusa) Dimensioni 126,5 (L) x 74,2 (A) x 53,9 (P) mm Peso 405 g (senza batteria e supporti di memoria) Temperatura di funzionamento 0°C - 40°C Umidità in funzionamento 10% - 80% (no condensation) Numero foto con batteria carica Approx. 300 foto Tempo di accensione Approx. 2.2sec. ( Approx 0.7sec con modalità QUICK START)*4 Accessori Inclusi Batteria ricaricabile al Litio NP-95 Carica batteria BC-65N Cinghia di trasporto Copriobiettivo Cavo USB CD-ROM Software*5 Manuale in lingua italiana Accessori Opzionali Adattatore a corrente di rete AC-5VX Connettore di alimentazione CP-95B Carica batterie BC-65S Paraluce LH-X100 Borsa in pelle LC-X100 Anello adattatore AR-X100 Flash EF-42/EF-202 *1 Numero di pixel effettivi : numero di pixel sul sensore dell\'immagine che ricevono la luce in ingresso attraverso l’ottica e che sono effettivamente riflessi nei dati di output finale dell’immagine. *2 Controllare il sito internet Fujifilm per verificare la compatibilità con le schede di memoria. *3 Il file Exif 2.3 contiene numerose informazioni dello scatto, utili per la stampa. *4 Valutato con metodo FUJIFILM *5 Sistemi operativi compatibili con il software Viewer : Windows7 / Vista / XP, Mac OS X 10.9 - 10.6Convertitore di File Raw File : Windows7 / Vista / XP|700|1'),(71,5,1,'16199229|Abilitato|Taxable Goods|black|Fujifilm X-S1|Fujifilm X-S1, tutta la potenza di una Super ZoomX-S1 rappresenta una nuova generazione di fotocamere bridge. La fotocamera è progettata e costruita in Giappone ed ogni aspetto è stato elaborato seguendo i più elevati standard di produzione. Il design esprime qualità e affidabilità anche nei dettagli: dalle ghiere in metallo allo speciale rivestimento in gomma e l’eccezionale ergonomia del corpo che risponde alle esigenze degli appassionati di fotografia più esigenti.X-S1 è anche in grado di offrire prestazioni di alto livello e funzioni che consentono al fotografo il pieno controllo delle immagini. Risultati eccellenti sono garantiti dalle caratteristiche di punta di cui è dotata X-S1 che includono: uno zoom ottico Fujinon 26x, l’esclusivo sensore EXR ereditato dalla X10 e un\'ampia gamma di funzioni fotografiche.Massima versatilità dell’otticaIl fulcro di X-S1 è l’ottica stabilizzata con zoom 26x Fujinon pari a 24-624 millimetri (35mm equivalente) e una superba luminosità F2.8 – F5.6, per essere in grado di soddisfare qualsiasi esigenza fotografica.Lo zoom ottico è ulteriormente potenziato dalla tecnologia Intelligent Digital Zoom di Fujifilm in grado di raddoppiare la capacità del teleobiettivo portando lo zoom fino a 52x (24-1248mm), senza significative perdite nella qualità delle immagini.La costruzione dell’ottica segue i più elevati standard: l’ottica comprende 17 lenti in vetro in 12 gruppi, di cui quattro elementi asferici e due lenti ED, per catturare il soggetto con sorprendente chiarezza ed elevata risoluzione. L’impiego delle camme in metallo e la struttura interna dello zoom, consentono movimenti regolari e una maggiore facilità di utilizzo, permettendo un controllo più rapido e preciso dello zoom.X-S1 è l’ideale anche nelle riprese macro, in modalità standard la macro si ottiene tenendo l’obiettivo alla distanza di 30cm dal soggetto, ma selezionando la Modalità SuperMacro si può arrivare fino ad 1cm. Quando la modalità è utilizzata alla massima apertura del diaframma, costituito da 9 lamelle, è possibile ottenere riprese macro con un effetto sfocato sullo sfondo.Tecnologia EXR per ottenere il massimoX-S1 presenta lo stesso sensore EXR CMOS da 2/3 di pollice e 12 megapixel di cui è dotata la X10, assicurando quindi immagini di alta qualità in qualsiasi condizione di luce.L\'esclusiva tecnologia EXR CMOS di Fujifilm consente all\'utente di decidere la modalità più corretta tra le tre a disposizione a seconda delle condizioni di luce, o di lasciare che sia la fotocamera a fare la scelta più opportuna impostando la modalità Auto EXR.Le modalità SN / DR / HR selezionabili permettono di modificare le prestazioni del sensore:HR, High Resolution, permette di riprodurre i minimi dettagli nelle immagini ed è ideale nelle situazioni in cui le condizioni di luce sono ottimali. DR, Wide Dynamic Range, si attiva nei casi di forte contrasto per ottenere il massimo sia nelle zone d\'ombra che di luce dell’immagine.SN, High Sensitivity & Low Noise, è la scelta ideale per catturare scene notturne o riprese d’interni in situazioni di scarsa illuminazione. Il sensore EXR-CMOS, abbinato al veloce processore EXR, offre un ritardo minimo di scatto di appena 0,01 sec. e permette di raggiungere una velocità di scatto continuo di circa 7 fotogrammi al secondo a piena risoluzione (L) e 10 fps a 6 megapixel (M).Inoltre, grazie all’ampio sensore, X-S1 è in grado di riprendere video Full HD (1920 x 1080) con audio stereo a 30 fotogrammi al secondo, con la possibilità di salvare il file nel formato H.264Facile composizione e revisione immagineX-S1 offre una potente combinazione tra mirino elettronico di alta qualità e display LCD, garantendo la composizione della foto e la visualizzazione delle immagini estremamente semplice e veloce, in qualsiasi condizione di illuminazione.L’ampio mirino elettronico da 0,47” e 1,44 milioni di punti con la superficie di visione di 26 gradi, consente una grande visibilità e riduce gli effetti di affaticamento agli occhi. Il mirino utilizza 2 lenti in vetro e 1 lente asferica per catturare fedelmente la luce e visualizzare con elevata luminosità l\'immagine inquadrata. L\'impiego di un pannello LCD di circa 0,47 pollici, rende semplice il controllo delle impostazioni relative alla profondità di campo, al bilanciamento del bianco o alla messa a fuoco, durante le riprese compresa la modalità Macro.Il grande display LCD TILT da 3 pollici è inclinabile, quindi può essere utilizzato anche per riprese più creative o in situazioni difficili, posizionando la macchina a terra o sopra la testa. La risoluzione di 460.000 pixel rende più facile agli utenti navigare tra i menu, verificare l\'accuratezza dell’esposizione e rivedere le immagini scattate. Infine, la modalità Daylight permette una migliore visualizzazione dello schermo in condizioni di elevata luminosità.Pieno controllo ed estrema versatilitàX-S1 offre eccezionali funzionalità sia agli utenti in cerca di una compatta che permetta di ottenere sempre e in modo semplice il migliore risultato sia a coloro che vogliono sperimentare e cercano la versatilità tipica delle reflex digitali.X-S1 è in grado di rilevare il soggetto da fotografare e il tipo di scena, nonché se l\'immagine contiene una persona, se vi è una situazione di controluce e se il soggetto è fermo o in movimento. Queste informazioni vengono trasmesse al processore EXR ed elaborate per scegliere la modalità ottimale di ripresa tra le 99 predefinite e garantire la massima qualità dell\'immagine.La gamma di sensibilità ISO comprende i valori da 100 a 12800, questa elevata sensibilità è molto utile per riprendere con chiarezza i soggetti in condizione di luce molto scarsa, riducendo la risoluzione (S). L’utente si può anche affidare alla funzione \"Auto ISO\" che selezionerà automaticamente l\'impostazione più corretta con valori ISO compresi tra 100 e 3200.X-S1 dispone dell’esclusiva modalità di simulazione delle pellicole Fujifilm e permette otto impostazioni che comprendono Velvia/Provia/ASTIA per riprodurre le tonalità di queste popolari pellicole invertibili (diapositive) a colori o in bianco e nero con tre effetti filtro (R / Ye/ G.). X-S1 offre anche quattro diverse opzioni di bracketing automatico per Esposizione, Sensibilità ISO, Gamma dinamica e Simulazione pellicola.Per i più creativi X-S1 offre anche opzioni di ripresa che consentono di agire manualmente sui tempi e i diaframmi e consente le riprese RAW e l’elaborazione dei relativi file nella fotocamera. I dati possono essere modificati nell\'esposizione e nel bilanciamento del bianco e possono essere elaborati in modalità di simulazione pellicola.Infine X-S1 permette di agire su cinque livelli di regolazione del colore per determinarne l’intensità optando tra \"Highlight Tone\" / \"Shadow Tone\" per regolare il contrasto tra ombre e alte luci e \"Sharpness\" per accentuare o meno i margini dei pixel. La funzione “Noise Reduction Adjustment” permette di impostare su cinque livelli la riduzione del rumore, secondo la priorità desiderata per ottenere un’elevata risoluzione o una bassa rumorosità.Caratteristiche principali Fujifilm X-S1:• Zoom ottico Fujinon 26x pari a 24-624 millimetri • Obiettivo luminoso F2.8 – F5.6• Intelligent Digital Zoom per uno zoom fino a 52x (1248mm in tele)• Stabilizzazione ottica dell\'immagine• Sensore EXR CMOS da 2/3 di pollice e 12 megapixel • Fino a 10 fotogrammi al secondo• EVF da 1,44 milioni di pixel e 26 gradi,• Schermo LCD basculante da 3” con modalità Sunny Day• Sensibilità ISO da 100 a 12800• Formato dei file Raw• Video Full HD• Modalità PASM• Modalità Panorama 360° e Super Macro• Modalità di simulazione pellicole Fujifilm• Batteria al litio che offre fino a 500 scatti per carica• Design “Made in Japan” ed elevata qualità di costruzione e nelle finiture• Ergonomia estrema• Paraluce in metallo e ghiera sull’obiettivo|Pixel effettivi 12,0 milioni di pixel Sensore EXR CMOS da 2/3 di pollice con filtro a colori primari Supporto memoria SD/ SDHC/ SDXC(UHS-I) - Memoria interna 26 MB circa Formato file Immagine: JPEG (Exif Ver 2.3), RAW (RAF format), RAW+JPEG Video: H.264 (MOV) con audio stereo Numero di pixel registrati L: 4000 x 3000 4000 x 2664 4000 x 2248 2992 x 2992 M: 2816 x 2112 2816 x 1864 2816 x 1584 2112 x 2112 S: 2048 x 1536 2048 x 1360 1920 x 1080 1536 x 1536 Motion Panorama 360?Verticale 11520 x 1624 Orizzontale 11520 x 1080 180?Verticale 5760 x 1624 Orizzontale 5760 x 1080 120?Verticale 3840 x 1624 Orizzontale 3840 x 1080 Obiettivo Zoom ottico Fujinon 26x F. 2,8 (Wide) - F.5,6 (Tele) (equivalente a 24-624 mm nel formato 35 mm ) Lunghezza focale f=6.1 – 158.6mm, 24-624mm (equivalente a 35mm) Gruppo Lenti 12 gruppi 17 lenti (4 asferiche e 2ED) Zoom Zoom digitale: 2X (1.4) (fino a 52x in combinazione con lo zoom ottico) Apertura diaframma F2.8-F11(grandangolo) F5.6-F11(tele) 1/3EV step (diaframma a 9 lamelle) Distanza di messa a fuoco Normale: Grandangolo: da circa 30 cm all’infinito – Tele: da circa 2 m all’infinito Macro: Grandangolo: da circa 7 cm a 3 m - Tele: da circa 2 m a 3,5 m Super Macro : da circa 1cm a 1m Sensibilità Auto (400) / Auto (800) / Auto (1600) / Auto (3200) Equivalente a ISO 100/200/250/320/400/500/640/800/1000/1250/1600/2000/2500/3200/4000*/5000*/6400*/12800* *ISO 4000/5000/6400:modalità M o inferiori, ISO 12800:modalità S Controllo esposizione Misurazione TTL 256 zone, Spot, Multi, Average Modalità di esposizione AE programmata – AE Priorità di tempi - AE Priorità di diaframma, Manuale Modalità di ripresa SP: Natural Light, Natural Light con flash, Ritratto, Miglioramento Ritratto, Cane, Gatto, Paesaggio, Sport, Notte, Notte (cavalletto), Fuochi d’artificio, Tramonto, Neve, Spiaggia, Party, Fiori Macro, Testo. Modalità DIAL: EXR, AUTO, Adv., SP, C3, C2, C1, M, A, S, P. Stabilizzatore di immagine Meccanico sull’ottica Face Detection Si Compensazione dell‘esposizione -2.0EV - +2.0EV 1/3EV Step Velocità otturatore (Auto) da 1/4 sec. a 1/4000 sec., (tutte le altre modalità) da 30 sec. a 1/4000 sec. Scatto continuoTOP: Super High: circa 10 fps (M,S) High: circa 7fps (L,M,S) Middle: circa 5fps (L,M,S) Low: circa 3 fps (L,M,S) * sono raccomandate schede di memoria SD classe 4 (4 MB/sec.) o superiori * il numero massimo di scatti continui per ogni raffica varia a seconda delle condizioni di ripresa BEST FRAME: Super High: circa 10fps 8/16 frames (Size M,S) High: circa 7fps 8frames (Size L,M,S)/16 frames (Size M,S) Middle: circa 5fps 8frames (Size L,M,S)/16 frames (Size M,S) Low: circa 3fps 8frames (Size L,M,S)/16 frames (Size ,M,S) Auto Bracketing Bracketing AE: ±1/3EV,±2/3EV,±1EV Braketing Simulazione Pellicola: PROVIA/standard, VELVIA/vivid , ASTIA/soft Braketing Gamma Dinamica : 100%/200%/400% Braketing ISO: ±1/3EV,±2/3EV,±1EV Messa a fuoco AF Singolo/AF Continuo (EXR Auto, Video) AF Manuale (modalità One-Push AF inclusa) AF contrasto TTL, Illuminatore AF Multi, Area, Tracking Bilanciamento del bianco Automatico con riconoscimento della scena Selezionabile: sereno, ombra, luce fluorescente (diurna), luce fluorescente (calda), luce fluorescente (fredda), luce a incandescenza, personalizzato, selezione temperatura colore (2,500K ~ 10,000K) Autoscatto 10 sec./ 2 sec., Rilascio automatico Flash Automatico (Super Intelligent Flash) Copertura flash (ISO AUTO (800)) Grandangolo: circa 30cm - 8.0m Tele: circa 2.0m – 4.0m Modalità di funzionamento: Rimozione occhi rossi Disattivata (OFF): Auto, flash forzato, flash disattivato, sincronizzazione tempi lunghi Rimozione occhi rossi Attivata (ON): Riduzione occhi rossi automatica, Riduzione occhi rossi & forzato, flash disattivato, Riduzione occhi rossi & sincronizzazione tempi lunghi Contatto per Flash Esterno Sì Mirino elettronico 0,47” circa 1440,000 pixel – copertura 100% ca - aggiustamento diottrico: -5 +3m-1(dpt) LCD Monitor TFT da 3.0’’ (460.000 pixel) - copertura 100% circa Registrazione Video 1920 x 1080 pixels / 1280 x 720 pixels/ 640 x 480 pixels (30 frames / sec.) con audio stereo - Zoom ottico (manuale) disponibile durante la registrazione video Funzioni Fotografiche Modalità EXR (EXR Auto / Alta Risoluzione / Alta Sensibilità & Basso Rumore / Gamma Dinamica), Face recognition, Face Detection, Rimozione Occhi Rossi Auto, Simulazione pellicola, Reticolo inquadratura, Memoria numero fotogramma, Visualizzazione istogrammi, Modalità Avanzate (Motion panorama 360°, Pro focus, Pro low light), Riprese Video Alta Velocità (70/ 120/ 200 frames/sec.), Livello Elettronico, One-touch RAW, Anti Mosso Avanzato, Focus check, Spazio di selezione del colore. Funzioni di Riproduzione Face Detection, Rimozione occhi rossi Auto, Visualizzazione fotogrammi multipli con Micro Miniature, Protezione, Ritaglio immagine, Ridimensiona immagine, Ruota immagine, Slide show (presentazione), Registrazione memo vocali, Visualizzazione istogrammi, Avviso sovraesposizione, Guida album (Photobook), Ricerca immagine, Preferiti, Mark Upload, Panorama, Cancella immagini selezionate, conversione Raw. Altre funzioni PictBridge, Exif Print, 35 lingue, Fuso orario, Modalità Silenziosa, Suono otturatore. Uscita video NTSC / PAL selezionabile con audio mono Interfaccia USB 2.0 High-Speed Uscita HDMI Connettore HDMI Mini Microfono esterno Ø 3,5 Mini con audio stereo Alimentazione Batteria ricaricabile al Litio NP-95 (inclusa) Autonomia batterie 460 scatti circa (standard CIPA) – 500 scatti circa con utilizzo EVF Dimensioni 135 (W) x 107 (H) x 149 (D) mm Peso circa 945g (inclusa batteria e scheda di memoria) circa 905g (senza batteria e scheda di memoria) Accessori inclusi Batteria ricaricabile al Litio NP-95 – Carica batteria BC-65N - Cinghia di trasporto – Copriobiettivo – Cinghietta per copriobiettivo – Paraluce - Cavo USB - CD-ROM Software - Manuale in lingua italiana. Accessori Opzionali Batteria ricaricabile al Litio NP-95 - Carica batteria BC-65N - Flash EF-42/EF-20 – Scatto a distanza (Remote release) RR-80|1550|1'),(67,1,1,'16010849|Nero |Abilitato|Taxable Goods|FinePix AV100|1-- La fotocamera Finepix AV100 è dotata di ottica Fujinon 3x e sensore CCD da 12 Megapixel.I sensori ad alta risoluzione e l’elevata qualità dell’ottica Fujinon sono combinati con le impostazioni di high sensitivity (fino a ISO 3200) per garantire in ogni condizione immagini definite e pulite, ideali per la stampa e per l’ingrandimento digitale, senzacompromessi rispetto alla qualità. La Digital Image Stabilization è stata adottata per ottenere immagini più nitide con un ridotto effetto “mosso” dando agli utenti la possibilità di cogliere ogni occasione di scatto.L’alta definizioneL’intera gamma di prodotti della serie FinePix A consentirà di riprendere sensazionali video HD e fotografie FULL HD in formato 16:9. Potrete riprodurle su un televisore HD ready* (o sul PC di casa) e rimanere a bocca aperta, guardando le vostre fotografie prendere vita in tutto il loro splendore.*Per la connessione a un TV HD-Ready, sarà necessario un HD Player (HDP-L1), accessorio opzionale.Messa a fuoco del visoLe fotocamere della serie A sono dotate della tecnologia Face Detection di Fujifilm, che assicura impostazioni ottimizzate rispetto ai soggetti presenti nell’inquadratura, ideale per riprendere primi piani o piccoli gruppi di persone. Gli scatti “rubati” in condizioni di luce scarsa sono resi possibili dalla modalità Natural Light, che aumentando automaticamente la sensibilità ISO ed escludendo il flash garantisce un risultato discreto e non intrusivo.Per quelle occasioni dove la sola fotografia non rende giustizia all’importanza dell’evento, l’HD Movie Mode with sound (modalità video ad alta definizione con audio) consente la registrazione video di preziosi ricordi che potranno essere visti e rivisti nella straordinaria risoluzione HD. La ricerca delle immaginiFujifilm ha creato la nuova funzione Picture Search (Ricerca immagine) che consente di trovare lefotografie in modo facile e veloce. È possibile cercare le immagini secondo la modalità “Scene Modes”con cui è stata scattata la fotografia. Ad esempio, selezionando “Ritratti”, sarà possibile visualizzaretutte le fotografie scattate con quella modalità, o “Macro” per visualizzare i relativi scatti.Questa funzionalità consentirà di risparmiare tempo nella ricerca di una particolare fotografia tratutte immagini presenti.Specifiche di base:• Semplice da utilizzare – ideale come prima fotocamera• Scene Recognition Auto (SR AUTO) – Riconoscimento automatico della scena ripresa• Tecnologia “Face Detection” con rimozione automatica degli occhi rossi• Risoluzione HD 720p per la ripresa di immagini (in formato 16 : 9) e per le riprese video• Funzione “Image search” - per “volti” (Face), per modalità (Scene), per data (Date) e per tipo di file (data type).• Modalità “Panorama Shooting” (Scatto Panoramico)• Sensibilità ISO 1600 a piena risoluzione e fino a ISO 3200 con risoluzione 3 MP• Alimentazione con batterie AA|2 --|100|1'),(68,2,1,'99999999|Fuxia|Abilitato|Taxable Goods|FinePix AV100 Rosso|La fotocamera Finepix AV100 è dotata di ottica Fujinon 3x e sensore CCD da 12 Megapixel.I sensori ad alta risoluzione e l’elevata qualità dell’ottica Fujinon sono combinati con le impostazioni di high sensitivity (fino a ISO 3200) per garantire in ogni condizione immagini definite e pulite, ideali per la stampa e per l’ingrandimento digitale, senzacompromessi rispetto alla qualità. La Digital Image Stabilization è stata adottata per ottenere immagini più nitide con un ridotto effetto “mosso” dando agli utenti la possibilità di cogliere ogni occasione di scatto.L’alta definizioneL’intera gamma di prodotti della serie FinePix A consentirà di riprendere sensazionali video HD e fotografie FULL HD in formato 16:9. Potrete riprodurle su un televisore HD ready* (o sul PC di casa) e rimanere a bocca aperta, guardando le vostre fotografie prendere vita in tutto il loro splendore.*Per la connessione a un TV HD-Ready, sarà necessario un HD Player (HDP-L1), accessorio opzionale.Messa a fuoco del visoLe fotocamere della serie A sono dotate della tecnologia Face Detection di Fujifilm, che assicura impostazioni ottimizzate rispetto ai soggetti presenti nell’inquadratura, ideale per riprendere primi piani o piccoli gruppi di persone. Gli scatti “rubati” in condizioni di luce scarsa sono resi possibili dalla modalità Natural Light, che aumentando automaticamente la sensibilità ISO ed escludendo il flash garantisce un risultato discreto e non intrusivo.Per quelle occasioni dove la sola fotografia non rende giustizia all’importanza dell’evento, l’HD Movie Mode with sound (modalità video ad alta definizione con audio) consente la registrazione video di preziosi ricordi che potranno essere visti e rivisti nella straordinaria risoluzione HD. La ricerca delle immaginiFujifilm ha creato la nuova funzione Picture Search (Ricerca immagine) che consente di trovare lefotografie in modo facile e veloce. È possibile cercare le immagini secondo la modalità “Scene Modes”con cui è stata scattata la fotografia. Ad esempio, selezionando “Ritratti”, sarà possibile visualizzaretutte le fotografie scattate con quella modalità, o “Macro” per visualizzare i relativi scatti.Questa funzionalità consentirà di risparmiare tempo nella ricerca di una particolare fotografia tratutte immagini presenti.Specifiche di base:• Semplice da utilizzare – ideale come prima fotocamera• Scene Recognition Auto (SR AUTO) – Riconoscimento automatico della scena ripresa• Tecnologia “Face Detection” con rimozione automatica degli occhi rossi• Risoluzione HD 720p per la ripresa di immagini (in formato 16 : 9) e per le riprese video• Funzione “Image search” - per “volti” (Face), per modalità (Scene), per data (Date) e per tipo di file (data type).• Modalità “Panorama Shooting” (Scatto Panoramico)• Sensibilità ISO 1600 a piena risoluzione e fino a ISO 3200 con risoluzione 3 MP• Alimentazione con batterie AA||100|1'),(69,3,1,'123|Abilitato|Taxable Goods|Accessorio|desc|d|22|1'),(70,4,1,'16190120|Abilitato|Taxable Goods|black|FinePix X10|Fujifilm X10 è una fotocamera estremamente compatta, dotata di caratteristiche avanzate che ricalcano le orme della pluripremiata Fujifilm FinePix X100. Il nuovo modello amplia la serie X di Fujifilm riprendendone i tratti più distintivi legati all’estetica, alla qualità dei componenti e alle funzionalità tecniche.Le sue prestazioni comprendono un sensore EXR CMOS da 2/3\" e 12 megapixel, un obiettivo FUJINON grandangolare ad alta definizione F2 ed un teleobiettivo F2,8 con zoom manuale 4x (28–112 mm equivalente). Fujifilm X10 dispone di un luminoso mirino ottico con zoom incorporato ad ampio angolo di visione. Questo nuovo modello si contraddistingue per l’attenzione ai dettagli e per i materiali di elevata qualità della struttura e del rivestimento, che la rendono un’icona di stile e design nella sua categoria.Zoom ottico FUJINON 4x manuale luminoso: grandangolare F2 e teleobbiettivo F2,8.Capace di grandi prestazioni, questo versatile obiettivo permette di catturare ogni momento con una precisione straordinaria. Il nuovo zoom ottico manuale 4x è il frutto dell’attività di Ricerca & Sviluppo del reparto FUJINON, che vanta una lunga esperienza nella fornitura di obiettivi broadcasting. Con la superba luminosità F2.0-2.8 e uno zoom che va dal grandangolo 28mm al tele 112mm, quest’obiettivo offre prestazioni ad alta risoluzione ottica su tutta l\'escursione focale.L’obiettivo è costituito da 11 lenti in 9 gruppi, compresi 3 elementi ottici costituiti da lenti asferiche e 2 elementi ottici ED a bassissima dispersione. Inoltre, il trattamento superficiale multistrato Super EBC (Electron Beam Coating) di FUJINON riduce gli effetti ghosting e flair, garantendo immagini nitide anche in condizioni di ripresa difficili.Lo stabilizzatore ottico OIS di nuova concezione, assicura che tutte le aberrazioni dell’obiettivo siano ridotte al minimo e previene la riduzione della luce negli angoli e lungo i bordi della foto, massimizzando la risoluzione dell’interna immagine.Il corpo dell’obiettivo interamente in metallo garantisce un azionamento più regolare dello zoom, contribuendo ad una più facile e veloce composizione della fotografia. Inoltre, l’interruttore di alimentazione della fotocamera è stato inserito nel corpo dell’obiettivo per rendere più veloce l’accensione della macchina e agevolare la gestione dello scatto. Lo zoom ottico 4x è dotato anche della nuova tecnologia Fujifilm \"Intelligent Digital 2x Telephoto\" che raddoppia la lunghezza focale portando a oltre 8x la capacità dello zoom. Inoltre l’obiettivo è in grado di scattare fotografie in super-macro con riprese ad un solo centimetro dal soggetto. Questa funzione, combinata alla presenza di un diaframma a 7 lamelle fornisce un fantastico effetto \"bokeh\" sullo sfondo, perfetto anche per le foto di ritratto. Mirino ottico luminoso, con ampio angolo di visione e zoom 4x.Gli ingegneri di Fujifilm hanno impiegato un dispositivo con 3 lenti asferiche insieme a 2 prismi di vetro ad alte prestazioni per ottenere un mirino di luminosità superiore e un superba visibilità con un angolo di visione molto più ampio. Il tutto riuscendo a mantenere una dimensione molto compatta. Il mirino incorpora inoltre un meccanismo zoom 4x, in questo modo anche durante l\'utilizzo dello zoom, l\'immagine che si vede attraverso il mirino appare luminosa e nitida come ad occhio nudo.Il mirino di Fujifilm X10 regala un gratificante feeling \"old style\" nelle riprese fotografiche e permette di ritrovare la libertà e il piacere di concentrarsi sul soggetto e di esplorare la scena da ogni angolazione.Sensore EXR CMOS da 2/3 di pollice e 12 megapixel e processore EXRFujifilm X10 è dotata di un sensore EXR CMOS di nuova concezione da 2/3 di pollice e 12 megapixel che vanta un’area sensibile e un’area pixel maggiore di quella in dotazione ai modelli di punta della serie FinePix.La dimensione del sensore unita alla tecnologia CMOS e alla tecnologia proprietaria EXR, offrono immagini nitide e brillanti in ogni condizione di ripresa.La tecnologia EXR di Fujifilm permette di selezionare la migliore modalità di scatto tra le opzioni SN / DR / HR):Modalità SN, elevata sensibilità e basso rumore - produce immagini chiare e nitide mantenendo basso il livello del rumore, la scelta ideale per catturare scene notturne o riprese d’interni in situazioni di scarsa illuminazione. Modalità DR Wide Dynamic Range (ampio range dinamico) – offre una maggiore gamma dinamica (fino a 1600%) per ottenere maggiore dettaglio nelle ombre e nelle alte luci.Modalità HR High Resolution (alta risoluzione) – sfrutta appieno la risoluzione da 12 megapixel per riprodurre i minimi dettagli nei panorami e nei ritratti, ideale nelle condizioni di luce ottimale.La presenza del processore EXR consente lo scatto continuo fino 7 fotogrammi al secondo alla risoluzione di 12 megapixel (L size) e 10 fotogrammi al secondo riducendo la risoluzione (M size).Grazie alla maggiore velocità di scatto che consente un ritardo di soli 0,001 secondi, X10 permette di cogliere tutti i momenti più salienti.Il sistema AF con una matrice di contrasto da 49 punti garantisce, grazie alle caratteristiche di velocità del sensore CMOS e del processore EXR, una messa a fuoco velocissima e di estrema precisione.Estrema qualità e design elegante \"Made in Japan\"La struttura in lega di magnesio pressofusa e la fresatura di precisione delle ghiere e dell\'anello donano solidità e qualità, anche al tatto.L’intero corpo di X10 è perfettamente progettato ed evidenzia la notevole qualità della lavorazione artigianale, attenta ai più piccoli dettagli. Il raffinato design \"made in Japan\" fa di X10 una fotocamere compatta estremamente attraente e dallo stile senza tempo.Modalità versatili e creativeFujifilm X10 offre EXR Auto che effettua il riconoscimento intelligente della scena (imposta i parametri della fotocamera per la ripresa del tramonto, dei cieli blu, dei prati verdi, delle spiagge, della neve, etc.), individua e identifica i soggetti difficili da fotografare controluce, ed ora è anche capace di rilevarne i movimenti. Il sensore intelligente EXR CMOS seleziona automaticamente la modalità di scatto migliore in base alla scena, per catturare perfettamente ogni tipo di immagine anche nelle più difficili condizioni di ripresa.Per gli utenti più creativi X10 offre anche possibilità avanzate con le diverse modalità di scatto manuali, che consentono di agire sull’impostazione dei tempi, dei diaframmi e sulla messa fuoco.Infine, X10 permette di registrare video dalla qualità eccezionale grazie alla capacità di effettuare riprese video full HD da 1080p.Funzioni esclusive per il controllo della qualità dell’immagineLa gamma delle impostazioni ISO di X10 parte dal valore di 100 ISO fino ad arrivare all’elevatissima sensibilità di 12.800 ISO per condizioni di luce al limite (utilizzando una risoluzione più bassa). Se selezionando manualmente l’impostazione ISO non è possibile ottenere un’esposizione corretta, la funzione ISO Auto Setting verrà in aiuto regolando automaticamente la sensibilità della fotocamera, con valori compresi tra 100 e 3.200 ISO.Per gli utenti che desiderano sperimentare, X10 offre l’esclusiva modalità di simulazione delle pellicole Fujifilm. Sono disponibili otto impostazioni, che comprendono Velvia / PROVIA / ASTIA capaci di riprodurre le tonalità di queste popolari pellicole invertibili (diapositive). X10 aumenta ulteriormente le possibilità creative con la modalità Monochrome che può essere modulata con l’impostazione dei filtri R / Ye/ G.Fujifilm X10 offre anche la possibilità di regolare alcuni parametri dell’immagine con opzioni che includono \"Color\" per regolare l’intensità del colore, \"Highlight Tone\" / \"Shadow Tone\" per regolare il contrasto nelle alte luci e nelle ombre e \"Sharpness\" per indurire o ammorbidire la nitidezza.Infine, la funzione per la riduzione del rumore (Noise Reduction Adjustment) permette di regolare il livello di intervento sul rumore presente nello scatto, con cinque differenti livelli.Ampia gamma di accessoriPerfettamente in stile con il look and feel del corpo della X10, la custodia retrò in pelle tipo \"quick shot\" è progettata per adattarsi come un guanto alla fotocamera. Prodotta con materiale in pelle è stata realizzata prestando attenzione ai dettagli, garantendo la massima praticità e facilità di utilizzo.Il paraluce, prodotto in metallo fresato, sarà disponibile con un anello adattatore compatibile con i filtri commerciali da 52 mm.Infine, X10 potrà essere utilizzata con i flash EF-20 (Numero Guida: 20) e EF-42 (Numero Guida: 42).Caratteristiche principali • Sensore EXR CMOS da 2/3 di pollice e 12 megapixel e processore EXR • Zoom ottico FUJINON 4x manuale: 28mm - 112mm (equivalente) e luminoso F2 - F2,8 • Stabilizzatore ottico OIS di nuova concezione • Mirino ottico luminoso, con ampio angolo di visione e zoom 4x. • Accensione in circa 0,8 secondi utilizzando l’interruttore on/off posto sull’obbiettivo (in modalità Quick Start) • Motion Panorama 360 per facili riprese panoramiche a 360 gradi • EXR Auto e modalità di scatto completamente manuali • Video full HD da 1080p • Sensibilità ISO fino a 12800 • Flash pop-up manuale con una distanza operativa di 7 metri • Monitor LCD a elevato contrasto e ampio angolo di visione da 2,8\" e 460.000 punti • Quattro funzioni di bracketing automatico per l’esposizione, la sensibilità ISO, il range dinamico e la simulazione della pellicola • Indicatore elettronico del livello dell’orizzonte • Riprese RAW elaborate direttamente nella fotocamera (software di conversione SilkyPix RAW fornito nella confezione) • Corpo in lega di Magnesio Informazioni|Numero di Pixel effettivi 12,0 milioni di pixel Sensore EXR CMOS da 2/3 di pollice con filtro a colori primari Supporto memoria SD/ SDHC/ SDXC(UHS-I) Formato file Immagine: JPEG (Exif Ver 2.3), RAW (RAF format), RAW+JPEG Video: H.264 (MOV) con audio stereo H.264(MOV) Numero di pixel registrati L: 4000 x 3000 4000 x 2664 4000 x 2248 2992 x 2992 M: 2816 x 2112 2816 x 1864 2816 x 1584 2112 x 2112 S: 2048 x 1536 2048 x 1360 1920 x 1080 1536 x 1536 Motion Panorama 360°Verticale 11520 x 1624 Orizzontale 11520 x 1080 300°Verticale 9600 x 1624 Orizzontale 9600 x 1080 240°Verticale 7680 x 1624 Orizzontale 7680 x 1080 180°Verticale 5760 x 1624 Orizzontale 5760 x 1080 120°Verticale 3840 x 1624 Orizzontale 3840 x 1080 Ottica Zoom ottico Fujinon 4x (con Intelligent digital zoom 2x) Lunghezza focale f=7.1 - 28.4mm, 28-112mm (equivalente a 35mm) Apertura diaframma F2.0-F11(grandangolo) F2.8-F11(tele) 1/3EV step (diaframma a 7 lamelle) Distanza di messa a fuoco Normale: Grandangolo: da circa 50 cm all’infinito – Tele: da circa 80cm all’infinito Macro: Grandangolo: da circa 10 cm a 3m - Tele: da circa 50cm a 3m Super Macro : da circa 1cm a 1m Sensibilità Auto, ISO 100/200/250/320/400/500/640/800/1000/1250/1600/2000/2500/3200/4000/5000/6400*/12800* *ISO 6400:modalità M o inferiori, ISO 12800:modalità S Modalità di esposizione AE programmata – AE Priorità di tempi - AE Priorità di diaframma, Manuale Modalità di ripresa SP: Natural Light, Natural Light con flash, Ritratto, Miglioramento Ritratto, Paesaggio, Sport, Notte, Notte (cavalletto), Fuochi d’artificio, Tramonto, Neve, Spiaggia, Party, Fiori Macro, Testo, Subacqueo. Modalità DIAL: EXR, AUTO, P, S, A, M, C1, C2, Video, SP, Adv. Stabilizzatore di immagine Meccanico sull‘ottica Controllo di esposizione Misurazione TTL 256 Zone, Multi, Spot, Average Velocità otturatore (Auto) da 1/4 sec. a 1/4000* sec. , (tutte le altre modalità) da 30 sec. a 1/4000* sec. Scatto continuo TOP: Super High:circa. 10 fps (M,S) High:circa 7 fps (L,M,S) Middle.circa 5fps (L,M,S) Low:circa 3 fps (L,M,S) * SD memory card classe 4 (4 MB/sec.) o superiore * il numero massimo di scatti continui per ogni raffica è limitato BEST FRAME: Super High: circa 10fps 8/16 frames (Size M,S) High: circa 7fps 8frames (Size L,M,S)/16 frames (Size M,S) Middle:circa 5fps 8frames (Size L,M,S)/16 frames (Size M,S) Low:circa 3fps 8frames (Size L,M,S)/16 frames (Size ,M,S) Auto Bracketing Bracketing AE: ±1/3EV,±2/3EV,±1EV Braketing Simulazione Pellicola: PROVIA, Velvia, ASTIA Braketing Gamma Dinamica: 100%/200%/400% Braketing ISO: ±1/3EV,±2/3EV,±1EV Compensazione dell’esposizione -2.0EV - +2.0EV 1/3EV step Messa a fuoco AF Singolo/AF Continuo (EXR Auto, Video) Manuale AF (modalità One-Push AF inclusa) AF contrasto TTL, Illuminatore AF Multi, Area, Tracking Bilanciamento del bianco Automatico con riconoscimento della scena Selezionabile (sereno, ombra, luce fluorescente (diurna), luce fluorescente (calda), luce fluorescente (fredda), luce a incandescenza, subacqueo, personalizzato, selezione temperatura colore Autoscatto 10 sec./ 2 sec. Flash Automatico (Super Intelligent Flash) Copertura flash (ISO AUTO (800)) Grandangolo: circa 50cm - 7.0m Tele: circa 80cm - 5.0m Modalità di funzionamento: Riduzione occhi rossi Disattivata (OFF): Auto, forzato, disattivato, sincronizzazione tempi lunghi Riduzione occhi rossi Attivata (ON): Riduzione occhi rossi automatica, Riduzione occhi rossi & forzato, flash disattivato, Riduzione occhi rossi & sincronizzazione tempi lunghi Contatto per Flash Esterno sì Mirino Ottico Mirino zoom ottico circa 85% di copertura Aggiustamento diottrico: -3.5 - +1.5m-1(dpt) LCD Monitor TFT da 2,8’’ (460.000 pixel) Registrazione Video 1920 x 1080 pixels / 1280 x 720 pixels/ 640 x 480 pixels (30 frames / sec.) con audio stereo possibiità uso Zoom ottico (manuale) Funzioni Fotografiche Modalità EXR (EXR Auto / Resolution priority / High ISO & Low noise priority / Dynamic range priority), Face recognition, Face Detection, Rimozione Occhi Rossi Auto, Simulazione pellicola, Reticolo inquadratura, Memoria numero fotogramma, Visualizzazione istogrammi, Migliore inquadratura, Modalità Avanzate (Motion panorama360, Pro focus, Pro low light), Riprese Video Alta Velocità (70/ 120/ 200 frames/sec.), Livello Elettronico, One-touch RAW Anti Mosso Avanzato Funzioni di Riproduzione Face Detection, Rimozione occhi rossi Auto, Visualizzazione fotogrammi multipli con Micro Miniature, Protezione, Ritaglio immagine, Ridimensiona immagine, Ruota immagine, Slide show (presentazione), Registrazione memo vocali, Visualizzazione istogrammi, Avviso sovraesposizione, guida album (Photobook), Ricerca immagine, Preferiti, Mark Upload, Panorama, Cancella immagini selezionate. Altre funzioni PictBridge, Exif Print, 35 lingue, Fuso orario, Modalità Silenziosa Uscita video NTSC / PAL selezionabile con audio mono Interfaccia USB 2.0 High-Speed Uscita HDMI Connettore HDMI Mini Alimentazione Batteria ricaricabile al Litio NP-50 (inclusa) CP-50 with AC power adapter AC-5VX (opzionale) Autonomia batterie 300 scatti circa Dimensioni 117.0 (W) x 69.6 (H) x 56.8 (D) mm Peso circa 350g (inclusa batteria e scheda di memoria) circa 330g (senza batteria e scheda di memoria) Accessori inclusi Batteria ricaricabile al Litio NP-50 – Carica batteria BC-45W - Cinghia di trasporto – Copriobiettivo – Cavo USB - CD-ROM Software - Manuale in lingua italiana. Accessori Opzionali Cavo A/V AV-C1 - Paraluce LH-X10 - Borsa in pelle LC-X10 – Flash EF-42/EF-20 – Connettore di alimentazione CP-50 - Adattatore a corrente di a corrente di rete AC-5VX.|500|1'); /*!40000 ALTER TABLE `catalogsearch_fulltext` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogsearch_query` -- DROP TABLE IF EXISTS `catalogsearch_query`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_CATALOGSEARCH_QUERY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Catalog search query table'; /*!40101 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 */; INSERT INTO `catalogsearch_query` VALUES (1,'as',0,1,NULL,NULL,1,1,1,0,'2012-02-16 15:26:41'),(2,'test',1,3,NULL,NULL,1,1,1,0,'2012-02-16 15:26:41'),(3,'tes',1,2,NULL,NULL,1,1,1,0,'2012-02-16 15:26:41'),(4,'eti',0,1,NULL,NULL,1,1,1,0,'2012-02-16 15:26:41'),(5,'fine',5,6,NULL,NULL,1,1,1,0,'2012-02-28 11:27:32'),(6,'av100',2,2,NULL,NULL,1,1,1,0,'2012-02-28 11:27:32'),(7,'nero',3,1,NULL,NULL,1,1,1,0,'2012-02-28 11:27:32'),(8,'assa',3,1,NULL,NULL,1,1,1,0,'2012-02-28 11:27:32'),(9,'paperopoli',0,4,NULL,NULL,1,1,1,0,'2012-02-28 11:27:32'),(10,'av',5,3,NULL,NULL,1,1,1,0,'2012-02-28 11:27:32'),(11,'X100',2,1,NULL,NULL,1,1,1,1,'2012-03-02 15:21:51'); /*!40000 ALTER TABLE `catalogsearch_query` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `catalogsearch_result` -- DROP TABLE IF EXISTS `catalogsearch_result`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CATALOGSEARCH_RESULT_QUERY_ID_CATALOGSEARCH_QUERY_QUERY_ID` FOREIGN KEY (`query_id`) REFERENCES `catalogsearch_query` (`query_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CATSRCH_RESULT_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog search result table'; /*!40101 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 */; INSERT INTO `catalogsearch_result` VALUES (11,4,'0.0000'),(11,6,'0.0000'); /*!40000 ALTER TABLE `catalogsearch_result` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `checkout_agreement` -- DROP TABLE IF EXISTS `checkout_agreement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CHECKOUT_AGREEMENT_STORE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CHKT_AGRT_STORE_AGRT_ID_CHKT_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `checkout_agreement` (`agreement_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Checkout Agreement Store'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='CMS Block Table'; /*!40101 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','','2012-02-08 21:06:04','2012-02-08 21:06:04',1),(2,'globalNavigation','globalNavigation','
\r\n\r\n
','2012-02-26 10:05:36','2012-02-29 05:26:44',1),(3,'SliderHomeFuji','SliderHomeFuji','\r\n\r\n\r\n\r\n \r\n \r\n\r\n\r\n\r\n\r\n \r\n \r\n
\r\n
\r\n \r\n
    \r\n
  • \r\n \r\n
  • \r\n \r\n
  • \r\n \r\n
\r\n \r\n \r\n \r\n
\r\n
','2012-02-27 14:24:48','2012-02-28 15:22:59',1); /*!40000 ALTER TABLE `cms_block` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_block_store` -- DROP TABLE IF EXISTS `cms_block_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CMS_BLOCK_STORE_BLOCK_ID_CMS_BLOCK_BLOCK_ID` FOREIGN KEY (`block_id`) REFERENCES `cms_block` (`block_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CMS_BLOCK_STORE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Block To Store Linkage Table'; /*!40101 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),(2,1),(3,1); /*!40000 ALTER TABLE `cms_block_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cms_page` -- DROP TABLE IF EXISTS `cms_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='CMS Page Table'; /*!40101 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_right','Page keywords','Page description','no-route',NULL,'

We are sorry, but the page you are looking for cannot be found.

\n
\n
    \n
  • If you typed the URL directly, please make sure the spelling is correct.
  • \n
  • If you clicked on a link to get here, we must have moved the content.
    Please try our store search box above to search for an item.
  • \n
  • If you are not sure how you got here, go back to the previous page or return to our store homepage.
  • \n
\n
\n\n','2012-02-08 21:06:04','2012-02-08 21:06:04',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(2,'Home page','three_columns',NULL,NULL,'home',NULL,'\r\n
\r\n

Home Page

\r\n{{block type=\"catalog/product_list\" name=\"home.catalog.product.list\" alias=\"products_homepage\" template=\"catalog/product/list.phtml\"}}
','2012-02-08 21:06:04','2012-02-16 13:57:54',1,0,'',NULL,NULL,NULL,NULL,NULL),(3,'About Us','two_columns_right',NULL,NULL,'about-magento-demo-store',NULL,'
\r\n

About Magento Store

\r\n
\r\n
\r\n

\"Varien\"

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede.

\r\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta.

\r\n
\r\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit.

\r\n

Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo.

\r\n

Maecenas ullamcorper, odio vel tempus egestas, dui orci faucibus orci, sit amet aliquet lectus dolor et quam. Pellentesque consequat luctus purus. Nunc et risus. Etiam a nibh. Phasellus dignissim metus eget nisi. Vestibulum sapien dolor, aliquet nec, porta ac, malesuada a, libero. Praesent feugiat purus eget est. Nulla facilisi. Vestibulum tincidunt sapien eu velit. Mauris purus. Maecenas eget mauris eu orci accumsan feugiat. Pellentesque eget velit. Nunc tincidunt.

\r\n
\r\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper

\r\n

Maecenas ullamcorper, odio vel tempus egestas, dui orci faucibus orci, sit amet aliquet lectus dolor et quam. Pellentesque consequat luctus purus.

\r\n

Nunc et risus. Etiam a nibh. Phasellus dignissim metus eget nisi.

\r\n
\r\n

To all of you, from all of us at Magento Store - Thank you and Happy eCommerce!

\r\n

John Doe
Some important guy

\r\n
','2012-02-08 21:06:04','2012-02-08 21:06:04',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(4,'Customer Service','three_columns',NULL,NULL,'customer-service',NULL,'
\r\n

Customer Service

\r\n
\r\n\r\n
\r\n
Shipping & Delivery
\r\n
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo.
\r\n
Privacy & Security
\r\n
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo.
\r\n
Returns & Replacements
\r\n
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo.
\r\n
Ordering
\r\n
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo.
\r\n
Payment, Pricing & Promotions
\r\n
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo.
\r\n
Viewing Orders
\r\n
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo.
\r\n
Updating Account Information
\r\n
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Morbi luctus. Duis lobortis. Nulla nec velit. Mauris pulvinar erat non massa. Suspendisse tortor turpis, porta nec, tempus vitae, iaculis semper, pede. Cras vel libero id lectus rhoncus porta. Suspendisse convallis felis ac enim. Vivamus tortor nisl, lobortis in, faucibus et, tempus at, dui. Nunc risus. Proin scelerisque augue. Nam ullamcorper. Phasellus id massa. Pellentesque nisl. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nunc augue. Aenean sed justo non leo vehicula laoreet. Praesent ipsum libero, auctor ac, tempus nec, tempor nec, justo.
\r\n
','2012-02-08 21:06:05','2012-02-08 21:06:05',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(5,'Enable Cookies','one_column',NULL,NULL,'enable-cookies',NULL,'
\r\n
    \r\n
  • \r\n
      \r\n
    • Please enable cookies in your web browser to continue.
    • \r\n
    \r\n
  • \r\n
\r\n
\r\n

What are Cookies?

\r\n
\r\n

Cookies are short pieces of data that are sent to your computer when you visit a website. On later visits, this data is then returned to that website. Cookies allow us to recognize you automatically whenever you visit our site so that we can personalize your experience and provide you with better service. We also use cookies (and similar browser data, such as Flash cookies) for fraud prevention and other purposes. If your web browser is set to refuse cookies from our website, you will not be able to complete a purchase or take advantage of certain features of our website, such as storing items in your Shopping Cart or receiving personalized recommendations. As a result, we strongly encourage you to configure your web browser to accept cookies from our website.

\r\n

Enabling Cookies

\r\n \r\n

Internet Explorer 7.x

\r\n
    \r\n
  1. \r\n

    Start Internet Explorer

    \r\n
  2. \r\n
  3. \r\n

    Under the Tools menu, click Internet Options

    \r\n

    \"\"

    \r\n
  4. \r\n
  5. \r\n

    Click the Privacy tab

    \r\n

    \"\"

    \r\n
  6. \r\n
  7. \r\n

    Click the Advanced button

    \r\n

    \"\"

    \r\n
  8. \r\n
  9. \r\n

    Put a check mark in the box for Override Automatic Cookie Handling, put another check mark in the Always accept session cookies box

    \r\n

    \"\"

    \r\n
  10. \r\n
  11. \r\n

    Click OK

    \r\n

    \"\"

    \r\n
  12. \r\n
  13. \r\n

    Click OK

    \r\n

    \"\"

    \r\n
  14. \r\n
  15. \r\n

    Restart Internet Explore

    \r\n
  16. \r\n
\r\n

Back to Top

\r\n

Internet Explorer 6.x

\r\n
    \r\n
  1. \r\n

    Select Internet Options from the Tools menu

    \r\n

    \"\"

    \r\n
  2. \r\n
  3. \r\n

    Click on the Privacy tab

    \r\n
  4. \r\n
  5. \r\n

    Click the Default button (or manually slide the bar down to Medium) under Settings. Click OK

    \r\n

    \"\"

    \r\n
  6. \r\n
\r\n

Back to Top

\r\n

Mozilla/Firefox

\r\n
    \r\n
  1. \r\n

    Click on the Tools-menu in Mozilla

    \r\n
  2. \r\n
  3. \r\n

    Click on the Options... item in the menu - a new window open

    \r\n
  4. \r\n
  5. \r\n

    Click on the Privacy selection in the left part of the window. (See image below)

    \r\n

    \"\"

    \r\n
  6. \r\n
  7. \r\n

    Expand the Cookies section

    \r\n
  8. \r\n
  9. \r\n

    Check the Enable cookies and Accept cookies normally checkboxes

    \r\n
  10. \r\n
  11. \r\n

    Save changes by clicking Ok.

    \r\n
  12. \r\n
\r\n

Back to Top

\r\n

Opera 7.x

\r\n
    \r\n
  1. \r\n

    Click on the Tools menu in Opera

    \r\n
  2. \r\n
  3. \r\n

    Click on the Preferences... item in the menu - a new window open

    \r\n
  4. \r\n
  5. \r\n

    Click on the Privacy selection near the bottom left of the window. (See image below)

    \r\n

    \"\"

    \r\n
  6. \r\n
  7. \r\n

    The Enable cookies checkbox must be checked, and Accept all cookies should be selected in the "Normal cookies" drop-down

    \r\n
  8. \r\n
  9. \r\n

    Save changes by clicking Ok

    \r\n
  10. \r\n
\r\n

Back to Top

\r\n
\r\n','2012-02-08 21:06:05','2012-02-08 21:06:05',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(6,'Reward Points','one_column',NULL,NULL,'reward-points','Reward Points','

The Reward Points Program allows you to earn points for certain actions you take on the site. Points are awarded based on making purchases and customer actions such as submitting reviews.

\n\n

Benefits of Reward Points for Registered Customers

\n

Once you register you will be able to earn and accrue reward points, which are then redeemable at time of purchase towards the cost of your order. Rewards are an added bonus to your shopping experience on the site and just one of the ways we thank you for being a loyal customer.

\n\n

Earning Reward Points

\n

Rewards can currently be earned for the following actions:

\n
    \n
  • Making purchases — every time you make a purchase you earn points based on the price of products purchased and these points are added to your Reward Points balance.
  • \n
  • Registering on the site.
  • \n
  • Subscribing to a newsletter for the first time.
  • \n
  • Sending Invitations — Earn points by inviting your friends to join the site.
  • \n
  • Converting Invitations to Customer — Earn points for every invitation you send out which leads to your friends registering on the site.
  • \n
  • Converting Invitations to Order — Earn points for every invitation you send out which leads to a sale.
  • \n
  • Review Submission — Earn points for submitting product reviews.
  • \n
  • New Tag Submission — Earn points for adding tags to products.
  • \n
\n\n

Reward Points Exchange Rates

\n

The value of reward points is determined by an exchange rate of both currency spent on products to points, and an exchange rate of points earned to currency for spending on future purchases.

\n\n

Redeeming Reward Points

\n

You can redeem your reward points at checkout. If you have accumulated enough points to redeem them you will have the option of using points as one of the payment methods. The option to use reward points, as well as your balance and the monetary equivalent this balance, will be shown to you in the Payment Method area of the checkout. Redeemable reward points can be used in conjunction with other payment methods such as credit cards, gift cards and more.

\n

\"Payment

\n\n

Reward Points Minimums and Maximums

\n

Reward points may be capped at a minimum value required for redemption. If this option is selected you will not be able to use your reward points until you accrue a minimum number of points, at which point they will become available for redemption.

\n

Reward points may also be capped at the maximum value of points which can be accrued. If this option is selected you will need to redeem your accrued points before you are able to earn more points.

\n\n

Managing My Reward Points

\n

You have the ability to view and manage your points through your Customer Account. From your account you will be able to view your total points (and currency equivalent), minimum needed to redeem, whether you have reached the maximum points limit and a cumulative history of points acquired, redeemed and lost. The history record will retain and display historical rates and currency for informational purposes. The history will also show you comprehensive informational messages regarding points, including expiration notifications.

\n

\"My

\n\n

Reward Points Expiration

\n

Reward points can be set to expire. Points will expire in the order form which they were first earned.

\n

Note: You can sign up to receive email notifications each time your balance changes when you either earn, redeem or lose points, as well as point expiration notifications. This option is found in the Reward Points section of the My Account area.

\n','2012-02-08 21:06:15','2012-02-08 21:06:15',1,0,NULL,NULL,NULL,NULL,NULL,NULL),(7,'Shop Fuji Home Page','one_column',NULL,NULL,'home_shopfuji',NULL,'

{{block type=\"cms/block\" block_id=\"SliderHomeFuji\"}}

','2012-02-25 13:40:06','2012-02-29 16:42:55',1,0,'',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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CMS_PAGE_STORE_PAGE_ID_CMS_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `cms_page` (`page_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CMS_PAGE_STORE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Page To Store Linkage Table'; /*!40101 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),(3,0),(4,0),(5,0),(6,0),(2,1),(7,1); /*!40000 ALTER TABLE `cms_page_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_cache` -- DROP TABLE IF EXISTS `core_cache`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Caches'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cache Options'; /*!40101 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),('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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Caches'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=840 DEFAULT CHARSET=utf8 COMMENT='Config Data'; /*!40101 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,'catalog/category/root_id','2'),(2,'default',0,'web/seo/use_rewrites','1'),(3,'default',0,'admin/dashboard/enable_charts','1'),(4,'default',0,'web/unsecure/base_url','http://sgfuji.com/shop1/'),(5,'default',0,'web/secure/base_url','http://sgfuji.com/shop1/'),(6,'default',0,'general/locale/code','it_IT'),(7,'default',0,'general/locale/timezone','Europe/Berlin'),(8,'default',0,'currency/options/base','EUR'),(9,'default',0,'currency/options/default','EUR'),(10,'default',0,'currency/options/allow','EUR'),(11,'default',0,'tax/classes/shipping_tax_class','0'),(12,'default',0,'tax/calculation/algorithm','TOTAL_BASE_CALCULATION'),(13,'default',0,'tax/calculation/based_on','shipping'),(14,'default',0,'tax/calculation/price_includes_tax','1'),(15,'default',0,'tax/calculation/shipping_includes_tax','1'),(16,'default',0,'tax/calculation/apply_after_discount','1'),(17,'default',0,'tax/calculation/discount_tax','1'),(18,'default',0,'tax/calculation/apply_tax_on','0'),(19,'default',0,'tax/defaults/country','IT'),(20,'default',0,'tax/defaults/region','0'),(21,'default',0,'tax/defaults/postcode','*'),(22,'default',0,'tax/display/type','2'),(23,'default',0,'tax/display/shipping','2'),(24,'default',0,'tax/cart_display/price','2'),(25,'default',0,'tax/cart_display/subtotal','2'),(26,'default',0,'tax/cart_display/shipping','2'),(27,'default',0,'tax/cart_display/grandtotal','1'),(28,'default',0,'tax/cart_display/full_summary','0'),(29,'default',0,'tax/cart_display/zero_tax','0'),(30,'default',0,'tax/sales_display/price','1'),(31,'default',0,'tax/sales_display/subtotal','1'),(32,'default',0,'tax/sales_display/shipping','1'),(33,'default',0,'tax/sales_display/grandtotal','1'),(34,'default',0,'tax/sales_display/full_summary','1'),(35,'default',0,'tax/sales_display/zero_tax','0'),(36,'default',0,'tax/weee/enable','0'),(37,'default',0,'tax/weee/display_list','0'),(38,'default',0,'tax/weee/display','0'),(39,'default',0,'tax/weee/display_sales','0'),(40,'default',0,'tax/weee/display_email','0'),(41,'default',0,'tax/weee/discount','0'),(42,'default',0,'tax/weee/apply_vat','0'),(43,'default',0,'tax/weee/include_in_subtotal','0'),(44,'default',0,'general/country/default','IT'),(45,'default',0,'general/country/allow','IT'),(46,'default',0,'general/country/optional_zip_countries','IT'),(47,'default',0,'general/locale/firstday','0'),(48,'default',0,'general/locale/weekend','0,6'),(49,'default',0,'general/store_information/name',NULL),(50,'default',0,'general/store_information/phone',NULL),(51,'default',0,'general/store_information/address',NULL),(52,'default',0,'easy_lightbox/general/enabled','1'),(53,'default',0,'easy_lightbox/general/defaulzoom','0'),(54,'default',0,'easy_lightbox/general/mainImageSize','265_265'),(55,'default',0,'easy_lightbox/general/popupImageSize','500_500'),(56,'default',0,'easy_lightbox/general/additionalImageSize','60_60'),(57,'default',0,'easy_lightbox/general/productName','0'),(58,'default',0,'easy_lightbox/general/animate','1'),(59,'default',0,'easy_lightbox/general/overlayOpacity','0.8'),(60,'default',0,'easy_lightbox/general/resizeSpeed','7'),(61,'default',0,'easy_lightbox/general/borderSize','10'),(62,'default',0,'easy_lightbox/general/labelImage','Image'),(63,'default',0,'easy_lightbox/general/labelOf','of'),(64,'default',0,'ig_lightbox/general/enabled','1'),(65,'default',0,'ig_lightbox/general/bigImageSize','800x600'),(66,'default',0,'ig_lightbox/general/mainImageSize','265x265'),(67,'default',0,'ig_lightbox/general/thumbnailImageSize','60x60'),(68,'default',0,'ig_lightbox/display/backgroundOpacity','0.8'),(69,'default',0,'ig_lightbox/display/backgroundColor','#000000'),(70,'default',0,'ig_lightbox/display/imageboxOpacity','1.0'),(71,'default',0,'ig_lightbox/display/imageboxColor','#000000'),(72,'default',0,'ig_lightbox/display/toolbarOpacity','0.7'),(73,'default',0,'ig_lightbox/display/toolbarColor','#000000'),(74,'default',0,'ig_lightbox/display/toolbarTextColor','#ffffff'),(75,'default',0,'ig_lightbox/display/toolbarTextSize','12'),(76,'default',0,'ig_lightbox/display/toolbarTextFont','Verdana'),(77,'default',0,'ig_lightbox/display/paddingSize','10'),(78,'default',0,'ig_lightbox/display/borderSize','1'),(79,'default',0,'ig_lightbox/display/borderColor','#909090'),(80,'default',0,'ig_lightbox/effects/fadeIn','1.0'),(81,'default',0,'ig_lightbox/effects/fadeOut','1.0'),(82,'default',0,'ig_lightbox/effects/imageResize','0.5'),(83,'default',0,'ig_lightbox/effects/imageSwap','0.5'),(84,'default',0,'ig_lightbox2/general/type','fancybox'),(85,'default',0,'ig_lightbox2/general/max_width',NULL),(86,'default',0,'ig_lightbox2/general/max_height',NULL),(87,'default',0,'ig_lightbox2/general/img_width','265'),(88,'default',0,'ig_lightbox2/general/img_height','265'),(89,'default',0,'ig_lightbox2/general/img_frame','1'),(90,'default',0,'ig_lightbox2/general/thu_width','56'),(91,'default',0,'ig_lightbox2/general/thu_height','56'),(92,'default',0,'ig_lightbox2/general/thu_frame','1'),(93,'default',0,'ig_lightbox2/type-lightbox/overlayBgColor','#000'),(94,'default',0,'ig_lightbox2/type-lightbox/overlayOpacity','0.8'),(95,'default',0,'ig_lightbox2/type-lightbox/containerBorderSize','10'),(96,'default',0,'ig_lightbox2/type-lightbox/containerResizeSpeed','400'),(97,'default',0,'ig_lightbox2/type-lightbox/fixedNavigation','0'),(98,'default',0,'ig_lightbox2/type-lightbox/txtImage','Image'),(99,'default',0,'ig_lightbox2/type-lightbox/txtOf','of'),(100,'default',0,'ig_lightbox2/type-fancybox/padding','10'),(101,'default',0,'ig_lightbox2/type-fancybox/margin','20'),(102,'default',0,'ig_lightbox2/type-fancybox/opacity','0'),(103,'default',0,'ig_lightbox2/type-fancybox/modal','0'),(104,'default',0,'ig_lightbox2/type-fancybox/cyclic','1'),(105,'default',0,'ig_lightbox2/type-fancybox/autoScale','1'),(106,'default',0,'ig_lightbox2/type-fancybox/centerOnScroll','1'),(107,'default',0,'ig_lightbox2/type-fancybox/hideOnOverlayClick','1'),(108,'default',0,'ig_lightbox2/type-fancybox/hideOnContentClick','0'),(109,'default',0,'ig_lightbox2/type-fancybox/overlayShow','1'),(110,'default',0,'ig_lightbox2/type-fancybox/overlayOpacity','0.3'),(111,'default',0,'ig_lightbox2/type-fancybox/overlayColor','#333333'),(112,'default',0,'ig_lightbox2/type-fancybox/titleShow','1'),(113,'default',0,'ig_lightbox2/type-fancybox/titlePosition','float'),(114,'default',0,'ig_lightbox2/type-fancybox/transitionIn','fade'),(115,'default',0,'ig_lightbox2/type-fancybox/transitionOut','fade'),(116,'default',0,'ig_lightbox2/type-fancybox/speedIn','300'),(117,'default',0,'ig_lightbox2/type-fancybox/speedOut','300'),(118,'default',0,'ig_lightbox2/type-fancybox/changeSpeed','300'),(119,'default',0,'ig_lightbox2/type-fancybox/changeFade','fast'),(120,'default',0,'ig_lightbox2/type-fancybox/easingIn','swing'),(121,'default',0,'ig_lightbox2/type-fancybox/easingOut','swing'),(122,'default',0,'ig_lightbox2/type-fancybox/showCloseButton','1'),(123,'default',0,'ig_lightbox2/type-fancybox/enableEscapeButton','1'),(124,'default',0,'ig_lightbox2/type-fancybox/showNavArrows','1'),(125,'default',0,'ig_lightbox2/type-prettyphoto/animation_speed','fast'),(126,'default',0,'ig_lightbox2/type-prettyphoto/slideshow','5000'),(127,'default',0,'ig_lightbox2/type-prettyphoto/autoplay_slideshow','0'),(128,'default',0,'ig_lightbox2/type-prettyphoto/opacity','0.8'),(129,'default',0,'ig_lightbox2/type-prettyphoto/show_title','1'),(130,'default',0,'ig_lightbox2/type-prettyphoto/allow_resize','1'),(131,'default',0,'ig_lightbox2/type-prettyphoto/counter_separator_label','/'),(132,'default',0,'ig_lightbox2/type-prettyphoto/theme','pp_default'),(133,'default',0,'ig_lightbox2/type-prettyphoto/horizontal_padding','20'),(134,'default',0,'ig_lightbox2/type-prettyphoto/hideflash','0'),(135,'default',0,'ig_lightbox2/type-prettyphoto/modal','0'),(136,'default',0,'ig_lightbox2/type-prettyphoto/deeplinking','1'),(137,'default',0,'ig_lightbox2/type-prettyphoto/overlay_gallery','1'),(138,'default',0,'ig_lightbox2/type-prettyphoto/keyboard_shortcuts','0'),(139,'default',0,'ig_lightbox2/type-prettyphoto/ie6_fallback','1'),(140,'default',0,'ig_lightbox2/type-colorbox/theme','theme1'),(141,'default',0,'ig_lightbox2/type-colorbox/transition','elastic'),(142,'default',0,'ig_lightbox2/type-colorbox/speed','350'),(143,'default',0,'ig_lightbox2/type-colorbox/scalePhotos','0'),(144,'default',0,'ig_lightbox2/type-colorbox/opacity','0.85'),(145,'default',0,'ig_lightbox2/type-colorbox/returnFocus','1'),(146,'default',0,'ig_lightbox2/type-colorbox/preloading','1'),(147,'default',0,'ig_lightbox2/type-colorbox/overlayClose','1'),(148,'default',0,'ig_lightbox2/type-colorbox/escKey','1'),(149,'default',0,'ig_lightbox2/type-colorbox/arrowKey','1'),(150,'default',0,'ig_lightbox2/type-colorbox/loop','1'),(151,'default',0,'ig_lightbox2/type-colorbox/current','image {current} of {total}'),(152,'default',0,'ig_lightbox2/type-colorbox/previous','previous'),(153,'default',0,'ig_lightbox2/type-colorbox/next','next'),(154,'default',0,'ig_lightbox2/type-colorbox/close','close'),(155,'default',0,'ig_lightbox2/type-colorbox/width',NULL),(156,'default',0,'ig_lightbox2/type-colorbox/height',NULL),(157,'default',0,'ig_lightbox2/type-colorbox/innerWidth',NULL),(158,'default',0,'ig_lightbox2/type-colorbox/innerHeight',NULL),(159,'default',0,'ig_lightbox2/type-colorbox/initialWidth','300'),(160,'default',0,'ig_lightbox2/type-colorbox/initialHeight','100'),(161,'default',0,'ig_lightbox2/type-colorbox/slideshow','0'),(162,'default',0,'ig_lightbox2/type-colorbox/slideshowSpeed','2500'),(163,'default',0,'ig_lightbox2/type-colorbox/slideshowAuto','1'),(164,'default',0,'ig_lightbox2/type-colorbox/slideshowStart','Start slideshow'),(165,'default',0,'ig_lightbox2/type-colorbox/slideshowStop','Stop slideshow'),(166,'default',0,'ig_lightbox2/type-colorbox/fixed','1'),(167,'default',0,'ig_lightbox2/type-colorbox/top','0'),(168,'default',0,'ig_lightbox2/type-colorbox/bottom','0'),(169,'default',0,'ig_lightbox2/type-colorbox/left','0'),(170,'default',0,'ig_lightbox2/type-colorbox/right','0'),(171,'default',0,'wishlist/general/active','0'),(172,'default',0,'wishlist/email/email_template','wishlist_email_email_template'),(173,'default',0,'wishlist/email/email_identity','general'),(174,'default',0,'wishlist/wishlist_link/use_qty','0'),(175,'default',0,'paypal/general/merchant_country','IT'),(176,'default',0,'paypal/general/business_account',NULL),(177,'default',0,'payment/paypal_express/active','0'),(178,'default',0,'payment/paypal_standard/active','0'),(179,'default',0,'payment/paypal_direct/active','0'),(180,'default',0,'payment/paypaluk_direct/active','0'),(181,'default',0,'payment/verisign/active','0'),(182,'default',0,'payment/paypaluk_express/active','0'),(183,'default',0,'payment/payflow_link/active','0'),(184,'default',0,'payment/hosted_pro/active','0'),(185,'default',0,'paypal/wpp/api_authentication','0'),(186,'default',0,'paypal/wpp/api_username',NULL),(187,'default',0,'paypal/wpp/api_password',NULL),(188,'default',0,'paypal/wpp/api_signature',NULL),(189,'default',0,'paypal/wpp/sandbox_flag','0'),(190,'default',0,'paypal/wpp/use_proxy','0'),(191,'default',0,'payment/paypal_direct/title','PayPal Direct Payment'),(192,'default',0,'payment/paypal_direct/sort_order',NULL),(193,'default',0,'payment/paypal_direct/payment_action','Authorization'),(194,'default',0,'payment/paypal_direct/allowspecific','0'),(195,'default',0,'payment/paypal_direct/debug','0'),(196,'default',0,'payment/paypal_direct/line_items_enabled','0'),(197,'default',0,'payment/paypal_direct/using_pbridge','0'),(198,'default',0,'payment/paypal_direct/cctypes','VI,MC'),(199,'default',0,'payment/paypal_direct/useccv','1'),(200,'default',0,'payment/paypal_direct/centinel','0'),(201,'default',0,'payment/paypal_billing_agreement/active','1'),(202,'default',0,'payment/paypal_billing_agreement/title','PayPal Billing Agreement'),(203,'default',0,'payment/paypal_billing_agreement/sort_order',NULL),(204,'default',0,'payment/paypal_billing_agreement/payment_action','Authorization'),(205,'default',0,'payment/paypal_billing_agreement/allowspecific','0'),(206,'default',0,'payment/paypal_billing_agreement/debug','0'),(207,'default',0,'payment/paypal_billing_agreement/line_items_enabled','0'),(208,'default',0,'payment/paypal_billing_agreement/allow_billing_agreement_wizard','1'),(209,'default',0,'paypal/fetch_reports/ftp_login',NULL),(210,'default',0,'paypal/fetch_reports/ftp_password',NULL),(211,'default',0,'paypal/fetch_reports/ftp_sandbox','0'),(212,'default',0,'paypal/fetch_reports/ftp_ip',NULL),(213,'default',0,'paypal/fetch_reports/ftp_path',NULL),(214,'default',0,'paypal/fetch_reports/active','0'),(215,'default',0,'paypal/fetch_reports/schedule','1'),(216,'default',0,'paypal/fetch_reports/time','00,00,00'),(217,'default',0,'paypal/style/logo',NULL),(218,'default',0,'paypal/style/page_style',NULL),(219,'default',0,'paypal/style/paypal_hdrimg',NULL),(220,'default',0,'paypal/style/paypal_hdrbackcolor',NULL),(221,'default',0,'paypal/style/paypal_hdrbordercolor',NULL),(222,'default',0,'paypal/style/paypal_payflowcolor',NULL),(223,'default',0,'enterprise_reward/general/is_enabled','1'),(224,'default',0,'enterprise_reward/general/is_enabled_on_front','1'),(225,'default',0,'enterprise_reward/general/publish_history','1'),(226,'default',0,'enterprise_reward/general/min_points_balance',NULL),(227,'default',0,'enterprise_reward/general/max_points_balance',NULL),(228,'default',0,'enterprise_reward/general/expiration_days',NULL),(229,'default',0,'enterprise_reward/general/expiry_calculation','static'),(230,'default',0,'enterprise_reward/general/refund_automatically','0'),(231,'default',0,'enterprise_reward/general/landing_page','reward-points'),(232,'default',0,'enterprise_reward/points/order','0'),(233,'default',0,'enterprise_reward/points/register',NULL),(234,'default',0,'enterprise_reward/points/newsletter',NULL),(235,'default',0,'enterprise_reward/points/review',NULL),(236,'default',0,'enterprise_reward/points/review_limit',NULL),(237,'default',0,'enterprise_reward/points/tag',NULL),(238,'default',0,'enterprise_reward/points/tag_limit',NULL),(239,'default',0,'enterprise_reward/notification/email_sender','general'),(240,'default',0,'enterprise_reward/notification/subscribe_by_default','1'),(241,'default',0,'enterprise_reward/notification/balance_update_template','enterprise_reward_notification_balance_update_template'),(242,'default',0,'enterprise_reward/notification/expiry_warning_template','enterprise_reward_notification_expiry_warning_template'),(243,'default',0,'enterprise_reward/notification/expiry_day_before',NULL),(244,'default',0,'catalog/frontend/list_mode','grid-list'),(245,'default',0,'catalog/frontend/grid_per_page_values','9,15,30'),(246,'default',0,'catalog/frontend/grid_per_page','9'),(247,'default',0,'catalog/frontend/list_per_page_values','5,10,15,20,25'),(248,'default',0,'catalog/frontend/list_per_page','10'),(249,'default',0,'catalog/frontend/list_allow_all','0'),(250,'default',0,'catalog/frontend/default_sort_by','position'),(251,'default',0,'catalog/frontend/flat_catalog_category','0'),(252,'default',0,'catalog/frontend/flat_catalog_product','0'),(253,'default',0,'catalog/frontend/parse_url_directives','1'),(254,'default',0,'catalog/sitemap/tree_mode','0'),(255,'default',0,'catalog/sitemap/lines_perpage','30'),(256,'default',0,'catalog/review/allow_guest','0'),(257,'default',0,'catalog/productalert/allow_price','0'),(258,'default',0,'catalog/productalert/email_price_template','catalog_productalert_email_price_template'),(259,'default',0,'catalog/productalert/allow_stock','0'),(260,'default',0,'catalog/productalert/email_stock_template','catalog_productalert_email_stock_template'),(261,'default',0,'catalog/productalert/email_identity','general'),(262,'default',0,'catalog/productalert_cron/frequency','D'),(263,'default',0,'crontab/jobs/catalog_product_alert/schedule/cron_expr','0 0 * * *'),(264,'default',0,'crontab/jobs/catalog_product_alert/run/model','productalert/observer::process'),(265,'default',0,'catalog/productalert_cron/time','00,00,00'),(266,'default',0,'catalog/productalert_cron/error_email',NULL),(267,'default',0,'catalog/productalert_cron/error_email_identity','general'),(268,'default',0,'catalog/productalert_cron/error_email_template','catalog_productalert_cron_error_email_template'),(269,'default',0,'catalog/recently_products/scope','website'),(270,'default',0,'catalog/recently_products/viewed_count','5'),(271,'default',0,'catalog/recently_products/compared_count','5'),(272,'default',0,'catalog/price/scope','0'),(273,'default',0,'catalog/price/default_product_price','0'),(274,'default',0,'catalog/layered_navigation/price_range_calculation','auto'),(275,'default',0,'catalog/navigation/max_depth','0'),(276,'default',0,'catalog/seo/site_map','1'),(277,'default',0,'catalog/seo/search_terms','1'),(278,'default',0,'catalog/seo/product_url_suffix','.html'),(279,'default',0,'catalog/seo/category_url_suffix','.html'),(280,'default',0,'catalog/seo/product_use_categories','1'),(281,'default',0,'catalog/seo/save_rewrites_history','1'),(282,'default',0,'catalog/seo/title_separator','-'),(283,'default',0,'catalog/seo/category_canonical_tag','0'),(284,'default',0,'catalog/seo/product_canonical_tag','0'),(285,'default',0,'catalog/search/min_query_length','1'),(286,'default',0,'catalog/search/max_query_length','128'),(287,'default',0,'catalog/search/max_query_words','10'),(288,'default',0,'catalog/search/search_type','1'),(289,'default',0,'catalog/search/use_layered_navigation_count','2000'),(290,'default',0,'catalog/downloadable/order_item_status','9'),(291,'default',0,'catalog/downloadable/downloads_number','0'),(292,'default',0,'catalog/downloadable/shareable','0'),(293,'default',0,'catalog/downloadable/samples_title','Samples'),(294,'default',0,'catalog/downloadable/links_title','Links'),(295,'default',0,'catalog/downloadable/links_target_new_window','1'),(296,'default',0,'catalog/downloadable/content_disposition','inline'),(297,'default',0,'catalog/downloadable/disable_guest_checkout','1'),(298,'default',0,'catalog/custom_options/use_calendar','0'),(299,'default',0,'catalog/custom_options/date_fields_order','m,d,y'),(300,'default',0,'catalog/custom_options/time_format','12h'),(301,'default',0,'catalog/custom_options/year_range',','),(302,'default',0,'advanced/modules_disable_output/Enterprise_CustomerBalance','0'),(303,'default',0,'advanced/modules_disable_output/Enterprise_Enterprise','0'),(304,'default',0,'advanced/modules_disable_output/Enterprise_GiftCard','0'),(305,'default',0,'advanced/modules_disable_output/Enterprise_GiftCardAccount','0'),(306,'default',0,'advanced/modules_disable_output/Enterprise_Pbridge','0'),(307,'default',0,'advanced/modules_disable_output/Enterprise_Pci','0'),(308,'default',0,'advanced/modules_disable_output/Enterprise_PricePermissions','0'),(309,'default',0,'advanced/modules_disable_output/Enterprise_PromotionPermissions','0'),(310,'default',0,'advanced/modules_disable_output/Enterprise_Reward','0'),(311,'default',0,'advanced/modules_disable_output/IG_LightBox2','0'),(312,'default',0,'advanced/modules_disable_output/Mage_Admin','0'),(313,'default',0,'advanced/modules_disable_output/Mage_AdminNotification','0'),(314,'default',0,'advanced/modules_disable_output/Mage_Api','0'),(315,'default',0,'advanced/modules_disable_output/Mage_Authorizenet','0'),(316,'default',0,'advanced/modules_disable_output/Mage_Backup','0'),(317,'default',0,'advanced/modules_disable_output/Mage_Bundle','0'),(318,'default',0,'advanced/modules_disable_output/Mage_Catalog','0'),(319,'default',0,'advanced/modules_disable_output/Mage_CatalogIndex','0'),(320,'default',0,'advanced/modules_disable_output/Mage_CatalogInventory','0'),(321,'default',0,'advanced/modules_disable_output/Mage_CatalogRule','0'),(322,'default',0,'advanced/modules_disable_output/Mage_CatalogSearch','0'),(323,'default',0,'advanced/modules_disable_output/Mage_Centinel','0'),(324,'default',0,'advanced/modules_disable_output/Mage_Checkout','0'),(325,'default',0,'advanced/modules_disable_output/Mage_Cms','0'),(326,'default',0,'advanced/modules_disable_output/Mage_Compiler','0'),(327,'default',0,'advanced/modules_disable_output/Mage_Connect','0'),(328,'default',0,'advanced/modules_disable_output/Mage_Contacts','0'),(329,'default',0,'advanced/modules_disable_output/Mage_Core','0'),(330,'default',0,'advanced/modules_disable_output/Mage_Cron','0'),(331,'default',0,'advanced/modules_disable_output/Mage_Customer','0'),(332,'default',0,'advanced/modules_disable_output/Mage_Dataflow','0'),(333,'default',0,'advanced/modules_disable_output/Mage_Directory','0'),(334,'default',0,'advanced/modules_disable_output/Mage_Downloadable','0'),(335,'default',0,'advanced/modules_disable_output/Mage_Eav','0'),(336,'default',0,'advanced/modules_disable_output/Mage_GiftMessage','0'),(337,'default',0,'advanced/modules_disable_output/Mage_GoogleAnalytics','0'),(338,'default',0,'advanced/modules_disable_output/Mage_GoogleCheckout','0'),(339,'default',0,'advanced/modules_disable_output/Mage_ImportExport','0'),(340,'default',0,'advanced/modules_disable_output/Mage_Index','0'),(341,'default',0,'advanced/modules_disable_output/Mage_Install','0'),(342,'default',0,'advanced/modules_disable_output/Mage_Log','0'),(343,'default',0,'advanced/modules_disable_output/Mage_Media','0'),(344,'default',0,'advanced/modules_disable_output/Mage_Newsletter','1'),(345,'default',0,'advanced/modules_disable_output/Mage_Ogone','0'),(346,'default',0,'advanced/modules_disable_output/Mage_Page','0'),(347,'default',0,'advanced/modules_disable_output/Mage_PageCache','0'),(348,'default',0,'advanced/modules_disable_output/Mage_Paygate','0'),(349,'default',0,'advanced/modules_disable_output/Mage_Payment','0'),(350,'default',0,'advanced/modules_disable_output/Mage_Paypal','0'),(351,'default',0,'advanced/modules_disable_output/Mage_PaypalUk','0'),(352,'default',0,'advanced/modules_disable_output/Mage_Persistent','0'),(353,'default',0,'advanced/modules_disable_output/Mage_Poll','1'),(354,'default',0,'advanced/modules_disable_output/Mage_ProductAlert','0'),(355,'default',0,'advanced/modules_disable_output/Mage_Rating','0'),(356,'default',0,'advanced/modules_disable_output/Mage_Reports','0'),(357,'default',0,'advanced/modules_disable_output/Mage_Review','1'),(358,'default',0,'advanced/modules_disable_output/Mage_Rss','0'),(359,'default',0,'advanced/modules_disable_output/Mage_Rule','0'),(360,'default',0,'advanced/modules_disable_output/Mage_Sales','0'),(361,'default',0,'advanced/modules_disable_output/Mage_SalesRule','0'),(362,'default',0,'advanced/modules_disable_output/Mage_Sendfriend','0'),(363,'default',0,'advanced/modules_disable_output/Mage_Shipping','0'),(364,'default',0,'advanced/modules_disable_output/Mage_Sitemap','0'),(365,'default',0,'advanced/modules_disable_output/Mage_Tag','1'),(366,'default',0,'advanced/modules_disable_output/Mage_Tax','0'),(367,'default',0,'advanced/modules_disable_output/Mage_Usa','0'),(368,'default',0,'advanced/modules_disable_output/Mage_Weee','0'),(369,'default',0,'advanced/modules_disable_output/Mage_Widget','0'),(370,'default',0,'advanced/modules_disable_output/Mage_Wishlist','0'),(371,'default',0,'advanced/modules_disable_output/Mage_XmlConnect','0'),(372,'default',0,'advanced/modules_disable_output/Phoenix_Moneybookers','0'),(373,'default',0,'shipping/origin/country_id','IT'),(374,'default',0,'shipping/origin/region_id',NULL),(375,'default',0,'shipping/origin/postcode',NULL),(376,'default',0,'shipping/origin/city',NULL),(377,'default',0,'shipping/origin/street_line1',NULL),(378,'default',0,'shipping/origin/street_line2',NULL),(379,'default',0,'shipping/option/checkout_multiple','1'),(380,'default',0,'shipping/option/checkout_multiple_maximum_qty','100'),(381,'default',0,'quickshop/general/size_type','0'),(382,'default',0,'quickshop/general/frame_width','50'),(383,'default',0,'quickshop/general/frame_height','90'),(384,'default',0,'design/package/name','pro'),(385,'default',0,'design/package/ua_regexp','a:0:{}'),(386,'default',0,'design/theme/locale',NULL),(387,'default',0,'design/theme/template',NULL),(388,'default',0,'design/theme/template_ua_regexp','a:0:{}'),(389,'default',0,'design/theme/skin',NULL),(390,'default',0,'design/theme/skin_ua_regexp','a:0:{}'),(391,'default',0,'design/theme/layout',NULL),(392,'default',0,'design/theme/layout_ua_regexp','a:0:{}'),(393,'default',0,'design/theme/default',NULL),(394,'default',0,'design/theme/default_ua_regexp','a:0:{}'),(395,'default',0,'design/head/default_title','Magento Professional Edition'),(396,'default',0,'design/head/title_prefix',NULL),(397,'default',0,'design/head/title_suffix',NULL),(398,'default',0,'design/head/default_description','Default Description'),(399,'default',0,'design/head/default_keywords','Magento, Varien, E-commerce'),(400,'default',0,'design/head/default_robots','INDEX,FOLLOW'),(401,'default',0,'design/head/includes',NULL),(402,'default',0,'design/head/demonotice','0'),(403,'default',0,'design/header/logo_src','images/logo.gif'),(404,'default',0,'design/header/logo_alt','FUJIFILM shop'),(405,'default',0,'design/header/welcome',NULL),(406,'default',0,'design/footer/copyright','© 2011 Magento Professional Edition Demo Store. All Rights Reserved.'),(407,'default',0,'design/footer/absolute_footer',NULL),(408,'default',0,'design/watermark/image_size',NULL),(409,'default',0,'design/watermark/image_imageOpacity',NULL),(410,'default',0,'design/watermark/image_position','stretch'),(411,'default',0,'design/watermark/small_image_size',NULL),(412,'default',0,'design/watermark/small_image_imageOpacity',NULL),(413,'default',0,'design/watermark/small_image_position','stretch'),(414,'default',0,'design/watermark/thumbnail_size',NULL),(415,'default',0,'design/watermark/thumbnail_imageOpacity',NULL),(416,'default',0,'design/watermark/thumbnail_position','stretch'),(417,'default',0,'design/pagination/pagination_frame','5'),(418,'default',0,'design/pagination/pagination_frame_skip',NULL),(419,'default',0,'design/pagination/anchor_text_for_previous',NULL),(420,'default',0,'design/pagination/anchor_text_for_next',NULL),(421,'default',0,'web/url/use_store','0'),(422,'default',0,'web/url/redirect_to_base','1'),(423,'default',0,'web/unsecure/base_link_url','{{unsecure_base_url}}'),(424,'default',0,'web/unsecure/base_skin_url','{{unsecure_base_url}}skin/'),(425,'default',0,'web/unsecure/base_media_url','{{unsecure_base_url}}media/'),(426,'default',0,'web/unsecure/base_js_url','{{unsecure_base_url}}js/'),(427,'default',0,'web/secure/base_link_url','{{secure_base_url}}'),(428,'default',0,'web/secure/base_skin_url','{{secure_base_url}}skin/'),(429,'default',0,'web/secure/base_media_url','{{secure_base_url}}media/'),(430,'default',0,'web/secure/base_js_url','{{secure_base_url}}js/'),(431,'default',0,'web/secure/use_in_frontend','0'),(432,'default',0,'web/secure/use_in_adminhtml','0'),(433,'default',0,'web/secure/offloader_header','SSL_OFFLOADED'),(434,'default',0,'web/default/front','cms'),(435,'default',0,'web/default/cms_home_page','home_shopfuji'),(436,'default',0,'web/default/no_route','cms/index/noRoute'),(437,'default',0,'web/default/cms_no_route','no-route'),(438,'default',0,'web/default/cms_no_cookies','enable-cookies'),(439,'default',0,'web/default/show_cms_breadcrumbs','1'),(440,'default',0,'web/polls/poll_check_by_ip','0'),(441,'default',0,'web/cookie/cookie_lifetime','3600'),(442,'default',0,'web/cookie/cookie_path',NULL),(443,'default',0,'web/cookie/cookie_domain',NULL),(444,'default',0,'web/cookie/cookie_httponly','1'),(445,'default',0,'web/session/use_remote_addr','0'),(446,'default',0,'web/session/use_http_via','0'),(447,'default',0,'web/session/use_http_x_forwarded_for','0'),(448,'default',0,'web/session/use_http_user_agent','0'),(449,'default',0,'web/session/use_frontend_sid','1'),(450,'default',0,'web/browser_capabilities/cookies','1'),(451,'default',0,'web/browser_capabilities/javascript','1'),(452,'websites',1,'dev/debug/template_hints','0'),(453,'websites',1,'dev/debug/template_hints_blocks','0'),(454,'websites',1,'dev/debug/profiler','0'),(455,'default',0,'design/head/shortcut_icon','default/favicon.ico'),(456,'default',0,'easy_tabs/general/enabled','1'),(457,'default',0,'easy_tabs/general/descriptiontabbed','1'),(458,'default',0,'easy_tabs/general/additionaltabbed','0'),(459,'default',0,'easy_tabs/general/upsellproductstabbed','1'),(460,'default',0,'easy_tabs/general/relatedtabbed','1'),(461,'default',0,'easy_tabs/general/tagstabbed','0'),(462,'default',0,'easy_tabs/general/reviewtabbed','1'),(463,'default',0,'easy_tabs/custom/customtab','1'),(464,'default',0,'easy_tabs/custom/customtabid','scheda_tecnica'),(465,'default',0,'easy_tabs/custom/customtabname','Scheda Tecnica'),(466,'default',0,'easy_tabs/custom/customtab1','1'),(467,'default',0,'easy_tabs/custom/customtabid1','22'),(468,'default',0,'easy_tabs/custom/customtabname1','3'),(469,'default',0,'easy_tabs/custom/customtab2','1'),(470,'default',0,'easy_tabs/custom/customtabid2','33'),(471,'default',0,'easy_tabs/custom/customtabname2','4'),(472,'default',0,'easy_tabs/custom/customtab3','1'),(473,'default',0,'easy_tabs/custom/customtabid3','4'),(474,'default',0,'easy_tabs/custom/customtabname3','5'),(475,'default',0,'easy_tabs/custom/customtab4','1'),(476,'default',0,'easy_tabs/custom/customtabid4','5'),(477,'default',0,'easy_tabs/custom/customtabname4','nome 5'),(478,'default',0,'easy_tabs/customcms/tabcms','0'),(479,'default',0,'easy_tabs/customcms/tabidcms',NULL),(480,'default',0,'easy_tabs/customcms/tabnamecms',NULL),(481,'default',0,'easy_tabs/customcms/tabcms1','0'),(482,'default',0,'easy_tabs/customcms/tabidcms1',NULL),(483,'default',0,'easy_tabs/customcms/tabnamecms1',NULL),(484,'default',0,'easy_tabs/customcms/tabcms2','0'),(485,'default',0,'easy_tabs/customcms/tabidcms2',NULL),(486,'default',0,'easy_tabs/customcms/tabnamecms2',NULL),(487,'default',0,'easy_tabs/customcms/tabcms3','0'),(488,'default',0,'easy_tabs/customcms/tabidcms3',NULL),(489,'default',0,'easy_tabs/customcms/tabnamecms3',NULL),(490,'default',0,'easy_tabs/customcms/tabcms4','0'),(491,'default',0,'easy_tabs/customcms/tabidcms4',NULL),(492,'default',0,'easy_tabs/customcms/tabnamecms4',NULL),(493,'default',0,'advanced/modules_disable_output/TM_EasyTabs','0'),(494,'default',0,'payment/pbridge/active','0'),(495,'default',0,'payment/pbridge/merchantcode',NULL),(496,'default',0,'payment/pbridge/merchantkey',NULL),(497,'default',0,'payment/pbridge/gatewayurl',NULL),(498,'default',0,'payment/pbridge/transferkey',NULL),(499,'default',0,'payment/pbridge/debug','0'),(500,'default',0,'payment/ccsave/active','0'),(501,'default',0,'payment/ccsave/title','Credit Card (saved)'),(502,'default',0,'payment/ccsave/order_status','pending'),(503,'default',0,'payment/ccsave/cctypes','AE,VI,MC,DI'),(504,'default',0,'payment/ccsave/useccv','0'),(505,'default',0,'payment/ccsave/centinel','0'),(506,'default',0,'payment/ccsave/allowspecific','0'),(507,'default',0,'payment/ccsave/min_order_total',NULL),(508,'default',0,'payment/ccsave/max_order_total',NULL),(509,'default',0,'payment/ccsave/sort_order',NULL),(510,'default',0,'payment/pbridge_ogone_direct/active','0'),(511,'default',0,'payment/pbridge_ogone_direct/sandbox_flag','0'),(512,'default',0,'payment/pbridge_ogone_direct/title','Ogone Direct Link'),(513,'default',0,'payment/pbridge_ogone_direct/payment_action','authorize'),(514,'default',0,'payment/pbridge_ogone_direct/cctypes','VI'),(515,'default',0,'payment/pbridge_ogone_direct/allowspecific','0'),(516,'default',0,'payment/free/title','No Payment Information Required'),(517,'default',0,'payment/free/active','0'),(518,'default',0,'payment/free/order_status','pending'),(519,'default',0,'payment/free/payment_action',NULL),(520,'default',0,'payment/free/allowspecific','0'),(521,'default',0,'payment/free/sort_order','1'),(522,'default',0,'payment/checkmo/active','0'),(523,'default',0,'payment/checkmo/title','Check / Money order'),(524,'default',0,'payment/checkmo/order_status','pending'),(525,'default',0,'payment/checkmo/allowspecific','0'),(526,'default',0,'payment/checkmo/payable_to',NULL),(527,'default',0,'payment/checkmo/mailing_address',NULL),(528,'default',0,'payment/checkmo/min_order_total',NULL),(529,'default',0,'payment/checkmo/max_order_total',NULL),(530,'default',0,'payment/checkmo/sort_order',NULL),(531,'default',0,'payment/purchaseorder/active','0'),(532,'default',0,'payment/purchaseorder/title','Purchase Order'),(533,'default',0,'payment/purchaseorder/order_status','pending'),(534,'default',0,'payment/purchaseorder/allowspecific','0'),(535,'default',0,'payment/purchaseorder/min_order_total',NULL),(536,'default',0,'payment/purchaseorder/max_order_total',NULL),(537,'default',0,'payment/purchaseorder/sort_order',NULL),(538,'default',0,'payment/authorizenet_directpost/active','0'),(539,'default',0,'payment/authorizenet_directpost/payment_action','authorize'),(540,'default',0,'payment/authorizenet_directpost/title','Credit Card Direct Post (Authorize.net)'),(541,'default',0,'payment/authorizenet_directpost/login',NULL),(542,'default',0,'payment/authorizenet_directpost/trans_key',NULL),(543,'default',0,'payment/authorizenet_directpost/trans_md5',NULL),(544,'default',0,'payment/authorizenet_directpost/order_status','processing'),(545,'default',0,'payment/authorizenet_directpost/test','1'),(546,'default',0,'payment/authorizenet_directpost/cgi_url','https://secure.authorize.net/gateway/transact.dll'),(547,'default',0,'payment/authorizenet_directpost/currency','USD'),(548,'default',0,'payment/authorizenet_directpost/debug','0'),(549,'default',0,'payment/authorizenet_directpost/email_customer','0'),(550,'default',0,'payment/authorizenet_directpost/merchant_email',NULL),(551,'default',0,'payment/authorizenet_directpost/cctypes','AE,VI,MC,DI'),(552,'default',0,'payment/authorizenet_directpost/useccv','0'),(553,'default',0,'payment/authorizenet_directpost/allowspecific','0'),(554,'default',0,'payment/authorizenet_directpost/min_order_total',NULL),(555,'default',0,'payment/authorizenet_directpost/max_order_total',NULL),(556,'default',0,'payment/authorizenet_directpost/sort_order',NULL),(557,'default',0,'payment/authorizenet/active','0'),(558,'default',0,'payment/authorizenet/using_pbridge','0'),(559,'default',0,'payment/authorizenet/title','Credit Card (Authorize.net)'),(560,'default',0,'payment/authorizenet/payment_action','authorize'),(561,'default',0,'payment/authorizenet/login',NULL),(562,'default',0,'payment/authorizenet/trans_key',NULL),(563,'default',0,'payment/authorizenet/order_status','processing'),(564,'default',0,'payment/authorizenet/test','1'),(565,'default',0,'payment/authorizenet/cgi_url','https://secure.authorize.net/gateway/transact.dll'),(566,'default',0,'payment/authorizenet/currency','USD'),(567,'default',0,'payment/authorizenet/debug','0'),(568,'default',0,'payment/authorizenet/email_customer','0'),(569,'default',0,'payment/authorizenet/merchant_email',NULL),(570,'default',0,'payment/authorizenet/cctypes','AE,VI,MC,DI'),(571,'default',0,'payment/authorizenet/useccv','0'),(572,'default',0,'payment/authorizenet/allowspecific','0'),(573,'default',0,'payment/authorizenet/min_order_total',NULL),(574,'default',0,'payment/authorizenet/max_order_total',NULL),(575,'default',0,'payment/authorizenet/sort_order',NULL),(576,'default',0,'payment/authorizenet/allow_partial_authorization','0'),(577,'default',0,'payment/authorizenet/centinel','0'),(578,'default',0,'payment/ogone/active','0'),(579,'default',0,'payment/ogone/debug_flag','0'),(580,'default',0,'payment/ogone/title','Ogone'),(581,'default',0,'payment/ogone/pspid',NULL),(582,'default',0,'payment/ogone/secret_key_out',NULL),(583,'default',0,'payment/ogone/secret_key_in',NULL),(584,'default',0,'payment/ogone/shamode','0'),(585,'default',0,'payment/ogone/ogone_gateway','https://secure.ogone.com/ncol/test/orderstandard.asp'),(586,'default',0,'payment/ogone/payment_action','authorize'),(587,'default',0,'payment/ogone/template','ogone'),(588,'default',0,'payment/ogone/html_title',NULL),(589,'default',0,'payment/ogone/bgcolor',NULL),(590,'default',0,'payment/ogone/txtcolor',NULL),(591,'default',0,'payment/ogone/tblbgcolor',NULL),(592,'default',0,'payment/ogone/tbltxtcolor',NULL),(593,'default',0,'payment/ogone/buttonbgcolor',NULL),(594,'default',0,'payment/ogone/buttontxtcolor',NULL),(595,'default',0,'payment/ogone/fonttype',NULL),(596,'default',0,'payment/ogone/logo',NULL),(597,'default',0,'payment/ogone/pmlist','0'),(598,'default',0,'payment/keyclient/active','1'),(599,'default',0,'payment/keyclient/test_mode','1'),(600,'default',0,'payment/keyclient/title','Paga con Carta di credito'),(601,'default',0,'payment/keyclient/order_new_state','pending'),(602,'default',0,'payment/keyclient/order_fault_state','canceled'),(603,'default',0,'payment/keyclient/order_success_state','processing'),(604,'default',0,'payment/keyclient/merchant_alias','payment_testm_urlmac'),(605,'default',0,'payment/keyclient/mac_key','esempiodicalcolomac'),(606,'default',0,'payment/keyclient/mac_encryption','md5'),(607,'default',0,'payment/keyclient/payment_url','https://ecommerce.cim-italia.it/ecomm/DispatcherServlet'),(608,'default',0,'dev/restrict/allow_ips',NULL),(609,'default',0,'dev/debug/profiler','0'),(610,'default',0,'dev/template/allow_symlink','0'),(611,'default',0,'dev/translate_inline/active','0'),(612,'default',0,'dev/translate_inline/active_admin','0'),(613,'default',0,'dev/log/active','0'),(614,'default',0,'dev/log/file','system.log'),(615,'default',0,'dev/log/exception_file','exception.log'),(616,'default',0,'dev/js/merge_files','0'),(617,'default',0,'dev/css/merge_css_files','0'),(618,'default',0,'gomage_activation/lightcheckout/key','j0PeL3YhNfJcTp50R5LzJRiBOKUXAb+j6Ge5/NZLVDLqt1TQHUVt9A=='),(619,'default',0,'gomage_activation/lightcheckout/ar','0:2:5706ca432258d108:UM4IuJPoDNNf/c/785sp2a4FLKLP2bPQc/mrnOOlglBvfg3ZFjL6NNExYg6P2xQUJJeCItKhV0W1JPkS3XO9yw=='),(620,'default',0,'gomage_activation/lightcheckout/websites','0:2:efd58a829b3789e0:1K/nfAO/2KihMFmG3Eh2wnhXkGRn7iV1O6OVuLodmRez3qw4WIA7TPa2EInX0JcSc3+aVpMuK190nWZliSE7mo8uDs02nu7VNuQSfYYjcKnZ7/bNBeWTS3s+jrrJQphSgaFPhVx/J5PbEULbvcpcU6pkFfYrpGmOL54htTDUTykOeTZtaUh1SjK5k8Mekfcf/zPeTwIbqQAm2F+Y79BD9YGW9p1eDFBU/R6CC3CPcUACjnrYdOIbGfCWaieX4YUie+dr+S0Mi5ebf9yqs3dcQh3FkcV5UhCrbTLT8V5v23w='),(621,'default',0,'gomage_activation/lightcheckout/time','0:2:67c5f116621b4626:eJBwQVDFH8hY33eYIuZZQq7VFOmNwbWImpTQYbDxr87Y/VYPMkQ3nWAB6g8xLM6z0Fp+j71FneYdju9VDYtT3tgBBvBAhqVwBPVxVT5bQGt2kj8Fr6b+jZDILekTYrLox8kyqenKTU3rMRdRjFAtpfVhImtf5WKa0wkZpPcwqj4gmKeETMiqlgRIm6BI5lc6C5KSqxXSN1i7Sd9q1UIdk4QifT5EUL3IqkR1tWcUi8+dzYTgx35XrIlf1xVXcKpi4WQ7u1Lsihdcsv6cb4vn9VN2WcsmDtfwLojLpdCvvrN42bOoyyMPvgEoktF9iWNE'),(622,'default',0,'gomage_activation/lightcheckout/installed','1'),(623,'default',0,'gomage_activation/lightcheckout/count','0'),(624,'default',0,'gomage_checkout/general/enabled','1'),(625,'default',0,'gomage_checkout/general/skin','gray'),(626,'default',0,'gomage_checkout/general/button_skin','square-black'),(627,'default',0,'gomage_checkout/general/default_country','IT'),(628,'default',0,'gomage_checkout/general/default_shipping_method','flatrate_flatrate'),(629,'default',0,'gomage_checkout/general/default_payment_method','keyclient'),(630,'default',0,'gomage_checkout/general/title','Esegui il pagamento'),(631,'default',0,'gomage_checkout/general/content','questo è il contenuto della pagina'),(632,'default',0,'gomage_checkout/general/different_shipping_enabled','1'),(633,'default',0,'gomage_checkout/general/allow_change_qty','1'),(634,'default',0,'gomage_checkout/general/disable_cart','1'),(635,'default',0,'gomage_checkout/general/allow_remove','1'),(636,'default',0,'gomage_checkout/general/enable_discount','1'),(637,'default',0,'gomage_checkout/general/order_summary','1'),(638,'default',0,'gomage_checkout/general/disable_mobile','1'),(639,'default',0,'gomage_checkout/registration/mode','0'),(640,'default',0,'gomage_checkout/registration/account_checkbox','1'),(641,'default',0,'gomage_checkout/deliverydate/deliverydate','0'),(642,'default',0,'gomage_checkout/deliverydate/config','a:0:{}'),(643,'default',0,'gomage_checkout/deliverydate/nonworking','a:0:{}'),(644,'default',0,'gomage_checkout/deliverydate/interval_days','0'),(645,'default',0,'gomage_checkout/deliverydate/dateformat','0'),(646,'default',0,'gomage_checkout/deliverydate/shipping_methods',NULL),(647,'default',0,'gomage_checkout/deliverydate/display_datetext','0'),(648,'default',0,'gomage_checkout/deliverydate/datetext',NULL),(649,'default',0,'gomage_checkout/ajax/country','1'),(650,'default',0,'gomage_checkout/ajax/region','1'),(651,'default',0,'gomage_checkout/ajax/postcode','1'),(652,'default',0,'gomage_checkout/ajax/city','1'),(653,'default',0,'gomage_checkout/address_fields/address_book','1'),(654,'default',0,'gomage_checkout/address_fields/company','opt'),(655,'default',0,'gomage_checkout/address_fields/country_id','1'),(656,'default',0,'gomage_checkout/address_fields/city','req'),(657,'default',0,'gomage_checkout/address_fields/telephone','req'),(658,'default',0,'gomage_checkout/address_fields/fax','opt'),(659,'default',0,'gomage_checkout/address_fields/region','req'),(660,'default',0,'gomage_checkout/address_fields/street','req'),(661,'default',0,'gomage_checkout/address_fields/postcode','req'),(662,'default',0,'gomage_checkout/address_fields/comments','1'),(663,'default',0,'gomage_checkout/address_fields/newsletter','1'),(664,'default',0,'gomage_checkout/address_fields/payments_buttons',NULL),(665,'default',0,'gomage_checkout/address_sort/company_order','1'),(666,'default',0,'gomage_checkout/address_sort/country_id_order','2'),(667,'default',0,'gomage_checkout/address_sort/city_order','4'),(668,'default',0,'gomage_checkout/address_sort/telephone_order','6'),(669,'default',0,'gomage_checkout/address_sort/fax_order','6'),(670,'default',0,'gomage_checkout/address_sort/region_order','3'),(671,'default',0,'gomage_checkout/address_sort/street_order','5'),(672,'default',0,'gomage_checkout/address_sort/postcode_order','3'),(673,'default',0,'gomage_checkout/vat/enabled','1'),(674,'default',0,'gomage_checkout/vat/vat_verification','0'),(675,'default',0,'gomage_checkout/vat/country','IT'),(676,'default',0,'gomage_checkout/vat/base_country','0'),(677,'default',0,'gomage_checkout/vat/if_not_base_country','0'),(678,'default',0,'gomage_checkout/vat/rule','1'),(679,'default',0,'gomage_checkout/vat/show_checkbox','2'),(680,'default',0,'gomage_checkout/vat/text_under','Acquista senza I.V.A. (solo per EU)'),(681,'default',0,'gomage_checkout/termsandconditions/enabled','1'),(682,'default',0,'gomage_checkout/termsandconditions/content','Testo delle condizioni di vendita.'),(683,'default',0,'gomage_checkout/termsandconditions/width','500'),(684,'default',0,'gomage_checkout/termsandconditions/height','300'),(685,'default',0,'gomage_checkout/poll_settings/display','1'),(686,'default',0,'gomage_checkout/poll_settings/question',NULL),(687,'default',0,'gomage_checkout/gift_wrapping/enable','0'),(688,'default',0,'gomage_checkout/gift_wrapping/title','Gift Wrapping'),(689,'default',0,'gomage_checkout/gift_wrapping/price',NULL),(690,'default',0,'gomage_checkout/gift_wrapping/tax_class','0'),(691,'default',0,'carriers/flatrate/active','1'),(692,'default',0,'carriers/flatrate/title','A mezzo corriere'),(693,'default',0,'carriers/flatrate/name','Costo di spedizione'),(694,'default',0,'carriers/flatrate/type','O'),(695,'default',0,'carriers/flatrate/price','5.00'),(696,'default',0,'carriers/flatrate/handling_type','F'),(697,'default',0,'carriers/flatrate/handling_fee',NULL),(698,'default',0,'carriers/flatrate/specificerrmsg','This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.'),(699,'default',0,'carriers/flatrate/sallowspecific','1'),(700,'default',0,'carriers/flatrate/specificcountry','IT'),(701,'default',0,'carriers/flatrate/showmethod','0'),(702,'default',0,'carriers/flatrate/sort_order',NULL),(703,'default',0,'carriers/tablerate/active','0'),(704,'default',0,'carriers/tablerate/title','Best Way'),(705,'default',0,'carriers/tablerate/name','Table Rate'),(706,'default',0,'carriers/tablerate/condition_name','package_weight'),(707,'default',0,'carriers/tablerate/include_virtual_price','1'),(708,'default',0,'carriers/tablerate/handling_type','F'),(709,'default',0,'carriers/tablerate/handling_fee',NULL),(710,'default',0,'carriers/tablerate/specificerrmsg','This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.'),(711,'default',0,'carriers/tablerate/sallowspecific','0'),(712,'default',0,'carriers/tablerate/specificcountry',NULL),(713,'default',0,'carriers/tablerate/showmethod','0'),(714,'default',0,'carriers/tablerate/sort_order',NULL),(715,'default',0,'carriers/freeshipping/active','0'),(716,'default',0,'carriers/freeshipping/title','Free Shipping'),(717,'default',0,'carriers/freeshipping/name','Free'),(718,'default',0,'carriers/freeshipping/free_shipping_subtotal',NULL),(719,'default',0,'carriers/freeshipping/specificerrmsg','This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.'),(720,'default',0,'carriers/freeshipping/sallowspecific','0'),(721,'default',0,'carriers/freeshipping/specificcountry',NULL),(722,'default',0,'carriers/freeshipping/showmethod','0'),(723,'default',0,'carriers/freeshipping/sort_order',NULL),(724,'default',0,'carriers/ups/active','0'),(725,'default',0,'carriers/ups/type','UPS'),(726,'default',0,'carriers/ups/password',NULL),(727,'default',0,'carriers/ups/access_license_number',NULL),(728,'default',0,'carriers/ups/username',NULL),(729,'default',0,'carriers/ups/mode_xml','1'),(730,'default',0,'carriers/ups/gateway_xml_url','https://onlinetools.ups.com/ups.app/xml/Rate'),(731,'default',0,'carriers/ups/origin_shipment','Shipments Originating in United States'),(732,'default',0,'carriers/ups/negotiated_active','0'),(733,'default',0,'carriers/ups/gateway_url','http://www.ups.com/using/services/rave/qcostcgi.cgi'),(734,'default',0,'carriers/ups/title','United Parcel Service'),(735,'default',0,'carriers/ups/shipper_number',NULL),(736,'default',0,'carriers/ups/container','CP'),(737,'default',0,'carriers/ups/dest_type','RES'),(738,'default',0,'carriers/ups/unit_of_measure','LBS'),(739,'default',0,'carriers/ups/tracking_xml_url','https://www.ups.com/ups.app/xml/Track'),(740,'default',0,'carriers/ups/pickup','CC'),(741,'default',0,'carriers/ups/max_package_weight','150'),(742,'default',0,'carriers/ups/min_package_weight','0.1'),(743,'default',0,'carriers/ups/handling_type','F'),(744,'default',0,'carriers/ups/handling_action','O'),(745,'default',0,'carriers/ups/handling_fee',NULL),(746,'default',0,'carriers/ups/allowed_methods','1DM,1DML,1DA,1DAL,1DAPI,1DP,1DPL,2DM,2DML,2DA,2DAL,3DS,GND,GNDCOM,GNDRES,STD,XPR,WXS,XPRL,XDM,XDML,XPD'),(747,'default',0,'carriers/ups/free_method','GND'),(748,'default',0,'carriers/ups/free_shipping_enable','0'),(749,'default',0,'carriers/ups/free_shipping_subtotal',NULL),(750,'default',0,'carriers/ups/specificerrmsg','This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.'),(751,'default',0,'carriers/ups/sallowspecific','0'),(752,'default',0,'carriers/ups/specificcountry',NULL),(753,'default',0,'carriers/ups/debug','0'),(754,'default',0,'carriers/ups/showmethod','0'),(755,'default',0,'carriers/ups/sort_order',NULL),(756,'default',0,'carriers/usps/active','0'),(757,'default',0,'carriers/usps/gateway_url','http://production.shippingapis.com/ShippingAPI.dll'),(758,'default',0,'carriers/usps/gateway_secure_url','https://secure.shippingapis.com/ShippingAPI.dll'),(759,'default',0,'carriers/usps/title','United States Postal Service'),(760,'default',0,'carriers/usps/userid',NULL),(761,'default',0,'carriers/usps/password',NULL),(762,'default',0,'carriers/usps/container','VARIABLE'),(763,'default',0,'carriers/usps/size','REGULAR'),(764,'default',0,'carriers/usps/machinable','true'),(765,'default',0,'carriers/usps/max_package_weight','70'),(766,'default',0,'carriers/usps/handling_type','F'),(767,'default',0,'carriers/usps/handling_action','O'),(768,'default',0,'carriers/usps/handling_fee',NULL),(769,'default',0,'carriers/usps/allowed_methods','Bound Printed Matter,Express Mail,Express Mail Flat Rate Envelope,Express Mail Flat Rate Envelope Hold For Pickup,Express Mail Flat-Rate Envelope Sunday/Holiday Guarantee,Express Mail Hold For Pickup,Express Mail International,Express Mail International Flat Rate Envelope,Express Mail PO to PO,Express Mail Sunday/Holiday Guarantee,First-Class Mail International Large Envelope,First-Class Mail International Letters,First-Class Mail International Package,First-Class,First-Class Mail,First-Class Mail Flat,First-Class Mail Large Envelope,First-Class Mail International,First-Class Mail Letter,First-Class Mail Parcel,First-Class Mail Package,Global Express Guaranteed (GXG),Global Express Guaranteed Non-Document Non-Rectangular,Global Express Guaranteed Non-Document Rectangular,Library Mail,Media Mail,Parcel Post,Priority Mail,Priority Mail Small Flat Rate Box,Priority Mail Medium Flat Rate Box,Priority Mail Large Flat Rate Box,Priority Mail Flat Rate Box,Priority Mail Flat Rate Envelope,Priority Mail International,Priority Mail International Flat Rate Box,Priority Mail International Flat Rate Envelope,Priority Mail International Small Flat Rate Box,Priority Mail International Medium Flat Rate Box,Priority Mail International Large Flat Rate Box,USPS GXG Envelopes'),(770,'default',0,'carriers/usps/free_method',NULL),(771,'default',0,'carriers/usps/free_shipping_subtotal',NULL),(772,'default',0,'carriers/usps/specificerrmsg','This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.'),(773,'default',0,'carriers/usps/sallowspecific','0'),(774,'default',0,'carriers/usps/specificcountry',NULL),(775,'default',0,'carriers/usps/debug','0'),(776,'default',0,'carriers/usps/showmethod','0'),(777,'default',0,'carriers/usps/sort_order',NULL),(778,'default',0,'carriers/usps/free_shipping_enable','0'),(779,'default',0,'carriers/fedex/active','0'),(780,'default',0,'carriers/fedex/title','Federal Express'),(781,'default',0,'carriers/fedex/account',NULL),(782,'default',0,'carriers/fedex/meter_number',NULL),(783,'default',0,'carriers/fedex/key',NULL),(784,'default',0,'carriers/fedex/password',NULL),(785,'default',0,'carriers/fedex/sandbox_mode','0'),(786,'default',0,'carriers/fedex/packaging','YOUR_PACKAGING'),(787,'default',0,'carriers/fedex/dropoff','REGULAR_PICKUP'),(788,'default',0,'carriers/fedex/max_package_weight','150'),(789,'default',0,'carriers/fedex/handling_type','F'),(790,'default',0,'carriers/fedex/handling_action','O'),(791,'default',0,'carriers/fedex/handling_fee',NULL),(792,'default',0,'carriers/fedex/residence_delivery','0'),(793,'default',0,'carriers/fedex/allowed_methods','EUROPE_FIRST_INTERNATIONAL_PRIORITY,FEDEX_1_DAY_FREIGHT,FEDEX_2_DAY_FREIGHT,FEDEX_2_DAY,FEDEX_3_DAY_FREIGHT,FEDEX_EXPRESS_SAVER,FEDEX_GROUND,FIRST_OVERNIGHT,GROUND_HOME_DELIVERY,INTERNATIONAL_ECONOMY,INTERNATIONAL_ECONOMY_FREIGHT,INTERNATIONAL_FIRST,INTERNATIONAL_PRIORITY_FREIGHT,PRIORITY_OVERNIGHT'),(794,'default',0,'carriers/fedex/free_method','FEDEX_GROUND'),(795,'default',0,'carriers/fedex/free_shipping_enable','0'),(796,'default',0,'carriers/fedex/free_shipping_subtotal',NULL),(797,'default',0,'carriers/fedex/specificerrmsg','This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.'),(798,'default',0,'carriers/fedex/sallowspecific','0'),(799,'default',0,'carriers/fedex/specificcountry',NULL),(800,'default',0,'carriers/fedex/debug','0'),(801,'default',0,'carriers/fedex/showmethod','0'),(802,'default',0,'carriers/fedex/sort_order',NULL),(803,'default',0,'carriers/dhl/active','0'),(804,'default',0,'carriers/dhl/gateway_url','https://eCommerce.airborne.com/ApiLandingTest.asp'),(805,'default',0,'carriers/dhl/title','DHL'),(806,'default',0,'carriers/dhl/id',NULL),(807,'default',0,'carriers/dhl/password',NULL),(808,'default',0,'carriers/dhl/account',NULL),(809,'default',0,'carriers/dhl/shipping_intlkey',NULL),(810,'default',0,'carriers/dhl/shipping_key',NULL),(811,'default',0,'carriers/dhl/shipment_type','P'),(812,'default',0,'carriers/dhl/handling_type','F'),(813,'default',0,'carriers/dhl/handling_action','O'),(814,'default',0,'carriers/dhl/contentdesc','Big Box'),(815,'default',0,'carriers/dhl/handling_fee',NULL),(816,'default',0,'carriers/dhl/dutiable','0'),(817,'default',0,'carriers/dhl/max_package_weight','150'),(818,'default',0,'carriers/dhl/dutypaymenttype','R'),(819,'default',0,'carriers/dhl/allowed_methods','IE,E SAT,E 10:30AM,E,N,S,G'),(820,'default',0,'carriers/dhl/specificerrmsg','This shipping method is currently unavailable. If you would like to ship using this shipping method, please contact us.'),(821,'default',0,'carriers/dhl/free_method','G'),(822,'default',0,'carriers/dhl/free_shipping_enable','0'),(823,'default',0,'carriers/dhl/free_shipping_subtotal',NULL),(824,'default',0,'carriers/dhl/additional_protection_enabled','0'),(825,'default',0,'carriers/dhl/additional_protection_min_value',NULL),(826,'default',0,'carriers/dhl/additional_protection_use_subtotal','0'),(827,'default',0,'carriers/dhl/additional_protection_value',NULL),(828,'default',0,'carriers/dhl/additional_protection_rounding','0'),(829,'default',0,'carriers/dhl/hazardous_materials','0'),(830,'default',0,'carriers/dhl/default_length',NULL),(831,'default',0,'carriers/dhl/default_width',NULL),(832,'default',0,'carriers/dhl/default_height',NULL),(833,'default',0,'carriers/dhl/shipment_days','1,2,3,4,5,6'),(834,'default',0,'carriers/dhl/intl_shipment_days','1,2,3,4,5'),(835,'default',0,'carriers/dhl/sallowspecific','0'),(836,'default',0,'carriers/dhl/specificcountry',NULL),(837,'default',0,'carriers/dhl/showmethod','0'),(838,'default',0,'carriers/dhl/debug','0'),(839,'default',0,'carriers/dhl/sort_order',NULL); /*!40000 ALTER TABLE `core_config_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_email_template` -- DROP TABLE IF EXISTS `core_email_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Email Templates'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Flag'; /*!40101 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;}','2012-02-08 21:10:16'),(2,'catalog_product_flat',0,'a:1:{s:8:\"is_built\";b:1;}','2012-02-28 10:27:52'); /*!40000 ALTER TABLE `core_flag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_layout_link` -- DROP TABLE IF EXISTS `core_layout_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CORE_LAYOUT_LINK_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CORE_LYT_LNK_LYT_UPDATE_ID_CORE_LYT_UPDATE_LYT_UPDATE_ID` FOREIGN KEY (`layout_update_id`) REFERENCES `core_layout_update` (`layout_update_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Layout Link'; /*!40101 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 (2,0,'frontend','pro','default',2),(9,0,'frontend','pro','default',9); /*!40000 ALTER TABLE `core_layout_link` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_layout_update` -- DROP TABLE IF EXISTS `core_layout_update`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Layout Updates'; /*!40101 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 (2,'default','block_id2',0),(9,'cms_index_index','block_id3',0); /*!40000 ALTER TABLE `core_layout_update` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_resource` -- DROP TABLE IF EXISTS `core_resource`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Resources'; /*!40101 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.0','1.6.1.0'),('api_setup','1.6.0.0','1.6.0.0'),('backup_setup','1.6.0.0','1.6.0.0'),('bundle_setup','1.6.0.0','1.6.0.0'),('catalogindex_setup','1.6.0.0','1.6.0.0'),('cataloginventory_setup','1.6.0.0','1.6.0.0'),('catalogrule_setup','1.6.0.1','1.6.0.1'),('catalogsearch_setup','1.6.0.0','1.6.0.0'),('catalog_setup','1.6.0.0.6','1.6.0.0.6'),('checkout_setup','1.6.0.0','1.6.0.0'),('cms_setup','1.6.0.0','1.6.0.0'),('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.2','1.6.0.2'),('cron_setup','1.6.0.0','1.6.0.0'),('customer_setup','1.6.1.0','1.6.1.0'),('dataflow_setup','1.6.0.0','1.6.0.0'),('directory_setup','1.6.0.0','1.6.0.0'),('downloadable_setup','1.6.0.0.1','1.6.0.0.1'),('easylightbox_setup','1.0.0','1.0.0'),('easytabs_setup','1.1.0','1.1.0'),('eav_setup','1.6.0.0','1.6.0.0'),('enterprise_customerbalance_setup','1.11.0.0','1.11.0.0'),('enterprise_enterprise_setup','1.11.0.0','1.11.0.0'),('enterprise_giftcardaccount_setup','1.11.0.0','1.11.0.0'),('enterprise_giftcard_setup','1.11.0.0','1.11.0.0'),('enterprise_pci_setup','1.11.0.0','1.11.0.0'),('enterprise_reward_setup','1.11.0.0','1.11.0.0'),('giftmessage_setup','1.6.0.0','1.6.0.0'),('gomage_checkout_setup','0.0.3.1','0.0.3.1'),('gomage_deliverydate_setup','0.0.1','0.0.1'),('googlecheckout_setup','1.6.0.1','1.6.0.1'),('ig_lightbox_setup','1.0.15','1.0.15'),('importexport_setup','1.6.0.2','1.6.0.2'),('index_setup','1.6.0.0','1.6.0.0'),('log_setup','1.6.0.0','1.6.0.0'),('moneybookers_setup','1.6.0.0','1.6.0.0'),('newsletter_setup','1.6.0.0','1.6.0.0'),('ogone_setup','1.6.0.0','1.6.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.1','1.6.0.1'),('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'),('quickshop_setup','0.1.0','0.1.0'),('rating_setup','1.6.0.0','1.6.0.0'),('reports_setup','1.6.0.0','1.6.0.0'),('review_setup','1.6.0.0','1.6.0.0'),('salesrule_setup','1.6.0.1','1.6.0.1'),('sales_setup','1.6.0.4','1.6.0.4'),('sendfriend_setup','1.6.0.0','1.6.0.0'),('shipping_setup','1.6.0.0','1.6.0.0'),('sitemap_setup','1.6.0.0','1.6.0.0'),('tag_setup','1.6.0.0','1.6.0.0'),('tax_setup','1.6.0.3','1.6.0.3'),('usa_setup','1.6.0.1','1.6.0.1'),('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'),('xmlconnect_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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Database Sessions Storage'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CORE_STORE_GROUP_ID_CORE_STORE_GROUP_GROUP_ID` FOREIGN KEY (`group_id`) REFERENCES `core_store_group` (`group_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CORE_STORE_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Stores'; /*!40101 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,'default',1,1,'Default Store View',0,1); /*!40000 ALTER TABLE `core_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_store_group` -- DROP TABLE IF EXISTS `core_store_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CORE_STORE_GROUP_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Store Groups'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`key_id`), UNIQUE KEY `UNQ_CORE_TRANSLATE_STORE_ID_LOCALE_STRING` (`store_id`,`locale`,`string`), KEY `IDX_CORE_TRANSLATE_STORE_ID` (`store_id`), CONSTRAINT `FK_CORE_TRANSLATE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8 COMMENT='Translations'; /*!40101 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 */; INSERT INTO `core_translate` VALUES (1,'Colore',0,'Colore','en_US'),(2,'Risoluzione',0,'Risoluzione','en_US'),(3,'Zoom ottico',0,'Zoom ottico','en_US'),(4,'LCD',0,'LCD','en_US'),(5,'Tipo batteria',0,'Tipo batteria','en_US'),(6,'Obiettivo grandangolare',0,'Obiettivo grandangolare','en_US'),(7,'Lenti',0,'Lenti','en_US'),(8,'Sensore',0,'Sensore','en_US'),(9,'Riconoscimento volti',0,'Riconoscimento volti','en_US'),(10,'Riconoscimento persone',0,'Riconoscimento persone','en_US'),(11,'Sorridi e scatta',0,'Sorridi e scatta','en_US'),(12,'Riconoscimento occhi chiusi',0,'Riconoscimento occhi chiusi','en_US'),(13,'Riconoscimento Animali',0,'Riconoscimento Animali','en_US'),(14,'RAW',0,'RAW','en_US'),(15,'Touch screen',0,'Touch screen','en_US'),(16,'Caricamento semplificato You Tube / Faceook',0,'Caricamento semplificato You Tube / Faceook','en_US'),(17,'Stabilizzatore di immagine',0,'Stabilizzatore di immagine','en_US'),(18,'3D capacità',0,'3D capacità','en_US'),(19,'subacquea',0,'subacquea','en_US'),(20,'Video',0,'Video','en_US'),(21,'uscita HDMI',0,'uscita HDMI','en_US'),(22,'Uscita video',0,'Uscita video','en_US'),(23,'Memo vocale',0,'Memo vocale','en_US'),(24,'supporti di memorizzazione',0,'supporti di memorizzazione','en_US'),(25,'Caricabatterie',0,'Caricabatterie','en_US'),(26,'Alimentazione CA',0,'Alimentazione CA','en_US'),(27,'Peso',0,'Peso','en_US'); /*!40000 ALTER TABLE `core_translate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_url_rewrite` -- DROP TABLE IF EXISTS `core_url_rewrite`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CORE_URL_REWRITE_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CORE_URL_REWRITE_PRODUCT_ID_CATALOG_CATEGORY_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CORE_URL_REWRITE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=122 DEFAULT CHARSET=utf8 COMMENT='Url Rewrites'; /*!40101 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','fotocamere-digitali.html','catalog/category/view/id/3',1,NULL,NULL,3,NULL),(2,1,'product/1','finepix-av100.html','catalog/product/view/id/1',1,NULL,NULL,NULL,1),(3,1,'product/1/3','fotocamere-digitali/finepix-av100.html','catalog/product/view/id/1/category/3',1,NULL,NULL,3,1),(18,1,'product/2','finepix-av100-2.html','catalog/product/view/id/2',1,NULL,NULL,NULL,2),(19,1,'product/2/3','fotocamere-digitali/finepix-av100-2.html','catalog/product/view/id/2/category/3',1,NULL,NULL,3,2),(22,1,'category/4','accessori.html','catalog/category/view/id/4',1,NULL,NULL,4,NULL),(24,1,'product/3','accessorio.html','catalog/product/view/id/3',1,NULL,NULL,NULL,3),(25,1,'product/3/4','accessori/accessorio.html','catalog/product/view/id/3/category/4',1,NULL,NULL,4,3),(32,1,'20557500_1329406003','finepix-av100-1.html','finepix-av100-2.html',0,'RP',NULL,NULL,2),(33,1,'21890100_1329406003','fotocamere-digitali/finepix-av100-1.html','fotocamere-digitali/finepix-av100-2.html',0,'RP',NULL,3,2),(34,1,'product/4','finepix-x10.html','catalog/product/view/id/4',1,NULL,NULL,NULL,4),(35,1,'product/5','fujifilm-x-s1.html','catalog/product/view/id/5',1,NULL,NULL,NULL,5),(36,1,'product/6','fujifilm-x100.html','catalog/product/view/id/6',1,NULL,NULL,NULL,6),(37,1,'product/4/3','fotocamere-digitali/finepix-x10.html','catalog/product/view/id/4/category/3',1,NULL,NULL,3,4),(41,1,'product/5/3','fotocamere-digitali/fujifilm-x-s1.html','catalog/product/view/id/5/category/3',1,NULL,NULL,3,5),(45,1,'product/6/3','fotocamere-digitali/fujifilm-x100.html','catalog/product/view/id/6/category/3',1,NULL,NULL,3,6),(55,1,'category/2','.html','catalog/category/view/id/2',1,NULL,NULL,2,NULL),(72,1,'category/6','fotocamere-digitali/finepix-serie-j.html','catalog/category/view/id/6',1,NULL,NULL,6,NULL),(74,1,'category/8','fotocamere-digitali/finepix-serie-f.html','catalog/category/view/id/8',1,NULL,NULL,8,NULL),(76,1,'category/10','fotocamere-digitali/fujiflm-serie-x.html','catalog/category/view/id/10',1,NULL,NULL,10,NULL),(81,1,'73980600_1330183012','fotocamere-digitali/FinePix Serie J.html','fotocamere-digitali/finepix-serie-j.html',0,'RP',NULL,6,NULL),(82,1,'38900600_1330183022','fotocamere-digitali/FinePix Serie F.html','fotocamere-digitali/finepix-serie-f.html',0,'RP',NULL,8,NULL),(83,1,'90605900_1330183028','fotocamere-digitali/Fujiflm Serie X.html','fotocamere-digitali/fujiflm-serie-x.html',0,'RP',NULL,10,NULL),(84,1,'category/11','fotocamere-digitali/finepix-serie-a.html','catalog/category/view/id/11',1,NULL,NULL,11,NULL),(85,1,'category/12','fotocamere-digitali/finepix-serie-t-xp.html','catalog/category/view/id/12',1,NULL,NULL,12,NULL),(86,1,'category/13','fotocamere-digitali/finepix-serie-s-hs.html','catalog/category/view/id/13',1,NULL,NULL,13,NULL),(87,1,'category/16','accessori/custodie-macchine-digitali-2.html','catalog/category/view/id/16',1,NULL,NULL,16,NULL),(88,1,'category/17','accessori/custodie-subaquee-1.html','catalog/category/view/id/17',1,NULL,NULL,17,NULL),(89,1,'category/18','accessori/batterie.html','catalog/category/view/id/18',1,NULL,NULL,18,NULL),(90,1,'90227100_1330183759','accessori/custodie-macchine-digitali.html','accessori/custodie-macchine-digitali-2.html',0,'RP',NULL,16,NULL),(91,1,'90748700_1330183759','accessori/custodie-macchine-digitali/custodie-subaquee.html','accessori/custodie-subaquee-1.html',0,'RP',NULL,17,NULL),(92,1,'91209400_1330183759','accessori/custodie-macchine-digitali/custodie-subaquee/batterie.html','accessori/batterie.html',0,'RP',NULL,18,NULL),(93,1,'category/14','fotocamere-ricondizionate.html','catalog/category/view/id/14',1,NULL,NULL,14,NULL),(94,1,'category/15','estensione-garanzia.html','catalog/category/view/id/15',1,NULL,NULL,15,NULL),(95,1,'99310700_1330183841','custodie-macchine-digitali/custodie-subaquee.html','accessori/custodie-subaquee-1.html',0,'RP',NULL,17,NULL),(96,1,'99836700_1330183841','custodie-macchine-digitali/custodie-subaquee/batterie.html','accessori/batterie.html',0,'RP',NULL,18,NULL),(97,1,'09259900_1330183848','custodie-subaquee/batterie.html','accessori/batterie.html',0,'RP',NULL,18,NULL),(98,1,'87719200_1330183862','batterie.html','accessori/batterie.html',0,'RP',NULL,18,NULL),(99,1,'50231300_1330183869','custodie-subaquee.html','accessori/custodie-subaquee-1.html',0,'RP',NULL,17,NULL),(100,1,'03262100_1330183875','custodie-macchine-digitali.html','accessori/custodie-macchine-digitali-2.html',0,'RP',NULL,16,NULL),(101,1,'65359500_1330183901','accessori/custodie-macchine-digitali-1.html','accessori/custodie-macchine-digitali-2.html',0,'RP',NULL,16,NULL),(102,1,'18050600_1330183910','accessori/batterie/custodie-macchine-digitali.html','accessori/custodie-macchine-digitali-2.html',0,'RP',NULL,16,NULL),(103,1,'76313000_1330183933','accessori/custodie-subaquee.html','accessori/custodie-subaquee-1.html',0,'RP',NULL,17,NULL),(104,1,'75443300_1330183948','accessori/custodie-macchine-digitali-2/custodie-subaquee.html','accessori/custodie-subaquee-1.html',0,'RP',NULL,17,NULL),(106,1,'category/20','accessori/caricabatterie.html','catalog/category/view/id/20',1,NULL,NULL,20,NULL),(107,1,'category/21','accessori/alimentatori.html','catalog/category/view/id/21',1,NULL,NULL,21,NULL),(108,1,'category/22','accessori/flash.html','catalog/category/view/id/22',1,NULL,NULL,22,NULL),(109,1,'category/23','accessori/cavi-collegamento.html','catalog/category/view/id/23',1,NULL,NULL,23,NULL),(110,1,'category/24','accessori/lettori-memory-card.html','catalog/category/view/id/24',1,NULL,NULL,24,NULL),(111,1,'category/25','accessori/software-manuali.html','catalog/category/view/id/25',1,NULL,NULL,25,NULL),(112,1,'category/26','accessori/carta-stampe-digitali.html','catalog/category/view/id/26',1,NULL,NULL,26,NULL),(113,1,'category/27','accessori/accesori-dedicati.html','catalog/category/view/id/27',1,NULL,NULL,27,NULL),(114,1,'category/28','accessori/kit.html','catalog/category/view/id/28',1,NULL,NULL,28,NULL),(115,1,'category/29','accessori/instax-film.html','catalog/category/view/id/29',1,NULL,NULL,29,NULL),(116,1,'product/3/6','fotocamere-digitali/finepix-serie-j/accessorio.html','catalog/product/view/id/3/category/6',1,NULL,NULL,6,3),(117,1,'product/4/6','fotocamere-digitali/finepix-serie-j/finepix-x10.html','catalog/product/view/id/4/category/6',1,NULL,NULL,6,4),(118,1,'product/5/6','fotocamere-digitali/finepix-serie-j/fujifilm-x-s1.html','catalog/product/view/id/5/category/6',1,NULL,NULL,6,5),(119,1,'product/4/10','fotocamere-digitali/fujiflm-serie-x/finepix-x10.html','catalog/product/view/id/4/category/10',1,NULL,NULL,10,4),(120,1,'product/5/10','fotocamere-digitali/fujiflm-serie-x/fujifilm-x-s1.html','catalog/product/view/id/5/category/10',1,NULL,NULL,10,5),(121,1,'product/6/10','fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html','catalog/product/view/id/6/category/10',1,NULL,NULL,10,6); /*!40000 ALTER TABLE `core_url_rewrite` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `core_variable` -- DROP TABLE IF EXISTS `core_variable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variables'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CORE_VARIABLE_VALUE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CORE_VARIABLE_VALUE_VARIABLE_ID_CORE_VARIABLE_VARIABLE_ID` FOREIGN KEY (`variable_id`) REFERENCES `core_variable` (`variable_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variable Value'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Websites'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', 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`), CONSTRAINT `FK_COUPON_AGGREGATED_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', 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`), CONSTRAINT `FK_COUPON_AGGREGATED_ORDER_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated Order'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', 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`), CONSTRAINT `FK_COUPON_AGGREGATED_UPDATED_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated Updated'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cron Schedule'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_CUSTOMER_ADDRESS_ENTITY_PARENT_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity'; /*!40101 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 */; INSERT INTO `customer_address_entity` VALUES (1,2,0,NULL,1,'2012-03-02 12:47:33','2012-03-02 21:30:44',1); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_ADDR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ADDR_ENTT_DTIME_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ADDR_ENTT_DTIME_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Datetime'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_ADDR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ADDR_ENTT_DEC_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ADDR_ENTT_DEC_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Decimal'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_ADDR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ADDR_ENTT_INT_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ADDR_ENTT_INT_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Int'; /*!40101 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 */; INSERT INTO `customer_address_entity_int` VALUES (1,2,29,1,0); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_ADDR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ADDR_ENTT_TEXT_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ADDR_ENTT_TEXT_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Text'; /*!40101 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 */; INSERT INTO `customer_address_entity_text` VALUES (1,2,25,1,'Via Confalonieri'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_ADDR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ADDR_ENTT_VCHR_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ADDR_ENTT_VCHR_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Varchar'; /*!40101 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 */; INSERT INTO `customer_address_entity_varchar` VALUES (1,2,20,1,'stefano'),(2,2,22,1,'tresoldi'),(3,2,26,1,'Monza'),(4,2,28,1,'mb'),(5,2,27,1,'IT'),(6,2,31,1,'123123'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_EAV_ATTR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute'; /*!40101 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,NULL,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),(140,0,NULL,1,NULL,0,0,NULL),(141,0,NULL,1,NULL,0,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_EAV_ATTR_WS_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_EAV_ATTR_WS_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute Website'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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_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`), CONSTRAINT `FK_CUSTOMER_ENTITY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `FK_CUSTOMER_ENTITY_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Customer Entity'; /*!40101 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,'staff@tresoldi.net',1,NULL,1,'2012-03-02 12:44:28','2012-03-02 21:30:44',1); /*!40000 ALTER TABLE `customer_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_datetime` -- DROP TABLE IF EXISTS `customer_entity_datetime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ENTT_DTIME_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CUSTOMER_ENTITY_DATETIME_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Customer Entity Datetime'; /*!40101 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 */; INSERT INTO `customer_entity_datetime` VALUES (1,1,34,1,'2012-03-02 00:00:00'); /*!40000 ALTER TABLE `customer_entity_datetime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_decimal` -- DROP TABLE IF EXISTS `customer_entity_decimal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ENTT_DEC_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Decimal'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_ENTT_INT_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CUSTOMER_ENTITY_INT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CUSTOMER_ENTITY_INT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Customer Entity Int'; /*!40101 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 */; INSERT INTO `customer_entity_int` VALUES (1,1,140,1,1),(2,1,141,1,1),(7,1,13,1,1),(8,1,14,1,1); /*!40000 ALTER TABLE `customer_entity_int` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_entity_text` -- DROP TABLE IF EXISTS `customer_entity_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_ENTT_TEXT_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CUSTOMER_ENTITY_TEXT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Text'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CSTR_ENTT_VCHR_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Customer Entity Varchar'; /*!40101 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,5,1,'stefano'),(2,1,7,1,'tresoldi'),(3,1,12,1,'ce1bf53a4ce55385655ea19f522ff2dfd4b4123166c5bba437bfff412bdfae05:Pn'),(5,1,3,1,'Default Store View'),(6,1,33,1,'54c78de5a65b25430fd92dd3d1e3215d'); /*!40000 ALTER TABLE `customer_entity_varchar` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_form_attribute` -- DROP TABLE IF EXISTS `customer_form_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CSTR_FORM_ATTR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Form Attribute'; /*!40101 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_customer',1),('adminhtml_customer',3),('adminhtml_customer',4),('checkout_register',4),('customer_account_create',4),('customer_account_edit',4),('adminhtml_customer',5),('checkout_register',5),('customer_account_create',5),('customer_account_edit',5),('adminhtml_customer',6),('checkout_register',6),('customer_account_create',6),('customer_account_edit',6),('adminhtml_customer',7),('checkout_register',7),('customer_account_create',7),('customer_account_edit',7),('adminhtml_customer',8),('checkout_register',8),('customer_account_create',8),('customer_account_edit',8),('adminhtml_checkout',9),('adminhtml_customer',9),('checkout_register',9),('customer_account_create',9),('customer_account_edit',9),('adminhtml_checkout',10),('adminhtml_customer',10),('adminhtml_checkout',11),('adminhtml_customer',11),('checkout_register',11),('customer_account_create',11),('customer_account_edit',11),('adminhtml_checkout',15),('adminhtml_customer',15),('checkout_register',15),('customer_account_create',15),('customer_account_edit',15),('adminhtml_customer',17),('checkout_register',17),('customer_account_create',17),('customer_account_edit',17),('adminhtml_checkout',18),('adminhtml_customer',18),('checkout_register',18),('customer_account_create',18),('customer_account_edit',18),('adminhtml_customer_address',19),('customer_address_edit',19),('customer_register_address',19),('adminhtml_customer_address',20),('customer_address_edit',20),('customer_register_address',20),('adminhtml_customer_address',21),('customer_address_edit',21),('customer_register_address',21),('adminhtml_customer_address',22),('customer_address_edit',22),('customer_register_address',22),('adminhtml_customer_address',23),('customer_address_edit',23),('customer_register_address',23),('adminhtml_customer_address',24),('customer_address_edit',24),('customer_register_address',24),('adminhtml_customer_address',25),('customer_address_edit',25),('customer_register_address',25),('adminhtml_customer_address',26),('customer_address_edit',26),('customer_register_address',26),('adminhtml_customer_address',27),('customer_address_edit',27),('customer_register_address',27),('adminhtml_customer_address',28),('customer_address_edit',28),('customer_register_address',28),('adminhtml_customer_address',29),('customer_address_edit',29),('customer_register_address',29),('adminhtml_customer_address',30),('customer_address_edit',30),('customer_register_address',30),('adminhtml_customer_address',31),('customer_address_edit',31),('customer_register_address',31),('adminhtml_customer_address',32),('customer_address_edit',32),('customer_register_address',32); /*!40000 ALTER TABLE `customer_form_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer_group` -- DROP TABLE IF EXISTS `customer_group`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Customer Group'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_DATAFLOW_BATCH_PROFILE_ID_DATAFLOW_PROFILE_PROFILE_ID` FOREIGN KEY (`profile_id`) REFERENCES `dataflow_profile` (`profile_id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `FK_DATAFLOW_BATCH_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Dataflow Batch'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_DATAFLOW_BATCH_EXPORT_BATCH_ID_DATAFLOW_BATCH_BATCH_ID` FOREIGN KEY (`batch_id`) REFERENCES `dataflow_batch` (`batch_id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Dataflow Batch Export'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_DATAFLOW_BATCH_IMPORT_BATCH_ID_DATAFLOW_BATCH_BATCH_ID` FOREIGN KEY (`batch_id`) REFERENCES `dataflow_batch` (`batch_id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Dataflow Batch Import'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_DATAFLOW_IMPORT_DATA_SESSION_ID_DATAFLOW_SESSION_SESSION_ID` FOREIGN KEY (`session_id`) REFERENCES `dataflow_session` (`session_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Dataflow Import Data'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Dataflow Profile'; /*!40101 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','2012-02-08 21:06:04','2012-02-08 21:06:04','\\r\\n \\r\\n\\r\\n\\r\\n\\r\\n \\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n true\\r\\n\\r\\n\\r\\n\\r\\n file\\r\\n var/export\\r\\n \\r\\n\\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','2012-02-08 21:06:04','2012-02-08 21:06:04','\\r\\n \\r\\n\\r\\n\\r\\n\\r\\n \\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n true\\r\\n\\r\\n\\r\\n\\r\\n file\\r\\n var/export\\r\\n \\r\\n\\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','2012-02-08 21:06:04','2012-02-08 21:06:04','\\r\\n \\r\\n \\r\\n true\\r\\n \\r\\n catalog/convert_adapter_product\\r\\n parse\\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:\"\";}}}}','import','product',0,'interactive'),(4,'Import Product Stocks','2012-02-08 21:06:04','2012-02-08 21:06:04','\\r\\n \\r\\n \\r\\n true\\r\\n \\r\\n catalog/convert_adapter_product\\r\\n parse\\r\\n','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','2012-02-08 21:06:04','2012-02-08 21:06:04','\\r\\n \\r\\n \\r\\n\\r\\n\\r\\n\\r\\n \\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n \\r\\n \\r\\n true\\r\\n\\r\\n\\r\\n\\r\\n file\\r\\n var/export\\r\\n \\r\\n\\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','2012-02-08 21:06:04','2012-02-08 21:06:04','\\r\\n \\r\\n \\r\\n true\\r\\n \\r\\n customer/convert_adapter_customer\\r\\n parse\\r\\n','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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_AEA06B0C500063D3CE6EA671AE776645` FOREIGN KEY (`profile_id`) REFERENCES `dataflow_profile` (`profile_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Dataflow Profile History'; /*!40101 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,'2012-02-08 21:06:04'),(2,2,'create',0,'2012-02-08 21:06:04'),(3,3,'create',0,'2012-02-08 21:06:04'),(4,4,'create',0,'2012-02-08 21:06:04'),(5,5,'create',0,'2012-02-08 21:06:04'),(6,6,'create',0,'2012-02-08 21:06:04'); /*!40000 ALTER TABLE `dataflow_profile_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dataflow_session` -- DROP TABLE IF EXISTS `dataflow_session`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Dataflow Session'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_DESIGN_CHANGE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Design Changes'; /*!40101 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,'pro/default',NULL,NULL); /*!40000 ALTER TABLE `design_change` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `directory_country` -- DROP TABLE IF EXISTS `directory_country`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' COMMENT 'Country ISO-2 format', `iso3_code` varchar(3) NOT NULL DEFAULT '' COMMENT 'Country ISO-3', PRIMARY KEY (`country_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' COMMENT 'Country Id in ISO-2', `type` varchar(30) NOT NULL DEFAULT '' 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country Format'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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=InnoDB AUTO_INCREMENT=485 DEFAULT CHARSET=utf8 COMMENT='Directory Country Region'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' COMMENT 'Region Name', PRIMARY KEY (`locale`,`region_id`), KEY `IDX_DIRECTORY_COUNTRY_REGION_NAME_REGION_ID` (`region_id`), CONSTRAINT `FK_D7CFDEB379F775328EB6F62695E2B3E1` FOREIGN KEY (`region_id`) REFERENCES `directory_country_region` (`region_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country Region Name'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Currency Rate'; /*!40101 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.706700000000'),('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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_DOWNLOADABLE_LINK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_DOWNLOADABLE_LINK_PRICE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_DOWNLOADABLE_LINK_PRICE_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Price Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_DL_LNK_PURCHASED_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `FK_DL_LNK_PURCHASED_ORDER_ID_SALES_FLAT_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_46CC8E252307CE62F00A8F1887512A39` FOREIGN KEY (`purchased_id`) REFERENCES `downloadable_link_purchased` (`purchased_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_B219BF25756700DEE44550B21220ECCE` FOREIGN KEY (`order_item_id`) REFERENCES `sales_flat_order_item` (`item_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Item Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_DOWNLOADABLE_LINK_TITLE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_DOWNLOADABLE_LINK_TITLE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Link Title Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_DL_SAMPLE_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_DL_SAMPLE_TTL_SAMPLE_ID_DL_SAMPLE_SAMPLE_ID` FOREIGN KEY (`sample_id`) REFERENCES `downloadable_sample` (`sample_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_DOWNLOADABLE_SAMPLE_TITLE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Title Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_EAV_ATTRIBUTE_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=170 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute'; /*!40101 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,'date','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,3,'name',NULL,NULL,'varchar',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(36,3,'is_active',NULL,NULL,'int',NULL,NULL,'select','Is Active',NULL,'eav/entity_attribute_source_boolean',1,0,NULL,0,NULL),(37,3,'url_key',NULL,'catalog/category_attribute_backend_urlkey','varchar',NULL,NULL,'text','URL Key',NULL,NULL,0,0,NULL,0,NULL),(38,3,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(39,3,'image',NULL,'catalog/category_attribute_backend_image','varchar',NULL,NULL,'image','Image',NULL,NULL,0,0,NULL,0,NULL),(40,3,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Page Title',NULL,NULL,0,0,NULL,0,NULL),(41,3,'meta_keywords',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(42,3,'meta_description',NULL,NULL,'text',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,NULL),(43,3,'display_mode',NULL,NULL,'varchar',NULL,NULL,'select','Display Mode',NULL,'catalog/category_attribute_source_mode',0,0,NULL,0,NULL),(44,3,'landing_page',NULL,NULL,'int',NULL,NULL,'select','CMS Block',NULL,'catalog/category_attribute_source_page',0,0,NULL,0,NULL),(45,3,'is_anchor',NULL,NULL,'int',NULL,NULL,'select','Is Anchor',NULL,'eav/entity_attribute_source_boolean',0,0,NULL,0,NULL),(46,3,'path',NULL,NULL,'static',NULL,NULL,'text','Path',NULL,NULL,0,0,NULL,0,NULL),(47,3,'position',NULL,NULL,'static',NULL,NULL,'text','Position',NULL,NULL,0,0,NULL,0,NULL),(48,3,'all_children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(49,3,'path_in_store',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(50,3,'children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(51,3,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(52,3,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','Custom Design',NULL,'core/design_source_design',0,0,NULL,0,NULL),(53,3,'custom_design_from',NULL,'eav/entity_attribute_backend_datetime','datetime',NULL,NULL,'date','Active From',NULL,NULL,0,0,NULL,0,NULL),(54,3,'custom_design_to',NULL,'eav/entity_attribute_backend_datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(55,3,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Page Layout',NULL,'catalog/category_attribute_source_layout',0,0,NULL,0,NULL),(56,3,'custom_layout_update',NULL,'catalog/attribute_backend_customlayoutupdate','text',NULL,NULL,'textarea','Custom Layout Update',NULL,NULL,0,0,NULL,0,NULL),(57,3,'level',NULL,NULL,'static',NULL,NULL,'text','Level',NULL,NULL,0,0,NULL,0,NULL),(58,3,'children_count',NULL,NULL,'static',NULL,NULL,'text','Children Count',NULL,NULL,0,0,NULL,0,NULL),(59,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),(60,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),(61,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),(62,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),(63,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),(64,3,'filter_price_range',NULL,NULL,'int',NULL,NULL,'text','Layered Navigation Price Step',NULL,NULL,0,0,NULL,0,NULL),(65,4,'name',NULL,NULL,'varchar',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(66,4,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,1,0,NULL,0,NULL),(67,4,'short_description',NULL,NULL,'text',NULL,NULL,'textarea','Short Description',NULL,NULL,1,0,NULL,0,NULL),(68,4,'sku',NULL,'catalog/product_attribute_backend_sku','static',NULL,NULL,'text','SKU',NULL,NULL,1,0,NULL,1,NULL),(69,4,'price',NULL,'catalog/product_attribute_backend_price','decimal',NULL,NULL,'price','Price',NULL,NULL,1,0,NULL,0,NULL),(70,4,'special_price',NULL,'catalog/product_attribute_backend_price','decimal',NULL,NULL,'price','Special Price',NULL,NULL,0,0,NULL,0,NULL),(71,4,'special_from_date',NULL,'catalog/product_attribute_backend_startdate','datetime',NULL,NULL,'date','Special Price From Date',NULL,NULL,0,0,NULL,0,NULL),(72,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),(73,4,'cost',NULL,'catalog/product_attribute_backend_price','decimal',NULL,NULL,'price','Cost',NULL,NULL,0,1,NULL,0,NULL),(74,4,'weight',NULL,'','varchar',NULL,'','text','Peso','','',1,0,'',0,NULL),(75,4,'manufacturer',NULL,NULL,'int',NULL,NULL,'select','Manufacturer',NULL,NULL,0,1,NULL,0,NULL),(76,4,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Meta Title',NULL,NULL,0,0,NULL,0,NULL),(77,4,'meta_keyword',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(78,4,'meta_description',NULL,NULL,'varchar',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,'Maximum 255 chars'),(79,4,'image',NULL,NULL,'varchar',NULL,'catalog/product_attribute_frontend_image','media_image','Base Image',NULL,NULL,0,0,NULL,0,NULL),(80,4,'small_image',NULL,NULL,'varchar',NULL,'catalog/product_attribute_frontend_image','media_image','Small Image',NULL,NULL,0,0,NULL,0,NULL),(81,4,'thumbnail',NULL,NULL,'varchar',NULL,'catalog/product_attribute_frontend_image','media_image','Thumbnail',NULL,NULL,0,0,NULL,0,NULL),(82,4,'media_gallery',NULL,'catalog/product_attribute_backend_media','varchar',NULL,NULL,'gallery','Media Gallery',NULL,NULL,0,0,NULL,0,NULL),(83,4,'old_id',NULL,NULL,'int',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(84,4,'tier_price',NULL,'catalog/product_attribute_backend_tierprice','decimal',NULL,NULL,'text','Tier Price',NULL,NULL,0,0,NULL,0,NULL),(85,4,'color',NULL,'','int',NULL,'','select','Colore','','',0,1,'3',0,NULL),(86,4,'news_from_date',NULL,'eav/entity_attribute_backend_datetime','datetime',NULL,NULL,'date','Set Product as New from Date',NULL,NULL,0,0,NULL,0,NULL),(87,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),(88,4,'gallery',NULL,NULL,'varchar',NULL,NULL,'gallery','Image Gallery',NULL,NULL,0,0,NULL,0,NULL),(89,4,'status',NULL,NULL,'int',NULL,NULL,'select','Status',NULL,'catalog/product_status',1,0,NULL,0,NULL),(90,4,'url_key',NULL,'catalog/product_attribute_backend_urlkey','varchar',NULL,NULL,'text','URL Key',NULL,NULL,0,0,NULL,0,NULL),(91,4,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(92,4,'minimal_price',NULL,NULL,'decimal',NULL,NULL,'price','Minimal Price',NULL,NULL,0,0,NULL,0,NULL),(93,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.'),(94,4,'recurring_profile',NULL,'catalog/product_attribute_backend_recurring','text',NULL,NULL,'text','Recurring Payment Profile',NULL,NULL,0,0,NULL,0,NULL),(95,4,'visibility',NULL,NULL,'int',NULL,NULL,'select','Visibility',NULL,'catalog/product_visibility',1,0,'4',0,NULL),(96,4,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','Custom Design',NULL,'core/design_source_design',0,0,NULL,0,NULL),(97,4,'custom_design_from',NULL,'eav/entity_attribute_backend_datetime','datetime',NULL,NULL,'date','Active From',NULL,NULL,0,0,NULL,0,NULL),(98,4,'custom_design_to',NULL,'eav/entity_attribute_backend_datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(99,4,'custom_layout_update',NULL,'catalog/attribute_backend_customlayoutupdate','text',NULL,NULL,'textarea','Custom Layout Update',NULL,NULL,0,0,NULL,0,NULL),(100,4,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Page Layout',NULL,'catalog/product_attribute_source_layout',0,0,NULL,0,NULL),(101,4,'category_ids',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(102,4,'options_container',NULL,NULL,'varchar',NULL,NULL,'select','Display Product Options In',NULL,'catalog/entity_product_attribute_design_options_container',0,0,'container2',0,NULL),(103,4,'required_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(104,4,'has_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(105,4,'image_label',NULL,NULL,'varchar',NULL,NULL,'text','Image Label',NULL,NULL,0,0,NULL,0,NULL),(106,4,'small_image_label',NULL,NULL,'varchar',NULL,NULL,'text','Small Image Label',NULL,NULL,0,0,NULL,0,NULL),(107,4,'thumbnail_label',NULL,NULL,'varchar',NULL,NULL,'text','Thumbnail Label',NULL,NULL,0,0,NULL,0,NULL),(108,4,'created_at',NULL,'eav/entity_attribute_backend_time_created','static',NULL,NULL,'text',NULL,NULL,NULL,1,0,NULL,0,NULL),(109,4,'updated_at',NULL,'eav/entity_attribute_backend_time_updated','static',NULL,NULL,'text',NULL,NULL,NULL,1,0,NULL,0,NULL),(110,4,'country_of_manufacture',NULL,NULL,'varchar',NULL,NULL,'select','Country of Manufacture',NULL,'catalog/product_attribute_source_countryofmanufacture',0,0,NULL,0,NULL),(111,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),(112,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),(113,4,'msrp',NULL,'catalog/product_attribute_backend_price','decimal',NULL,NULL,'price','Manufacturer\'s Suggested Retail Price',NULL,NULL,0,0,NULL,0,NULL),(114,4,'enable_googlecheckout',NULL,NULL,'int',NULL,NULL,'select','Is Product Available for Purchase with Google Checkout',NULL,'eav/entity_attribute_source_boolean',0,0,'1',0,NULL),(115,4,'tax_class_id',NULL,NULL,'int',NULL,NULL,'select','Tax Class',NULL,'tax/class_source_product',1,0,NULL,0,NULL),(116,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),(117,4,'price_type',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,0,NULL),(118,4,'sku_type',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,0,NULL),(119,4,'weight_type',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,0,NULL),(120,4,'price_view',NULL,NULL,'int',NULL,NULL,'select','Price View',NULL,'bundle/product_attribute_source_price_view',1,0,NULL,0,NULL),(121,4,'shipment_type',NULL,NULL,'int',NULL,NULL,NULL,'Shipment',NULL,NULL,1,0,NULL,0,NULL),(122,4,'links_purchased_separately',NULL,NULL,'int',NULL,NULL,NULL,'Links can be purchased separately',NULL,NULL,1,0,NULL,0,NULL),(123,4,'samples_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Samples title',NULL,NULL,1,0,NULL,0,NULL),(124,4,'links_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Links title',NULL,NULL,1,0,NULL,0,NULL),(125,4,'links_exist',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,0,0,'0',0,NULL),(126,3,'thumbnail',NULL,'catalog/category_attribute_backend_image','varchar',NULL,NULL,'image','Thumbnail Image',NULL,NULL,0,0,NULL,0,NULL),(127,4,'giftcard_amounts',NULL,'enterprise_giftcard/attribute_backend_giftcard_amount','decimal',NULL,NULL,'price','Amounts',NULL,NULL,0,0,NULL,0,NULL),(128,4,'allow_open_amount',NULL,NULL,'int',NULL,NULL,'select','Allow Open Amount',NULL,'enterprise_giftcard/source_open',1,0,NULL,0,NULL),(129,4,'open_amount_min',NULL,'catalog/product_attribute_backend_price','decimal',NULL,NULL,'price','Open Amount Min Value',NULL,NULL,0,0,NULL,0,NULL),(130,4,'open_amount_max',NULL,'catalog/product_attribute_backend_price','decimal',NULL,NULL,'price','Open Amount Max Value',NULL,NULL,0,0,NULL,0,NULL),(131,4,'giftcard_type',NULL,NULL,'int',NULL,NULL,'select','Card Type',NULL,'enterprise_giftcard/source_type',1,0,NULL,0,NULL),(132,4,'is_redeemable',NULL,NULL,'int',NULL,NULL,'text','Is Redeemable',NULL,NULL,0,0,NULL,0,NULL),(133,4,'use_config_is_redeemable',NULL,NULL,'int',NULL,NULL,'text','Use Config Is Redeemable',NULL,NULL,0,0,NULL,0,NULL),(134,4,'lifetime',NULL,NULL,'int',NULL,NULL,'text','Lifetime',NULL,NULL,0,0,NULL,0,NULL),(135,4,'use_config_lifetime',NULL,NULL,'int',NULL,NULL,'text','Use Config Lifetime',NULL,NULL,0,0,NULL,0,NULL),(136,4,'email_template',NULL,NULL,'varchar',NULL,NULL,'text','Email Template',NULL,NULL,0,0,NULL,0,NULL),(137,4,'use_config_email_template',NULL,NULL,'int',NULL,NULL,'text','Use Config Email Template',NULL,NULL,0,0,NULL,0,NULL),(138,4,'allow_message',NULL,NULL,'int',NULL,NULL,'text','Allow Message',NULL,NULL,0,0,NULL,0,NULL),(139,4,'use_config_allow_message',NULL,NULL,'int',NULL,NULL,'text','Use Config Allow Message',NULL,NULL,0,0,NULL,0,NULL),(140,1,'reward_update_notification',NULL,NULL,'int',NULL,NULL,'text',NULL,NULL,NULL,1,0,NULL,0,NULL),(141,1,'reward_warning_notification',NULL,NULL,'int',NULL,NULL,'text',NULL,NULL,NULL,1,0,NULL,0,NULL),(142,4,'risoluzione',NULL,'','int',NULL,'','select','Risoluzione','','',0,1,'',0,NULL),(143,4,'zoom',NULL,'','int',NULL,'','select','Zoom ottico','','',0,1,'',0,NULL),(144,4,'lcd',NULL,'','int',NULL,'','select','LCD','','',0,1,'',0,NULL),(145,4,'batteria',NULL,'','int',NULL,'','select','Tipo batteria','','',0,1,'',0,NULL),(146,4,'obiettivo',NULL,'','varchar',NULL,'','text','Obiettivo grandangolare','','',0,1,'',0,NULL),(147,4,'lenti',NULL,'','varchar',NULL,'','text','Lenti','','',0,1,'',0,NULL),(148,4,'sensore',NULL,'','varchar',NULL,'','text','Sensore','','',0,1,'',0,NULL),(149,4,'riconoscimento',NULL,'','int',NULL,'','select','Riconoscimento volti','','',0,1,'',0,NULL),(150,4,'riconoscimento_persone',NULL,'','int',NULL,'','select','Riconoscimento persone','','',0,1,'',0,NULL),(151,4,'sorridiescatta',NULL,'','int',NULL,'','select','Sorridi e scatta','','',0,1,'',0,NULL),(152,4,'riconosciocchichiusi',NULL,'','int',NULL,'','select','Riconoscimento occhi chiusi','','',0,1,'',0,NULL),(153,4,'riconoscianimali',NULL,'','int',NULL,'','select','Riconoscimento Animali','','',0,1,'',0,NULL),(154,4,'raw',NULL,'','varchar',NULL,'','text','RAW','','',0,1,'',0,NULL),(155,4,'touchscreen',NULL,'','varchar',NULL,'','text','Touch screen','','',0,1,'',0,NULL),(156,4,'caricamentosocialnet',NULL,'','varchar',NULL,'','text','Caricamento semplificato You Tube / Faceook','','',0,1,'',0,NULL),(157,4,'stabilizzatore',NULL,'','varchar',NULL,'','text','Stabilizzatore di immagine','','',0,1,'',0,NULL),(158,4,'capacita3d',NULL,'','varchar',NULL,'','text','3D capacità','','',0,1,'',0,NULL),(159,4,'subacquea',NULL,'','varchar',NULL,'','text','subacquea','','',0,1,'',0,NULL),(160,4,'video',NULL,'','varchar',NULL,'','text','Video','','',0,1,'',0,NULL),(161,4,'uscita_hdmi',NULL,'','varchar',NULL,'','text','uscita HDMI','','',0,1,'',0,NULL),(162,4,'uscita_video',NULL,'','varchar',NULL,'','text','Uscita video','','',0,1,'',0,NULL),(163,4,'memo_vocale',NULL,'','varchar',NULL,'','text','Memo vocale','','',0,1,'',0,NULL),(164,4,'supporti_mem',NULL,'','varchar',NULL,'','text','supporti di memorizzazione','','',0,1,'',0,NULL),(165,4,'caricabatterie',NULL,'','varchar',NULL,'','text','Caricabatterie','','',0,1,'',0,NULL),(166,4,'alimentazione',NULL,'','varchar',NULL,'','text','Alimentazione CA','','',0,1,'',0,NULL),(168,4,'descrizione_estesa',NULL,NULL,'text',NULL,NULL,'textarea','Descrizione Estesa',NULL,NULL,0,1,NULL,0,NULL),(169,4,'scheda_tecnica',NULL,NULL,'text',NULL,NULL,'textarea','Scheda Prodotto',NULL,NULL,0,1,NULL,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_EAV_ATTR_GROUP_ATTR_SET_ID_EAV_ATTR_SET_ATTR_SET_ID` FOREIGN KEY (`attribute_set_id`) REFERENCES `eav_attribute_set` (`attribute_set_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Group'; /*!40101 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),(18,9,'General',1,1),(19,9,'Prices',2,0),(20,9,'Meta Information',3,0),(21,9,'Images',4,0),(22,9,'Recurring Profile',5,0),(23,9,'Design',6,0),(24,9,'Gift Options',7,0),(25,9,'Scheda Tecnica',8,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ATTRIBUTE_LABEL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Label'; /*!40101 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 */; /*!40000 ALTER TABLE `eav_attribute_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_attribute_option` -- DROP TABLE IF EXISTS `eav_attribute_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option'; /*!40101 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),(3,85,0),(4,85,0),(5,85,0),(6,85,0),(7,85,0),(8,85,0),(9,85,0),(10,85,0),(11,85,0),(12,85,0),(13,85,0),(14,85,0),(15,142,0),(16,142,0),(17,142,0),(18,142,0),(19,143,0),(20,143,0),(21,143,0),(22,143,0),(23,143,0),(24,143,0),(25,143,0),(26,143,0),(27,144,0),(28,144,0),(29,144,0),(30,144,0),(31,144,0),(32,145,0),(33,145,0),(34,149,0),(35,149,0),(36,150,0),(37,150,0),(38,151,0),(39,151,0),(40,152,0),(41,152,0),(42,153,0),(43,153,0),(44,145,1),(45,142,2),(46,144,3),(47,85,4),(48,143,5),(49,142,6); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ATTR_OPT_VAL_OPT_ID_EAV_ATTR_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `eav_attribute_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=61 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option Value'; /*!40101 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'),(3,3,0,'Nero '),(4,4,0,'Bianco'),(5,5,0,'Argento'),(6,6,0,'Oro'),(7,7,0,'Rosso'),(8,8,0,'Verde'),(9,9,0,'Blu'),(10,10,0,'Fuxia'),(11,11,0,'Rosa'),(12,12,0,'Viola'),(13,13,0,'Arancio'),(14,14,0,'Canna di fucile'),(15,15,0,'10 Megapixel'),(16,16,0,'12 Megapixel'),(17,17,0,'14 Megapixel'),(18,18,0,'16 Megapixel'),(19,19,0,'3x'),(20,20,0,'4x'),(21,21,0,'5x'),(22,22,0,'10x'),(23,23,0,'15x'),(24,24,0,'18x'),(25,25,0,'26x'),(26,26,0,'28x'),(27,27,0,'2,5\'\''),(28,28,0,'2,7\'\''),(29,29,0,'2,8\'\''),(30,30,0,'3,0\'\''),(31,31,0,'3,5\'\''),(36,36,0,'Si'),(37,37,0,'No'),(38,38,0,'Si'),(39,39,0,'No'),(40,40,0,'Si'),(41,41,0,'No'),(42,42,0,'Si'),(43,43,0,'No'),(45,45,0,'12,0 milioni di pixel'),(46,46,0,'2,8\"'),(47,47,0,'black'),(48,48,0,'focale fissa'),(49,49,0,'12,3 milioni di pixel'),(56,33,0,'AA'),(57,32,0,'Ioni di litio'),(58,44,0,'Litio'),(59,35,0,'No'),(60,34,0,'Si'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_EAV_ATTR_SET_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Set'; /*!40101 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),(9,4,'Fotocamere_digitali',0); /*!40000 ALTER TABLE `eav_attribute_set` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity` -- DROP TABLE IF EXISTS `eav_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_EAV_ENTITY_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTITY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTT_ATTR_ATTR_GROUP_ID_EAV_ATTR_GROUP_ATTR_GROUP_ID` FOREIGN KEY (`attribute_group_id`) REFERENCES `eav_attribute_group` (`attribute_group_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=669 DEFAULT CHARSET=utf8 COMMENT='Eav Entity Attributes'; /*!40101 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,3,3,4,35,1),(36,3,3,4,36,2),(37,3,3,4,37,3),(38,3,3,4,38,4),(39,3,3,4,39,5),(40,3,3,4,40,6),(41,3,3,4,41,7),(42,3,3,4,42,8),(43,3,3,5,43,10),(44,3,3,5,44,20),(45,3,3,5,45,30),(46,3,3,4,46,12),(47,3,3,4,47,13),(48,3,3,4,48,14),(49,3,3,4,49,15),(50,3,3,4,50,16),(51,3,3,4,51,17),(52,3,3,6,52,10),(53,3,3,6,53,30),(54,3,3,6,54,40),(55,3,3,6,55,50),(56,3,3,6,56,60),(57,3,3,4,57,24),(58,3,3,4,58,25),(59,3,3,5,59,40),(60,3,3,5,60,50),(61,3,3,4,61,10),(62,3,3,6,62,5),(63,3,3,6,63,6),(64,3,3,5,64,51),(65,4,4,7,65,1),(66,4,4,7,66,2),(67,4,4,7,67,3),(68,4,4,7,68,4),(69,4,4,8,69,1),(70,4,4,8,70,2),(71,4,4,8,71,3),(72,4,4,8,72,4),(73,4,4,8,73,5),(74,4,4,7,74,5),(75,4,4,9,76,1),(76,4,4,9,77,2),(77,4,4,9,78,3),(78,4,4,10,79,1),(79,4,4,10,80,2),(80,4,4,10,81,3),(81,4,4,10,82,4),(82,4,4,7,83,6),(83,4,4,8,84,6),(84,4,4,7,86,7),(85,4,4,7,87,8),(86,4,4,10,88,5),(87,4,4,7,89,9),(88,4,4,7,90,10),(89,4,4,7,91,11),(90,4,4,8,92,7),(91,4,4,11,93,1),(92,4,4,11,94,2),(93,4,4,7,95,12),(94,4,4,12,96,1),(95,4,4,12,97,2),(96,4,4,12,98,3),(97,4,4,12,99,4),(98,4,4,12,100,5),(99,4,4,7,101,13),(100,4,4,12,102,6),(101,4,4,7,103,14),(102,4,4,7,104,15),(103,4,4,7,105,16),(104,4,4,7,106,17),(105,4,4,7,107,18),(106,4,4,7,108,19),(107,4,4,7,109,20),(108,4,4,7,110,21),(109,4,4,8,111,8),(110,4,4,8,112,9),(111,4,4,8,113,10),(112,4,4,8,114,11),(113,4,4,8,115,12),(114,4,4,17,116,1),(115,4,4,7,117,22),(116,4,4,7,118,23),(117,4,4,7,119,24),(118,4,4,8,120,13),(119,4,4,7,121,25),(120,4,4,7,122,26),(121,4,4,7,123,27),(122,4,4,7,124,28),(123,4,4,7,125,29),(124,3,3,4,126,4),(125,4,4,8,127,-5),(126,4,4,8,128,-4),(127,4,4,8,129,-3),(128,4,4,8,130,-2),(129,4,4,8,131,14),(130,4,4,8,132,15),(131,4,4,8,133,16),(132,4,4,8,134,17),(133,4,4,8,135,18),(134,4,4,8,136,19),(135,4,4,8,137,20),(136,4,4,8,138,21),(137,4,4,8,139,22),(138,1,1,1,140,113),(139,1,1,1,141,114),(145,4,9,18,83,6),(150,4,9,18,91,12),(152,4,9,18,101,14),(153,4,9,18,103,15),(154,4,9,18,104,16),(155,4,9,18,105,17),(156,4,9,18,106,18),(157,4,9,18,107,19),(158,4,9,18,108,20),(159,4,9,18,109,21),(161,4,9,18,117,22),(162,4,9,18,118,23),(163,4,9,18,119,24),(164,4,9,18,121,25),(165,4,9,18,122,26),(166,4,9,18,123,27),(167,4,9,18,124,28),(168,4,9,18,125,29),(179,4,9,19,92,7),(186,4,9,19,131,14),(187,4,9,19,132,15),(188,4,9,19,133,16),(189,4,9,19,134,17),(190,4,9,19,135,18),(191,4,9,19,136,19),(192,4,9,19,137,20),(193,4,9,19,138,21),(194,4,9,19,139,22),(526,4,9,18,65,1),(528,4,9,18,66,2),(530,4,9,18,67,3),(532,4,9,18,68,6),(534,4,9,18,86,7),(536,4,9,18,87,8),(538,4,9,18,89,9),(540,4,9,18,90,10),(542,4,9,18,95,11),(544,4,9,18,110,12),(546,4,9,18,168,5),(548,4,9,18,169,4),(550,4,9,19,69,5),(552,4,9,19,70,6),(554,4,9,19,71,7),(556,4,9,19,72,8),(558,4,9,19,73,9),(560,4,9,19,84,10),(562,4,9,19,111,11),(564,4,9,19,112,12),(566,4,9,19,113,13),(568,4,9,19,114,14),(570,4,9,19,115,15),(572,4,9,19,120,16),(574,4,9,19,127,1),(576,4,9,19,128,2),(578,4,9,19,129,3),(580,4,9,19,130,4),(582,4,9,20,76,1),(584,4,9,20,77,2),(586,4,9,20,78,3),(588,4,9,21,79,1),(590,4,9,21,80,2),(592,4,9,21,81,3),(594,4,9,21,82,4),(596,4,9,21,88,5),(598,4,9,22,93,1),(600,4,9,22,94,2),(602,4,9,23,96,1),(604,4,9,23,97,2),(606,4,9,23,98,3),(608,4,9,23,99,4),(610,4,9,23,100,5),(612,4,9,23,102,6),(614,4,9,24,116,1),(616,4,9,25,74,27),(618,4,9,25,85,1),(620,4,9,25,142,2),(622,4,9,25,143,3),(624,4,9,25,144,4),(626,4,9,25,145,5),(628,4,9,25,146,6),(630,4,9,25,147,7),(632,4,9,25,148,8),(634,4,9,25,149,9),(636,4,9,25,150,10),(638,4,9,25,151,11),(640,4,9,25,152,12),(642,4,9,25,153,13),(644,4,9,25,154,14),(646,4,9,25,155,15),(648,4,9,25,156,16),(650,4,9,25,157,17),(652,4,9,25,158,18),(654,4,9,25,159,19),(656,4,9,25,160,20),(658,4,9,25,161,21),(660,4,9,25,162,22),(662,4,9,25,163,23),(664,4,9,25,164,24),(666,4,9,25,165,25),(668,4,9,25,166,26); /*!40000 ALTER TABLE `eav_entity_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_datetime` -- DROP TABLE IF EXISTS `eav_entity_datetime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_ENTITY_DATETIME_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTITY_DATETIME_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTT_DTIME_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_ENTITY_DECIMAL_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTITY_DECIMAL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTT_DEC_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_ENTITY_INT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTITY_INT_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTITY_INT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_ENTITY_STORE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTT_STORE_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Eav Entity Store'; /*!40101 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 */; INSERT INTO `eav_entity_store` VALUES (1,5,1,'1','100000009'); /*!40000 ALTER TABLE `eav_entity_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `eav_entity_text` -- DROP TABLE IF EXISTS `eav_entity_text`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_ENTITY_TEXT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTITY_TEXT_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTITY_TEXT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 '' COMMENT 'Entity Attribute Collection', PRIMARY KEY (`entity_type_id`), KEY `IDX_EAV_ENTITY_TYPE_ENTITY_TYPE_CODE` (`entity_type_code`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Eav Entity Type'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_EAV_ENTITY_VARCHAR_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTITY_VARCHAR_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_ENTT_VCHR_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_FORM_ELEMENT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_FORM_ELEMENT_FIELDSET_ID_EAV_FORM_FIELDSET_FIELDSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `eav_form_fieldset` (`fieldset_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `FK_EAV_FORM_ELEMENT_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 COMMENT='Eav Form Element'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_FORM_FIELDSET_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_FORM_FIELDSET_LABEL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_FORM_FSET_LBL_FSET_ID_EAV_FORM_FSET_FSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `eav_form_fieldset` (`fieldset_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset Label'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_FORM_TYPE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Eav Form Type'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_EAV_FORM_TYPE_ENTITY_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_EAV_FORM_TYPE_ENTT_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Type Entity'; /*!40101 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),(2,1),(5,1),(1,2),(2,2),(3,2),(4,2),(5,2); /*!40000 ALTER TABLE `eav_form_type_entity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `enterprise_admin_passwords` -- DROP TABLE IF EXISTS `enterprise_admin_passwords`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `enterprise_admin_passwords` ( `password_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Password Id', `user_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'User Id', `password_hash` varchar(100) DEFAULT NULL COMMENT 'Password Hash', `expires` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Expires', `last_updated` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Last Updated', PRIMARY KEY (`password_id`), KEY `IDX_ENTERPRISE_ADMIN_PASSWORDS_USER_ID` (`user_id`), CONSTRAINT `FK_ENTERPRISE_ADMIN_PASSWORDS_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Enterprise Admin Passwords'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `enterprise_admin_passwords` -- LOCK TABLES `enterprise_admin_passwords` WRITE; /*!40000 ALTER TABLE `enterprise_admin_passwords` DISABLE KEYS */; INSERT INTO `enterprise_admin_passwords` VALUES (1,1,'8424a37500c6072e364e347c457951dc49d0bf1b4c6150b4528ded6c845799ed',1337531457,1329755457),(2,3,'2dc75319c4f6788f71aa748285ab7d3e52110fcf2dbbecffaf18b6adcc4c1511',1338471640,1330695640); /*!40000 ALTER TABLE `enterprise_admin_passwords` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `enterprise_customerbalance` -- DROP TABLE IF EXISTS `enterprise_customerbalance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `enterprise_customerbalance` ( `balance_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Balance Id', `customer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Id', `website_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Website Id', `amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Balance Amount', `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code', PRIMARY KEY (`balance_id`), UNIQUE KEY `UNQ_ENTERPRISE_CUSTOMERBALANCE_CUSTOMER_ID_WEBSITE_ID` (`customer_id`,`website_id`), KEY `IDX_ENTERPRISE_CUSTOMERBALANCE_WEBSITE_ID` (`website_id`), CONSTRAINT `FK_ENTERPRISE_CUSTOMERBALANCE_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `FK_ENT_CSTRBALANCE_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Enterprise Customerbalance'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `enterprise_customerbalance` -- LOCK TABLES `enterprise_customerbalance` WRITE; /*!40000 ALTER TABLE `enterprise_customerbalance` DISABLE KEYS */; /*!40000 ALTER TABLE `enterprise_customerbalance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `enterprise_customerbalance_history` -- DROP TABLE IF EXISTS `enterprise_customerbalance_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `enterprise_customerbalance_history` ( `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'History Id', `balance_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Balance Id', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At', `action` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Action', `balance_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Balance Amount', `balance_delta` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Balance Delta', `additional_info` varchar(255) DEFAULT NULL COMMENT 'Additional Info', `is_customer_notified` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Customer Notified', PRIMARY KEY (`history_id`), KEY `IDX_ENTERPRISE_CUSTOMERBALANCE_HISTORY_BALANCE_ID` (`balance_id`), CONSTRAINT `FK_ENT_CSTRBALANCE_HISTORY_BALANCE_ID_ENT_CSTRBALANCE_BALANCE_ID` FOREIGN KEY (`balance_id`) REFERENCES `enterprise_customerbalance` (`balance_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Enterprise Customerbalance History'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `enterprise_customerbalance_history` -- LOCK TABLES `enterprise_customerbalance_history` WRITE; /*!40000 ALTER TABLE `enterprise_customerbalance_history` DISABLE KEYS */; /*!40000 ALTER TABLE `enterprise_customerbalance_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `enterprise_giftcard_amount` -- DROP TABLE IF EXISTS `enterprise_giftcard_amount`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `enterprise_giftcard_amount` ( `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value Id', `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id', `value` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Value', `entity_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Entity Id', `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type Id', `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute Id', PRIMARY KEY (`value_id`), KEY `IDX_ENTERPRISE_GIFTCARD_AMOUNT_ENTITY_ID` (`entity_id`), KEY `IDX_ENTERPRISE_GIFTCARD_AMOUNT_WEBSITE_ID` (`website_id`), KEY `IDX_ENTERPRISE_GIFTCARD_AMOUNT_ATTRIBUTE_ID` (`attribute_id`), CONSTRAINT `FK_ENTERPRISE_GIFTCARD_AMOUNT_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_ENT_GIFTCARD_AMOUNT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_ENT_GIFTCARD_AMOUNT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Enterprise Giftcard Amount'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `enterprise_giftcard_amount` -- LOCK TABLES `enterprise_giftcard_amount` WRITE; /*!40000 ALTER TABLE `enterprise_giftcard_amount` DISABLE KEYS */; /*!40000 ALTER TABLE `enterprise_giftcard_amount` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `enterprise_giftcardaccount` -- DROP TABLE IF EXISTS `enterprise_giftcardaccount`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `enterprise_giftcardaccount` ( `giftcardaccount_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Giftcardaccount Id', `code` varchar(255) NOT NULL COMMENT 'Code', `status` smallint(6) NOT NULL COMMENT 'Status', `date_created` date NOT NULL COMMENT 'Date Created', `date_expires` date DEFAULT NULL COMMENT 'Date Expires', `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id', `balance` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Balance', `state` smallint(6) NOT NULL DEFAULT '0' COMMENT 'State', `is_redeemable` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Is Redeemable', PRIMARY KEY (`giftcardaccount_id`), KEY `IDX_ENTERPRISE_GIFTCARDACCOUNT_WEBSITE_ID` (`website_id`), CONSTRAINT `FK_ENTERPRISE_GIFTCARDACCOUNT_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Enterprise Giftcardaccount'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `enterprise_giftcardaccount` -- LOCK TABLES `enterprise_giftcardaccount` WRITE; /*!40000 ALTER TABLE `enterprise_giftcardaccount` DISABLE KEYS */; /*!40000 ALTER TABLE `enterprise_giftcardaccount` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `enterprise_giftcardaccount_history` -- DROP TABLE IF EXISTS `enterprise_giftcardaccount_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `enterprise_giftcardaccount_history` ( `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'History Id', `giftcardaccount_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Giftcardaccount Id', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At', `action` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Action', `balance_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Balance Amount', `balance_delta` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Balance Delta', `additional_info` varchar(255) DEFAULT NULL COMMENT 'Additional Info', PRIMARY KEY (`history_id`), KEY `IDX_ENTERPRISE_GIFTCARDACCOUNT_HISTORY_GIFTCARDACCOUNT_ID` (`giftcardaccount_id`), CONSTRAINT `FK_3B8BD605F9D0B548E5EEDF7ADFC30A5D` FOREIGN KEY (`giftcardaccount_id`) REFERENCES `enterprise_giftcardaccount` (`giftcardaccount_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Enterprise Giftcardaccount History'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `enterprise_giftcardaccount_history` -- LOCK TABLES `enterprise_giftcardaccount_history` WRITE; /*!40000 ALTER TABLE `enterprise_giftcardaccount_history` DISABLE KEYS */; /*!40000 ALTER TABLE `enterprise_giftcardaccount_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `enterprise_giftcardaccount_pool` -- DROP TABLE IF EXISTS `enterprise_giftcardaccount_pool`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `enterprise_giftcardaccount_pool` ( `code` varchar(255) NOT NULL COMMENT 'Code', `status` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Status', PRIMARY KEY (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Enterprise Giftcardaccount Pool'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `enterprise_giftcardaccount_pool` -- LOCK TABLES `enterprise_giftcardaccount_pool` WRITE; /*!40000 ALTER TABLE `enterprise_giftcardaccount_pool` DISABLE KEYS */; /*!40000 ALTER TABLE `enterprise_giftcardaccount_pool` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `enterprise_reward` -- DROP TABLE IF EXISTS `enterprise_reward`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `enterprise_reward` ( `reward_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Reward Id', `customer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Id', `website_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Website Id', `points_balance` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Points Balance', `website_currency_code` varchar(3) DEFAULT NULL COMMENT 'Website Currency Code', PRIMARY KEY (`reward_id`), UNIQUE KEY `UNQ_ENTERPRISE_REWARD_CUSTOMER_ID_WEBSITE_ID` (`customer_id`,`website_id`), KEY `IDX_ENTERPRISE_REWARD_WEBSITE_ID` (`website_id`), CONSTRAINT `FK_ENTERPRISE_REWARD_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Enterprise Reward'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `enterprise_reward` -- LOCK TABLES `enterprise_reward` WRITE; /*!40000 ALTER TABLE `enterprise_reward` DISABLE KEYS */; INSERT INTO `enterprise_reward` VALUES (1,1,1,0,NULL); /*!40000 ALTER TABLE `enterprise_reward` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `enterprise_reward_history` -- DROP TABLE IF EXISTS `enterprise_reward_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `enterprise_reward_history` ( `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'History Id', `reward_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Reward Id', `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id', `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id', `action` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Action', `entity` int(11) DEFAULT NULL COMMENT 'Entity', `points_balance` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Points Balance', `points_delta` int(11) NOT NULL DEFAULT '0' COMMENT 'Points Delta', `points_used` int(11) NOT NULL DEFAULT '0' COMMENT 'Points Used', `currency_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Currency Amount', `currency_delta` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Currency Delta', `base_currency_code` varchar(5) NOT NULL COMMENT 'Base Currency Code', `additional_data` text NOT NULL COMMENT 'Additional Data', `comment` text COMMENT 'Comment', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Created At', `expired_at_static` timestamp NULL DEFAULT NULL COMMENT 'Expired At Static', `expired_at_dynamic` timestamp NULL DEFAULT NULL COMMENT 'Expired At Dynamic', `is_expired` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Is Expired', `is_duplicate_of` int(10) unsigned DEFAULT NULL COMMENT 'Is Duplicate Of', `notification_sent` smallint(6) NOT NULL DEFAULT '0' COMMENT 'Notification Sent', PRIMARY KEY (`history_id`), KEY `IDX_ENTERPRISE_REWARD_HISTORY_REWARD_ID` (`reward_id`), KEY `IDX_ENTERPRISE_REWARD_HISTORY_WEBSITE_ID` (`website_id`), KEY `IDX_ENTERPRISE_REWARD_HISTORY_STORE_ID` (`store_id`), CONSTRAINT `FK_ENTERPRISE_REWARD_HISTORY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `FK_ENTERPRISE_REWARD_HISTORY_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_ENT_REWARD_HISTORY_REWARD_ID_ENT_REWARD_REWARD_ID` FOREIGN KEY (`reward_id`) REFERENCES `enterprise_reward` (`reward_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Enterprise Reward History'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `enterprise_reward_history` -- LOCK TABLES `enterprise_reward_history` WRITE; /*!40000 ALTER TABLE `enterprise_reward_history` DISABLE KEYS */; /*!40000 ALTER TABLE `enterprise_reward_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `enterprise_reward_rate` -- DROP TABLE IF EXISTS `enterprise_reward_rate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `enterprise_reward_rate` ( `rate_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rate Id', `website_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Website Id', `customer_group_id` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Customer Group Id', `direction` smallint(6) NOT NULL DEFAULT '1' COMMENT 'Direction', `points` int(11) NOT NULL DEFAULT '0' COMMENT 'Points', `currency_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Currency Amount', PRIMARY KEY (`rate_id`), UNIQUE KEY `UNQ_ENT_REWARD_RATE_WS_ID_CSTR_GROUP_ID_DIRECTION` (`website_id`,`customer_group_id`,`direction`), KEY `IDX_ENTERPRISE_REWARD_RATE_WEBSITE_ID` (`website_id`), KEY `IDX_ENTERPRISE_REWARD_RATE_CUSTOMER_GROUP_ID` (`customer_group_id`), CONSTRAINT `FK_ENTERPRISE_REWARD_RATE_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Enterprise Reward Rate'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `enterprise_reward_rate` -- LOCK TABLES `enterprise_reward_rate` WRITE; /*!40000 ALTER TABLE `enterprise_reward_rate` DISABLE KEYS */; /*!40000 ALTER TABLE `enterprise_reward_rate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `enterprise_reward_salesrule` -- DROP TABLE IF EXISTS `enterprise_reward_salesrule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `enterprise_reward_salesrule` ( `rule_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Rule Id', `points_delta` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Points Delta', UNIQUE KEY `UNQ_ENTERPRISE_REWARD_SALESRULE_RULE_ID` (`rule_id`), CONSTRAINT `FK_ENTERPRISE_REWARD_SALESRULE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Enterprise Reward Reward Salesrule'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `enterprise_reward_salesrule` -- LOCK TABLES `enterprise_reward_salesrule` WRITE; /*!40000 ALTER TABLE `enterprise_reward_salesrule` DISABLE KEYS */; /*!40000 ALTER TABLE `enterprise_reward_salesrule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gift_message` -- DROP TABLE IF EXISTS `gift_message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Gift Message'; /*!40101 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 `googlecheckout_notification` -- DROP TABLE IF EXISTS `googlecheckout_notification`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `googlecheckout_notification` ( `serial_number` varchar(64) NOT NULL COMMENT 'Serial Number', `started_at` timestamp NULL DEFAULT NULL COMMENT 'Started At', `status` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Status', PRIMARY KEY (`serial_number`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Google Checkout Notification Table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `googlecheckout_notification` -- LOCK TABLES `googlecheckout_notification` WRITE; /*!40000 ALTER TABLE `googlecheckout_notification` DISABLE KEYS */; /*!40000 ALTER TABLE `googlecheckout_notification` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `importexport_importdata` -- DROP TABLE IF EXISTS `importexport_importdata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Import Data Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COMMENT='Index Event'; /*!40101 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,'2012-02-08 21:06:14','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:8:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(2,'save','catalog_category',2,'2012-02-08 21:06:14','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:8:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(3,'save','cataloginventory_stock_item',1,'2012-02-20 07:31:40','a:1:{s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;}','a:7:{s:35:\"cataloginventory_stock_match_result\";b:1;s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(4,'save','catalog_product',1,'2012-02-20 07:31:40','a:8:{s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:39:\"Mage_Catalog_Model_Product_Indexer_Flat\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:30:\"Mage_Tag_Model_Indexer_Summary\";N;}','a:14:{s:35:\"cataloginventory_stock_match_result\";b:1;s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:34:\"catalog_product_price_match_result\";b:1;s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;s:24:\"catalog_url_match_result\";b:1;s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:1;s:39:\"Mage_Catalog_Model_Product_Indexer_Flat\";N;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:30:\"Mage_Tag_Model_Indexer_Summary\";N;}'),(5,'save','cataloginventory_stock_item',4,'2012-02-20 11:46:28','a:1:{s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;}','a:7:{s:35:\"cataloginventory_stock_match_result\";b:1;s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(6,'save','catalog_product',4,'2012-02-20 11:46:29','a:8:{s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:39:\"Mage_Catalog_Model_Product_Indexer_Flat\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:30:\"Mage_Tag_Model_Indexer_Summary\";N;}','a:14:{s:35:\"cataloginventory_stock_match_result\";b:1;s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:34:\"catalog_product_price_match_result\";b:1;s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;s:24:\"catalog_url_match_result\";b:1;s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:1;s:39:\"Mage_Catalog_Model_Product_Indexer_Flat\";N;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:30:\"Mage_Tag_Model_Indexer_Summary\";N;}'),(7,'save','cataloginventory_stock_item',5,'2012-02-20 11:56:00','a:1:{s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;}','a:7:{s:35:\"cataloginventory_stock_match_result\";b:1;s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(8,'save','catalog_product',5,'2012-02-20 11:56:00','a:8:{s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:39:\"Mage_Catalog_Model_Product_Indexer_Flat\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:30:\"Mage_Tag_Model_Indexer_Summary\";N;}','a:14:{s:35:\"cataloginventory_stock_match_result\";b:1;s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:34:\"catalog_product_price_match_result\";b:1;s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;s:24:\"catalog_url_match_result\";b:1;s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:1;s:39:\"Mage_Catalog_Model_Product_Indexer_Flat\";N;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:30:\"Mage_Tag_Model_Indexer_Summary\";N;}'),(9,'save','cataloginventory_stock_item',6,'2012-02-20 11:57:00','a:1:{s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;}','a:7:{s:35:\"cataloginventory_stock_match_result\";b:1;s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(10,'save','catalog_product',6,'2012-02-20 11:57:00','a:8:{s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:39:\"Mage_Catalog_Model_Product_Indexer_Flat\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:30:\"Mage_Tag_Model_Indexer_Summary\";N;}','a:14:{s:35:\"cataloginventory_stock_match_result\";b:1;s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:34:\"catalog_product_price_match_result\";b:1;s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;s:24:\"catalog_url_match_result\";b:1;s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:1;s:39:\"Mage_Catalog_Model_Product_Indexer_Flat\";N;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:30:\"Mage_Tag_Model_Indexer_Summary\";N;}'),(11,'save','core_config_data',272,'2012-02-22 18:49:45','a:1:{s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;}','a:7:{s:35:\"cataloginventory_stock_match_result\";b:0;s:34:\"catalog_product_price_match_result\";b:1;s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;s:24:\"catalog_url_match_result\";b:0;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'),(12,'save','catalog_category',6,'2012-02-25 14:16:52','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(13,'save','catalog_category',8,'2012-02-25 14:17:02','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(14,'save','catalog_category',10,'2012-02-25 14:17:08','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(15,'save','catalog_category',11,'2012-02-25 14:18:48','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(16,'save','catalog_category',12,'2012-02-25 14:19:14','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(17,'save','catalog_category',13,'2012-02-25 14:19:37','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(18,'save','catalog_category',14,'2012-02-25 14:26:04','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(19,'save','catalog_category',15,'2012-02-25 14:28:04','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(20,'save','catalog_category',16,'2012-02-25 14:28:36','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(21,'save','catalog_category',17,'2012-02-25 14:28:58','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(22,'save','catalog_category',18,'2012-02-25 14:29:13','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(23,'save','catalog_category',4,'2012-02-25 14:31:28','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(24,'save','catalog_category',19,'2012-02-25 14:33:05','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(25,'save','catalog_category',20,'2012-02-25 14:34:11','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(26,'save','catalog_category',21,'2012-02-25 14:34:34','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(27,'save','catalog_category',22,'2012-02-25 14:34:51','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(28,'save','catalog_category',23,'2012-02-25 14:35:07','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(29,'save','catalog_category',24,'2012-02-25 14:35:24','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(30,'save','catalog_category',25,'2012-02-25 14:35:45','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(31,'save','catalog_category',26,'2012-02-25 14:36:06','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(32,'save','catalog_category',27,'2012-02-25 14:36:26','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(33,'save','catalog_category',28,'2012-02-25 14:36:57','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(34,'save','catalog_category',29,'2012-02-25 14:37:10','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(35,'save','catalog_category',3,'2012-02-26 00:12:25','a:3:{s:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:9:{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:30:\"Mage_Catalog_Model_Indexer_Url\";N;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(36,'save','catalog_eav_attribute',145,'2012-02-26 10:32:49','a:1:{s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;}','a:7:{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:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;}'),(37,'save','catalog_eav_attribute',75,'2012-02-26 10:34:50','a:1:{s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;}','a:7:{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:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;}'),(38,'save','catalog_eav_attribute',149,'2012-02-26 10:35:59','a:1:{s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;}','a:7:{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:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;}'),(39,'save','catalog_eav_attribute',167,'2012-02-29 08:12:54','a:2:{s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:8:{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:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;}'),(40,'delete','catalog_eav_attribute',167,'2012-02-29 08:21:04','a:1:{s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:7:{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:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";s:1:\"1\";s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}'),(41,'save','catalog_eav_attribute',168,'2012-02-29 08:22:47','a:2:{s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:8:{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:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;}'),(42,'save','catalog_eav_attribute',169,'2012-02-29 09:07:55','a:2:{s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;}','a:8:{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:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;}'),(43,'mass_action','catalog_product',NULL,'2012-03-02 12:37:57','a:7:{s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;s:39:\"Mage_Catalog_Model_Product_Indexer_Flat\";N;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:30:\"Mage_Tag_Model_Indexer_Summary\";N;}','a:13:{s:35:\"cataloginventory_stock_match_result\";b:1;s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:34:\"catalog_product_price_match_result\";b:1;s:40:\"Mage_Catalog_Model_Product_Indexer_Price\";N;s:24:\"catalog_url_match_result\";b:0;s:33:\"catalog_product_flat_match_result\";b:1;s:39:\"Mage_Catalog_Model_Product_Indexer_Flat\";N;s:37:\"catalog_category_product_match_result\";b:1;s:43:\"Mage_Catalog_Model_Category_Indexer_Product\";N;s:35:\"catalogsearch_fulltext_match_result\";b:1;s:41:\"Mage_CatalogSearch_Model_Indexer_Fulltext\";N;s:38:\"Mage_Catalog_Model_Product_Indexer_Eav\";N;s:30:\"Mage_Tag_Model_Indexer_Summary\";N;}'),(44,'save','cataloginventory_stock_item',2,'2012-03-02 12:37:57','a:1:{s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;}','a:7:{s:35:\"cataloginventory_stock_match_result\";b:1;s:41:\"Mage_CatalogInventory_Model_Indexer_Stock\";N;s:34:\"catalog_product_price_match_result\";b:0;s:24:\"catalog_url_match_result\";b:0;s:33:\"catalog_product_flat_match_result\";b:0;s:37:\"catalog_category_product_match_result\";b:0;s:35:\"catalogsearch_fulltext_match_result\";b:0;}'); /*!40000 ALTER TABLE `index_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `index_process` -- DROP TABLE IF EXISTS `index_process`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Index Process'; /*!40101 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','2012-02-28 10:27:49','2012-02-28 10:27:49','real_time'),(2,'catalog_product_price','pending','2012-02-28 10:27:52','2012-02-28 10:27:53','real_time'),(3,'catalog_url','pending','2012-02-28 10:27:53','2012-02-28 10:27:53','real_time'),(4,'catalog_product_flat','pending','2012-02-28 10:27:49','2012-02-28 10:27:52','real_time'),(5,'catalog_category_flat','pending','2012-02-28 10:27:49','2012-02-28 10:27:49','real_time'),(6,'catalog_category_product','pending','2012-02-28 10:27:49','2012-02-28 10:27:49','real_time'),(7,'catalogsearch_fulltext','pending','2012-02-29 10:38:09','2012-02-29 10:38:09','real_time'),(8,'cataloginventory_stock','pending','2012-02-28 10:27:49','2012-02-28 10:27:49','real_time'),(9,'tag_summary','pending','2012-02-28 10:27:53','2012-02-28 10:27:53','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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_INDEX_PROCESS_EVENT_EVENT_ID_INDEX_EVENT_EVENT_ID` FOREIGN KEY (`event_id`) REFERENCES `index_event` (`event_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_INDEX_PROCESS_EVENT_PROCESS_ID_INDEX_PROCESS_PROCESS_ID` FOREIGN KEY (`process_id`) REFERENCES `index_process` (`process_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Index Process Event'; /*!40101 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 */; INSERT INTO `index_process_event` VALUES (1,4,'done'),(1,6,'done'),(1,8,'done'),(1,10,'done'),(1,36,'done'),(1,37,'done'),(1,38,'done'),(1,39,'done'),(1,41,'done'),(1,42,'done'),(1,43,'done'),(2,4,'done'),(2,6,'done'),(2,8,'done'),(2,10,'done'),(2,11,'done'),(2,43,'done'),(3,1,'done'),(3,2,'done'),(3,4,'done'),(3,6,'done'),(3,8,'done'),(3,10,'done'),(3,12,'done'),(3,13,'done'),(3,14,'done'),(3,15,'done'),(3,16,'done'),(3,17,'done'),(3,18,'done'),(3,19,'done'),(3,20,'done'),(3,21,'done'),(3,22,'done'),(3,23,'done'),(3,24,'done'),(3,25,'done'),(3,26,'done'),(3,27,'done'),(3,28,'done'),(3,29,'done'),(3,30,'done'),(3,31,'done'),(3,32,'done'),(3,33,'done'),(3,34,'done'),(3,35,'done'),(4,4,'done'),(4,6,'done'),(4,8,'done'),(4,10,'done'),(4,43,'done'),(6,1,'done'),(6,2,'done'),(6,4,'done'),(6,6,'done'),(6,8,'done'),(6,10,'done'),(6,12,'done'),(6,13,'done'),(6,14,'done'),(6,15,'done'),(6,16,'done'),(6,17,'done'),(6,18,'done'),(6,19,'done'),(6,20,'done'),(6,21,'done'),(6,22,'done'),(6,23,'done'),(6,24,'done'),(6,25,'done'),(6,26,'done'),(6,27,'done'),(6,28,'done'),(6,29,'done'),(6,30,'done'),(6,31,'done'),(6,32,'done'),(6,33,'done'),(6,34,'done'),(6,35,'done'),(6,43,'done'),(7,1,'done'),(7,2,'done'),(7,4,'done'),(7,6,'done'),(7,8,'done'),(7,10,'done'),(7,12,'done'),(7,13,'done'),(7,14,'done'),(7,15,'done'),(7,16,'done'),(7,17,'done'),(7,18,'done'),(7,19,'done'),(7,20,'done'),(7,21,'done'),(7,22,'done'),(7,23,'done'),(7,24,'done'),(7,25,'done'),(7,26,'done'),(7,27,'done'),(7,28,'done'),(7,29,'done'),(7,30,'done'),(7,31,'done'),(7,32,'done'),(7,33,'done'),(7,34,'done'),(7,35,'done'),(7,39,'done'),(7,40,'done'),(7,41,'done'),(7,42,'done'),(7,43,'done'),(8,3,'done'),(8,4,'done'),(8,5,'done'),(8,6,'done'),(8,7,'done'),(8,8,'done'),(8,9,'done'),(8,10,'done'),(8,43,'done'),(8,44,'done'),(9,4,'done'),(9,6,'done'),(9,8,'done'),(9,10,'done'),(9,43,'done'); /*!40000 ALTER TABLE `index_process_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_customer` -- DROP TABLE IF EXISTS `log_customer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Log Customers Table'; /*!40101 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,131,1,'2012-03-02 14:59:32','2012-03-02 13:59:32',1),(2,136,1,'2012-03-02 21:30:17',NULL,1); /*!40000 ALTER TABLE `log_customer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_quote` -- DROP TABLE IF EXISTS `log_quote`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Creation Time', `deleted_at` timestamp NULL DEFAULT NULL COMMENT 'Deletion Time', PRIMARY KEY (`quote_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log Quotes Table'; /*!40101 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 (1,19,'2012-02-16 06:37:11',NULL),(2,22,'2012-02-16 09:07:34',NULL),(3,38,'2012-02-20 15:17:54',NULL),(4,52,'2012-02-21 13:22:52',NULL),(5,61,'2012-02-22 09:28:37',NULL),(6,62,'2012-02-22 09:28:53',NULL),(7,63,'2012-02-22 13:30:39',NULL),(8,65,'2012-02-23 07:01:51',NULL),(9,66,'2012-02-23 07:01:57',NULL),(10,99,'2012-02-27 15:49:30',NULL),(11,97,'2012-02-27 15:49:35',NULL),(12,126,'2012-03-01 06:58:04',NULL),(13,129,'2012-03-02 09:24:23',NULL),(14,129,'2012-03-02 09:28:59',NULL),(15,132,'2012-03-02 12:36:43',NULL),(17,132,'2012-03-02 12:48:20',NULL),(21,135,'2012-03-02 15:17:17',NULL),(24,137,'2012-03-03 09:07:13',NULL); /*!40000 ALTER TABLE `log_quote` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_summary` -- DROP TABLE IF EXISTS `log_summary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date', PRIMARY KEY (`summary_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log Summary Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Log Summary Types Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Visit Time', PRIMARY KEY (`url_id`), KEY `IDX_LOG_URL_VISITOR_ID` (`visitor_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log URL Table'; /*!40101 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,'2012-02-08 21:11:30'),(2,2,'2012-02-08 21:22:31'),(3,2,'2012-02-08 21:22:40'),(4,2,'2012-02-08 21:22:44'),(5,2,'2012-02-08 21:22:47'),(6,2,'2012-02-08 21:22:49'),(7,2,'2012-02-08 21:22:52'),(8,2,'2012-02-08 21:22:52'),(9,2,'2012-02-08 21:22:52'),(10,2,'2012-02-08 21:22:56'),(11,2,'2012-02-08 21:22:58'),(12,2,'2012-02-08 21:23:01'),(13,2,'2012-02-08 21:23:16'),(14,2,'2012-02-08 21:23:19'),(15,2,'2012-02-08 21:23:24'),(16,2,'2012-02-08 21:23:28'),(17,2,'2012-02-08 21:23:39'),(18,2,'2012-02-08 21:24:24'),(19,3,'2012-02-09 07:48:21'),(20,4,'2012-02-13 15:35:20'),(21,5,'2012-02-13 15:35:24'),(22,5,'2012-02-13 15:35:50'),(23,5,'2012-02-13 15:35:52'),(24,5,'2012-02-13 15:35:54'),(25,5,'2012-02-13 15:35:56'),(26,5,'2012-02-13 15:35:58'),(27,5,'2012-02-13 15:36:03'),(28,5,'2012-02-13 15:36:14'),(29,5,'2012-02-13 15:39:58'),(30,4,'2012-02-13 15:49:23'),(31,4,'2012-02-13 15:49:24'),(32,4,'2012-02-13 15:49:27'),(33,4,'2012-02-13 15:49:28'),(34,4,'2012-02-13 15:49:59'),(35,5,'2012-02-13 15:50:01'),(36,5,'2012-02-13 15:50:06'),(37,5,'2012-02-13 15:50:07'),(38,5,'2012-02-13 15:50:18'),(39,5,'2012-02-13 15:51:50'),(40,5,'2012-02-13 15:51:54'),(41,4,'2012-02-13 15:51:54'),(42,5,'2012-02-13 15:51:56'),(43,4,'2012-02-13 15:51:59'),(44,4,'2012-02-13 15:52:03'),(45,4,'2012-02-13 15:52:13'),(46,4,'2012-02-13 15:52:26'),(47,4,'2012-02-13 15:53:04'),(48,4,'2012-02-13 15:53:29'),(49,4,'2012-02-13 15:53:55'),(50,4,'2012-02-13 15:53:58'),(51,5,'2012-02-13 15:54:05'),(52,4,'2012-02-13 15:54:09'),(53,5,'2012-02-13 15:54:10'),(54,4,'2012-02-13 15:54:12'),(55,4,'2012-02-13 15:54:28'),(56,5,'2012-02-13 15:54:46'),(57,4,'2012-02-13 15:54:52'),(58,4,'2012-02-13 15:55:16'),(59,4,'2012-02-13 15:55:23'),(60,4,'2012-02-13 15:55:24'),(61,4,'2012-02-13 15:55:32'),(62,4,'2012-02-13 15:55:37'),(63,4,'2012-02-13 15:55:40'),(64,4,'2012-02-13 15:55:42'),(65,4,'2012-02-13 15:55:44'),(66,5,'2012-02-13 15:56:01'),(67,5,'2012-02-13 15:56:53'),(68,5,'2012-02-13 15:57:02'),(69,5,'2012-02-13 15:57:02'),(70,4,'2012-02-13 15:57:07'),(71,4,'2012-02-13 15:57:15'),(72,4,'2012-02-13 15:57:15'),(73,4,'2012-02-13 15:57:18'),(74,5,'2012-02-13 15:57:19'),(75,4,'2012-02-13 15:57:23'),(76,5,'2012-02-13 15:57:24'),(77,4,'2012-02-13 15:57:28'),(78,4,'2012-02-13 15:57:31'),(79,5,'2012-02-13 15:57:34'),(80,5,'2012-02-13 15:57:37'),(81,5,'2012-02-13 15:57:38'),(82,5,'2012-02-13 15:57:38'),(83,5,'2012-02-13 15:57:39'),(84,5,'2012-02-13 15:57:42'),(85,5,'2012-02-13 15:57:48'),(86,5,'2012-02-13 15:57:49'),(87,4,'2012-02-13 15:59:12'),(88,4,'2012-02-13 15:59:14'),(89,4,'2012-02-13 15:59:17'),(90,4,'2012-02-13 15:59:19'),(91,4,'2012-02-13 16:00:59'),(92,4,'2012-02-13 16:01:15'),(93,5,'2012-02-13 16:01:19'),(94,4,'2012-02-13 16:01:20'),(95,4,'2012-02-13 16:01:23'),(96,4,'2012-02-13 16:01:26'),(97,6,'2012-02-13 16:01:45'),(98,4,'2012-02-13 16:02:07'),(99,5,'2012-02-13 16:02:19'),(100,5,'2012-02-13 16:41:35'),(101,5,'2012-02-13 16:41:38'),(102,5,'2012-02-13 16:46:11'),(103,7,'2012-02-14 13:22:54'),(104,8,'2012-02-14 13:24:26'),(105,7,'2012-02-14 13:29:21'),(106,8,'2012-02-14 13:31:26'),(107,7,'2012-02-14 13:39:06'),(108,7,'2012-02-14 13:39:52'),(109,8,'2012-02-14 13:43:49'),(110,9,'2012-02-14 14:12:36'),(111,10,'2012-02-14 14:19:20'),(112,10,'2012-02-14 14:19:23'),(113,10,'2012-02-14 14:19:28'),(114,10,'2012-02-14 14:59:07'),(115,11,'2012-02-14 16:43:01'),(116,12,'2012-02-14 17:24:45'),(117,13,'2012-02-14 22:26:43'),(118,13,'2012-02-14 22:48:18'),(119,13,'2012-02-14 22:48:24'),(120,13,'2012-02-14 22:48:33'),(121,13,'2012-02-14 22:48:34'),(122,13,'2012-02-14 22:48:36'),(123,13,'2012-02-14 22:48:39'),(124,13,'2012-02-14 22:48:48'),(125,13,'2012-02-14 22:48:51'),(126,13,'2012-02-14 22:48:53'),(127,13,'2012-02-14 22:48:56'),(128,13,'2012-02-14 22:49:00'),(129,13,'2012-02-14 22:49:06'),(130,13,'2012-02-14 22:49:10'),(131,13,'2012-02-14 22:49:55'),(132,13,'2012-02-14 22:50:23'),(133,13,'2012-02-14 22:50:26'),(134,13,'2012-02-14 22:50:35'),(135,13,'2012-02-14 22:50:43'),(136,13,'2012-02-14 22:50:44'),(137,13,'2012-02-14 22:50:45'),(138,13,'2012-02-14 22:50:48'),(139,14,'2012-02-15 06:49:34'),(140,15,'2012-02-15 07:03:28'),(141,16,'2012-02-15 07:04:44'),(142,17,'2012-02-15 09:34:46'),(143,18,'2012-02-15 22:46:59'),(144,18,'2012-02-15 22:54:26'),(145,18,'2012-02-15 23:40:38'),(146,18,'2012-02-15 23:40:46'),(147,18,'2012-02-15 23:40:49'),(148,18,'2012-02-15 23:41:01'),(149,18,'2012-02-15 23:41:03'),(150,18,'2012-02-15 23:41:14'),(151,18,'2012-02-15 23:42:06'),(152,18,'2012-02-15 23:42:22'),(153,18,'2012-02-15 23:42:24'),(154,18,'2012-02-15 23:43:13'),(155,18,'2012-02-15 23:44:26'),(156,18,'2012-02-15 23:44:28'),(157,18,'2012-02-15 23:44:30'),(158,18,'2012-02-15 23:44:30'),(159,18,'2012-02-15 23:45:46'),(160,18,'2012-02-15 23:45:47'),(161,18,'2012-02-15 23:45:48'),(162,18,'2012-02-15 23:45:58'),(163,18,'2012-02-15 23:46:02'),(164,18,'2012-02-15 23:46:13'),(165,18,'2012-02-15 23:48:39'),(166,18,'2012-02-15 23:58:17'),(167,18,'2012-02-15 23:59:03'),(168,18,'2012-02-16 00:01:09'),(169,18,'2012-02-16 00:02:46'),(170,18,'2012-02-16 00:03:26'),(171,19,'2012-02-16 06:33:06'),(172,19,'2012-02-16 06:36:42'),(173,19,'2012-02-16 06:36:55'),(174,19,'2012-02-16 06:36:56'),(175,19,'2012-02-16 06:37:00'),(176,19,'2012-02-16 06:37:00'),(177,19,'2012-02-16 06:37:11'),(178,19,'2012-02-16 06:37:11'),(179,19,'2012-02-16 06:37:29'),(180,19,'2012-02-16 06:37:31'),(181,19,'2012-02-16 06:37:34'),(182,19,'2012-02-16 06:37:41'),(183,19,'2012-02-16 06:37:50'),(184,19,'2012-02-16 06:37:53'),(185,19,'2012-02-16 06:37:59'),(186,19,'2012-02-16 06:38:15'),(187,19,'2012-02-16 06:38:15'),(188,19,'2012-02-16 06:38:19'),(189,19,'2012-02-16 06:38:19'),(190,19,'2012-02-16 06:38:51'),(191,19,'2012-02-16 06:39:04'),(192,19,'2012-02-16 06:39:04'),(193,19,'2012-02-16 06:39:07'),(194,19,'2012-02-16 06:39:08'),(195,19,'2012-02-16 06:39:09'),(196,19,'2012-02-16 06:39:13'),(197,19,'2012-02-16 06:39:26'),(198,19,'2012-02-16 06:39:31'),(199,19,'2012-02-16 06:42:42'),(200,19,'2012-02-16 06:47:04'),(201,19,'2012-02-16 06:47:06'),(202,19,'2012-02-16 06:48:48'),(203,19,'2012-02-16 06:48:53'),(204,19,'2012-02-16 06:54:52'),(205,20,'2012-02-16 07:46:54'),(206,21,'2012-02-16 08:14:14'),(207,21,'2012-02-16 08:34:05'),(208,22,'2012-02-16 09:07:01'),(209,22,'2012-02-16 09:07:01'),(210,22,'2012-02-16 09:07:14'),(211,22,'2012-02-16 09:07:34'),(212,22,'2012-02-16 09:07:34'),(213,22,'2012-02-16 09:08:02'),(214,22,'2012-02-16 09:08:11'),(215,22,'2012-02-16 09:08:17'),(216,23,'2012-02-16 09:33:08'),(217,23,'2012-02-16 09:34:20'),(218,23,'2012-02-16 09:34:25'),(219,23,'2012-02-16 09:34:25'),(220,23,'2012-02-16 09:34:32'),(221,23,'2012-02-16 09:34:34'),(222,23,'2012-02-16 09:34:41'),(223,23,'2012-02-16 09:36:54'),(224,23,'2012-02-16 09:39:25'),(225,23,'2012-02-16 09:42:35'),(226,22,'2012-02-16 09:43:57'),(227,22,'2012-02-16 09:44:14'),(228,23,'2012-02-16 10:16:30'),(229,23,'2012-02-16 10:16:32'),(230,23,'2012-02-16 10:16:42'),(231,23,'2012-02-16 10:16:42'),(232,23,'2012-02-16 10:16:48'),(233,23,'2012-02-16 10:17:01'),(234,23,'2012-02-16 10:17:02'),(235,23,'2012-02-16 10:17:08'),(236,24,'2012-02-16 11:57:30'),(237,24,'2012-02-16 12:15:45'),(238,25,'2012-02-16 13:45:20'),(239,25,'2012-02-16 13:45:24'),(240,25,'2012-02-16 13:46:08'),(241,25,'2012-02-16 13:46:25'),(242,25,'2012-02-16 13:47:28'),(243,26,'2012-02-16 13:50:54'),(244,26,'2012-02-16 13:53:40'),(245,25,'2012-02-16 13:56:54'),(246,25,'2012-02-16 13:57:35'),(247,25,'2012-02-16 13:58:04'),(248,26,'2012-02-16 13:58:08'),(249,26,'2012-02-16 14:03:20'),(250,26,'2012-02-16 14:03:31'),(251,26,'2012-02-16 14:04:03'),(252,26,'2012-02-16 14:12:00'),(253,26,'2012-02-16 14:12:11'),(254,26,'2012-02-16 14:17:08'),(255,26,'2012-02-16 14:17:10'),(256,26,'2012-02-16 14:17:15'),(257,26,'2012-02-16 14:17:25'),(258,26,'2012-02-16 14:18:12'),(259,26,'2012-02-16 14:19:25'),(260,26,'2012-02-16 14:21:31'),(261,26,'2012-02-16 14:21:34'),(262,26,'2012-02-16 14:21:44'),(263,26,'2012-02-16 14:23:43'),(264,26,'2012-02-16 14:26:51'),(265,26,'2012-02-16 14:27:21'),(266,26,'2012-02-16 14:27:24'),(267,26,'2012-02-16 14:27:31'),(268,26,'2012-02-16 14:27:34'),(269,26,'2012-02-16 14:27:42'),(270,25,'2012-02-16 14:28:30'),(271,27,'2012-02-16 19:17:21'),(272,27,'2012-02-16 19:18:05'),(273,27,'2012-02-16 19:18:19'),(274,27,'2012-02-16 19:18:32'),(275,27,'2012-02-16 19:18:45'),(276,27,'2012-02-16 19:19:17'),(277,27,'2012-02-16 19:24:40'),(278,27,'2012-02-16 19:24:44'),(279,27,'2012-02-16 20:02:49'),(280,27,'2012-02-16 20:02:49'),(281,28,'2012-02-16 20:18:35'),(282,29,'2012-02-17 10:02:02'),(283,29,'2012-02-17 10:02:15'),(284,29,'2012-02-17 10:02:57'),(285,29,'2012-02-17 10:02:57'),(286,29,'2012-02-17 10:03:01'),(287,29,'2012-02-17 10:03:04'),(288,29,'2012-02-17 10:03:10'),(289,29,'2012-02-17 10:03:12'),(290,29,'2012-02-17 10:03:17'),(291,29,'2012-02-17 10:03:18'),(292,29,'2012-02-17 10:06:22'),(293,29,'2012-02-17 10:06:37'),(294,30,'2012-02-17 14:26:11'),(295,31,'2012-02-17 14:51:04'),(296,32,'2012-02-17 14:59:31'),(297,32,'2012-02-17 14:59:50'),(298,32,'2012-02-17 14:59:52'),(299,32,'2012-02-17 15:00:04'),(300,32,'2012-02-17 15:00:26'),(301,32,'2012-02-17 15:00:38'),(302,32,'2012-02-17 15:00:42'),(303,32,'2012-02-17 15:00:50'),(304,32,'2012-02-17 15:00:58'),(305,32,'2012-02-17 15:01:07'),(306,32,'2012-02-17 15:01:11'),(307,33,'2012-02-17 19:12:19'),(308,34,'2012-02-19 08:41:05'),(309,35,'2012-02-20 07:31:45'),(310,35,'2012-02-20 07:36:28'),(311,35,'2012-02-20 07:38:09'),(312,35,'2012-02-20 07:38:11'),(313,35,'2012-02-20 07:38:31'),(314,35,'2012-02-20 07:38:40'),(315,35,'2012-02-20 07:39:55'),(316,35,'2012-02-20 07:40:03'),(317,35,'2012-02-20 07:41:33'),(318,35,'2012-02-20 07:41:36'),(319,35,'2012-02-20 07:41:40'),(320,35,'2012-02-20 07:41:42'),(321,35,'2012-02-20 07:43:21'),(322,35,'2012-02-20 07:43:25'),(323,35,'2012-02-20 07:43:55'),(324,35,'2012-02-20 07:43:58'),(325,35,'2012-02-20 07:48:26'),(326,36,'2012-02-20 08:53:48'),(327,37,'2012-02-20 11:46:37'),(328,37,'2012-02-20 11:46:43'),(329,37,'2012-02-20 11:46:49'),(330,37,'2012-02-20 11:46:53'),(331,37,'2012-02-20 11:46:54'),(332,37,'2012-02-20 11:46:56'),(333,37,'2012-02-20 11:46:57'),(334,37,'2012-02-20 11:46:58'),(335,37,'2012-02-20 11:47:26'),(336,37,'2012-02-20 11:47:36'),(337,37,'2012-02-20 11:47:41'),(338,37,'2012-02-20 11:57:06'),(339,37,'2012-02-20 11:57:17'),(340,37,'2012-02-20 11:57:20'),(341,37,'2012-02-20 11:57:27'),(342,37,'2012-02-20 11:57:28'),(343,37,'2012-02-20 11:57:29'),(344,37,'2012-02-20 11:57:38'),(345,37,'2012-02-20 12:21:45'),(346,37,'2012-02-20 12:22:42'),(347,37,'2012-02-20 12:22:48'),(348,37,'2012-02-20 12:22:56'),(349,37,'2012-02-20 12:23:04'),(350,37,'2012-02-20 12:27:31'),(351,37,'2012-02-20 12:27:37'),(352,37,'2012-02-20 12:27:41'),(353,37,'2012-02-20 12:28:37'),(354,37,'2012-02-20 12:28:44'),(355,38,'2012-02-20 14:37:00'),(356,38,'2012-02-20 14:37:05'),(357,38,'2012-02-20 14:39:31'),(358,39,'2012-02-20 15:10:18'),(359,38,'2012-02-20 15:10:29'),(360,38,'2012-02-20 15:14:59'),(361,39,'2012-02-20 15:16:05'),(362,38,'2012-02-20 15:16:19'),(363,38,'2012-02-20 15:16:22'),(364,38,'2012-02-20 15:16:31'),(365,38,'2012-02-20 15:16:53'),(366,40,'2012-02-20 15:16:53'),(367,38,'2012-02-20 15:16:58'),(368,38,'2012-02-20 15:17:08'),(369,38,'2012-02-20 15:17:12'),(370,38,'2012-02-20 15:17:15'),(371,38,'2012-02-20 15:17:17'),(372,38,'2012-02-20 15:17:22'),(373,38,'2012-02-20 15:17:24'),(374,38,'2012-02-20 15:17:37'),(375,38,'2012-02-20 15:17:43'),(376,38,'2012-02-20 15:17:54'),(377,38,'2012-02-20 15:17:55'),(378,38,'2012-02-20 15:17:59'),(379,38,'2012-02-20 15:22:11'),(380,38,'2012-02-20 15:22:14'),(381,41,'2012-02-20 15:28:58'),(382,42,'2012-02-20 15:30:17'),(383,42,'2012-02-20 15:32:38'),(384,43,'2012-02-20 15:45:15'),(385,43,'2012-02-20 15:45:18'),(386,44,'2012-02-20 15:46:29'),(387,45,'2012-02-20 15:54:28'),(388,43,'2012-02-20 16:01:51'),(389,46,'2012-02-20 17:06:10'),(390,46,'2012-02-20 17:13:42'),(391,47,'2012-02-20 20:34:47'),(392,48,'2012-02-21 08:24:51'),(393,49,'2012-02-21 08:24:54'),(394,50,'2012-02-21 10:17:46'),(395,51,'2012-02-21 12:47:11'),(396,51,'2012-02-21 12:47:15'),(397,51,'2012-02-21 12:47:20'),(398,51,'2012-02-21 12:51:32'),(399,51,'2012-02-21 12:52:09'),(400,52,'2012-02-21 13:22:01'),(401,52,'2012-02-21 13:22:27'),(402,52,'2012-02-21 13:22:29'),(403,52,'2012-02-21 13:22:34'),(404,52,'2012-02-21 13:22:36'),(405,52,'2012-02-21 13:22:38'),(406,52,'2012-02-21 13:22:40'),(407,52,'2012-02-21 13:22:52'),(408,52,'2012-02-21 13:22:54'),(409,52,'2012-02-21 13:22:58'),(410,52,'2012-02-21 13:24:14'),(411,52,'2012-02-21 13:24:18'),(412,52,'2012-02-21 13:24:35'),(413,52,'2012-02-21 13:24:54'),(414,52,'2012-02-21 13:24:57'),(415,52,'2012-02-21 13:25:00'),(416,52,'2012-02-21 13:25:02'),(417,52,'2012-02-21 13:25:05'),(418,52,'2012-02-21 13:25:10'),(419,52,'2012-02-21 13:25:15'),(420,52,'2012-02-21 13:25:20'),(421,52,'2012-02-21 13:25:24'),(422,52,'2012-02-21 13:25:29'),(423,52,'2012-02-21 13:25:34'),(424,53,'2012-02-21 14:37:18'),(425,53,'2012-02-21 14:37:26'),(426,53,'2012-02-21 14:37:30'),(427,53,'2012-02-21 14:37:41'),(428,53,'2012-02-21 14:38:36'),(429,53,'2012-02-21 14:38:49'),(430,53,'2012-02-21 14:38:54'),(431,54,'2012-02-21 14:42:38'),(432,54,'2012-02-21 14:42:47'),(433,55,'2012-02-21 14:43:34'),(434,53,'2012-02-21 14:46:59'),(435,53,'2012-02-21 14:47:09'),(436,53,'2012-02-21 14:47:15'),(437,53,'2012-02-21 14:47:27'),(438,53,'2012-02-21 14:47:32'),(439,53,'2012-02-21 14:49:04'),(440,53,'2012-02-21 14:49:16'),(441,57,'2012-02-21 14:49:19'),(442,56,'2012-02-21 14:49:19'),(443,53,'2012-02-21 14:49:21'),(444,56,'2012-02-21 14:49:29'),(445,58,'2012-02-21 17:15:56'),(446,59,'2012-02-21 19:49:50'),(447,60,'2012-02-22 09:20:43'),(448,61,'2012-02-22 09:20:44'),(449,61,'2012-02-22 09:20:51'),(450,62,'2012-02-22 09:21:46'),(451,62,'2012-02-22 09:23:02'),(452,61,'2012-02-22 09:28:37'),(453,61,'2012-02-22 09:28:38'),(454,61,'2012-02-22 09:28:42'),(455,62,'2012-02-22 09:28:53'),(456,62,'2012-02-22 09:28:54'),(457,62,'2012-02-22 09:28:57'),(458,61,'2012-02-22 09:33:43'),(459,62,'2012-02-22 09:33:56'),(460,61,'2012-02-22 09:36:08'),(461,62,'2012-02-22 09:36:10'),(462,62,'2012-02-22 09:36:17'),(463,62,'2012-02-22 09:36:24'),(464,62,'2012-02-22 09:37:03'),(465,62,'2012-02-22 09:37:10'),(466,62,'2012-02-22 09:37:15'),(467,62,'2012-02-22 09:37:24'),(468,62,'2012-02-22 09:37:27'),(469,62,'2012-02-22 09:41:33'),(470,61,'2012-02-22 09:42:39'),(471,62,'2012-02-22 09:48:42'),(472,61,'2012-02-22 09:49:25'),(473,61,'2012-02-22 09:49:28'),(474,62,'2012-02-22 09:49:32'),(475,61,'2012-02-22 09:49:43'),(476,61,'2012-02-22 09:49:49'),(477,61,'2012-02-22 09:52:42'),(478,62,'2012-02-22 09:52:46'),(479,61,'2012-02-22 09:52:54'),(480,62,'2012-02-22 09:53:02'),(481,61,'2012-02-22 09:53:19'),(482,62,'2012-02-22 09:54:38'),(483,62,'2012-02-22 09:54:39'),(484,61,'2012-02-22 09:55:06'),(485,61,'2012-02-22 09:55:07'),(486,61,'2012-02-22 09:55:13'),(487,61,'2012-02-22 09:55:14'),(488,62,'2012-02-22 09:55:24'),(489,62,'2012-02-22 09:55:25'),(490,62,'2012-02-22 09:56:35'),(491,62,'2012-02-22 09:58:42'),(492,62,'2012-02-22 09:58:43'),(493,62,'2012-02-22 09:58:48'),(494,62,'2012-02-22 09:58:49'),(495,62,'2012-02-22 09:58:54'),(496,62,'2012-02-22 09:58:55'),(497,62,'2012-02-22 09:59:05'),(498,62,'2012-02-22 09:59:06'),(499,62,'2012-02-22 09:59:19'),(500,62,'2012-02-22 09:59:20'),(501,62,'2012-02-22 09:59:25'),(502,62,'2012-02-22 09:59:26'),(503,62,'2012-02-22 09:59:31'),(504,62,'2012-02-22 09:59:32'),(505,61,'2012-02-22 09:59:51'),(506,61,'2012-02-22 09:59:59'),(507,61,'2012-02-22 09:59:59'),(508,61,'2012-02-22 10:00:35'),(509,61,'2012-02-22 10:00:36'),(510,62,'2012-02-22 10:00:43'),(511,62,'2012-02-22 10:00:44'),(512,62,'2012-02-22 10:00:46'),(513,62,'2012-02-22 10:00:51'),(514,62,'2012-02-22 10:00:51'),(515,62,'2012-02-22 10:00:53'),(516,61,'2012-02-22 10:00:54'),(517,62,'2012-02-22 10:00:56'),(518,62,'2012-02-22 10:00:57'),(519,62,'2012-02-22 10:00:58'),(520,61,'2012-02-22 10:01:00'),(521,61,'2012-02-22 10:01:01'),(522,61,'2012-02-22 10:01:02'),(523,61,'2012-02-22 10:01:03'),(524,61,'2012-02-22 10:01:05'),(525,61,'2012-02-22 10:01:12'),(526,61,'2012-02-22 10:01:13'),(527,61,'2012-02-22 10:01:20'),(528,61,'2012-02-22 10:01:21'),(529,61,'2012-02-22 10:01:30'),(530,61,'2012-02-22 10:01:31'),(531,61,'2012-02-22 10:01:35'),(532,61,'2012-02-22 10:01:36'),(533,61,'2012-02-22 10:01:39'),(534,61,'2012-02-22 10:01:40'),(535,61,'2012-02-22 10:04:25'),(536,61,'2012-02-22 10:04:46'),(537,61,'2012-02-22 10:05:02'),(538,62,'2012-02-22 10:05:05'),(539,62,'2012-02-22 10:05:55'),(540,61,'2012-02-22 10:06:04'),(541,61,'2012-02-22 10:06:07'),(542,61,'2012-02-22 10:06:10'),(543,61,'2012-02-22 10:06:13'),(544,61,'2012-02-22 10:06:17'),(545,61,'2012-02-22 10:10:20'),(546,61,'2012-02-22 10:10:26'),(547,61,'2012-02-22 10:10:29'),(548,61,'2012-02-22 10:10:33'),(549,61,'2012-02-22 10:10:36'),(550,61,'2012-02-22 10:11:05'),(551,62,'2012-02-22 10:11:14'),(552,61,'2012-02-22 10:11:44'),(553,61,'2012-02-22 10:11:45'),(554,62,'2012-02-22 10:11:47'),(555,62,'2012-02-22 10:11:48'),(556,62,'2012-02-22 10:12:29'),(557,62,'2012-02-22 10:12:31'),(558,62,'2012-02-22 10:13:19'),(559,61,'2012-02-22 10:13:21'),(560,62,'2012-02-22 10:13:24'),(561,61,'2012-02-22 10:13:57'),(562,61,'2012-02-22 10:14:02'),(563,61,'2012-02-22 10:14:04'),(564,61,'2012-02-22 10:14:07'),(565,62,'2012-02-22 10:14:13'),(566,61,'2012-02-22 10:14:14'),(567,61,'2012-02-22 10:14:29'),(568,62,'2012-02-22 10:17:20'),(569,61,'2012-02-22 10:22:58'),(570,61,'2012-02-22 10:23:01'),(571,62,'2012-02-22 10:24:42'),(572,63,'2012-02-22 13:23:42'),(573,63,'2012-02-22 13:24:03'),(574,63,'2012-02-22 13:24:10'),(575,63,'2012-02-22 13:27:04'),(576,63,'2012-02-22 13:28:16'),(577,63,'2012-02-22 13:30:18'),(578,63,'2012-02-22 13:30:39'),(579,63,'2012-02-22 13:30:40'),(580,63,'2012-02-22 13:30:46'),(581,63,'2012-02-22 13:30:54'),(582,63,'2012-02-22 13:31:01'),(583,63,'2012-02-22 13:34:25'),(584,63,'2012-02-22 13:38:22'),(585,64,'2012-02-22 18:23:01'),(586,64,'2012-02-22 18:25:14'),(587,64,'2012-02-22 18:26:56'),(588,64,'2012-02-22 18:32:08'),(589,64,'2012-02-22 18:32:15'),(590,64,'2012-02-22 18:32:19'),(591,64,'2012-02-22 18:33:32'),(592,64,'2012-02-22 18:33:45'),(593,64,'2012-02-22 18:36:39'),(594,64,'2012-02-22 18:36:43'),(595,64,'2012-02-22 18:42:13'),(596,64,'2012-02-22 18:47:38'),(597,64,'2012-02-22 18:49:51'),(598,64,'2012-02-22 18:49:54'),(599,64,'2012-02-22 18:50:29'),(600,64,'2012-02-22 18:51:02'),(601,64,'2012-02-22 18:51:42'),(602,64,'2012-02-22 18:51:45'),(603,64,'2012-02-22 18:56:35'),(604,64,'2012-02-22 18:56:45'),(605,64,'2012-02-22 19:00:48'),(606,64,'2012-02-22 19:01:14'),(607,64,'2012-02-22 19:02:23'),(608,64,'2012-02-22 19:09:49'),(609,64,'2012-02-22 19:13:16'),(610,64,'2012-02-22 19:13:35'),(611,64,'2012-02-22 19:14:16'),(612,64,'2012-02-22 19:14:25'),(613,64,'2012-02-22 19:57:05'),(614,65,'2012-02-23 07:00:23'),(615,65,'2012-02-23 07:00:52'),(616,66,'2012-02-23 07:01:49'),(617,65,'2012-02-23 07:01:51'),(618,65,'2012-02-23 07:01:52'),(619,66,'2012-02-23 07:01:54'),(620,66,'2012-02-23 07:01:57'),(621,66,'2012-02-23 07:01:58'),(622,65,'2012-02-23 07:03:16'),(623,66,'2012-02-23 07:03:22'),(624,65,'2012-02-23 07:03:24'),(625,66,'2012-02-23 07:11:14'),(626,66,'2012-02-23 07:11:58'),(627,65,'2012-02-23 07:12:05'),(628,65,'2012-02-23 07:12:12'),(629,65,'2012-02-23 07:12:15'),(630,65,'2012-02-23 07:12:22'),(631,66,'2012-02-23 07:13:34'),(632,66,'2012-02-23 07:29:50'),(633,66,'2012-02-23 07:29:57'),(634,66,'2012-02-23 07:30:02'),(635,66,'2012-02-23 07:30:12'),(636,66,'2012-02-23 07:32:44'),(637,66,'2012-02-23 07:33:28'),(638,66,'2012-02-23 07:33:32'),(639,66,'2012-02-23 07:38:06'),(640,66,'2012-02-23 07:47:54'),(641,66,'2012-02-23 07:47:58'),(642,66,'2012-02-23 07:48:04'),(643,66,'2012-02-23 07:48:05'),(644,66,'2012-02-23 07:48:09'),(645,66,'2012-02-23 07:48:50'),(646,66,'2012-02-23 07:48:56'),(647,66,'2012-02-23 07:48:57'),(648,66,'2012-02-23 07:52:12'),(649,66,'2012-02-23 07:53:36'),(650,66,'2012-02-23 07:54:17'),(651,66,'2012-02-23 07:58:10'),(652,66,'2012-02-23 07:58:19'),(653,66,'2012-02-23 07:58:20'),(654,66,'2012-02-23 07:58:29'),(655,66,'2012-02-23 07:58:32'),(656,66,'2012-02-23 07:58:33'),(657,66,'2012-02-23 07:58:39'),(658,66,'2012-02-23 07:58:40'),(659,66,'2012-02-23 07:59:38'),(660,65,'2012-02-23 08:01:17'),(661,65,'2012-02-23 08:01:24'),(662,65,'2012-02-23 08:01:39'),(663,65,'2012-02-23 08:01:41'),(664,65,'2012-02-23 08:01:52'),(665,65,'2012-02-23 08:01:55'),(666,65,'2012-02-23 08:02:00'),(667,65,'2012-02-23 08:02:01'),(668,65,'2012-02-23 08:02:13'),(669,65,'2012-02-23 08:02:14'),(670,66,'2012-02-23 08:02:55'),(671,66,'2012-02-23 08:03:00'),(672,66,'2012-02-23 08:03:01'),(673,65,'2012-02-23 08:04:11'),(674,65,'2012-02-23 08:04:17'),(675,66,'2012-02-23 08:04:20'),(676,66,'2012-02-23 08:06:46'),(677,66,'2012-02-23 08:06:56'),(678,65,'2012-02-23 08:09:41'),(679,65,'2012-02-23 08:09:49'),(680,65,'2012-02-23 08:09:53'),(681,65,'2012-02-23 08:09:54'),(682,65,'2012-02-23 08:10:01'),(683,65,'2012-02-23 08:10:02'),(684,66,'2012-02-23 08:15:42'),(685,66,'2012-02-23 08:15:59'),(686,66,'2012-02-23 08:16:57'),(687,66,'2012-02-23 08:17:02'),(688,66,'2012-02-23 08:17:03'),(689,66,'2012-02-23 08:31:15'),(690,66,'2012-02-23 08:31:23'),(691,66,'2012-02-23 08:31:38'),(692,66,'2012-02-23 08:32:13'),(693,66,'2012-02-23 08:32:23'),(694,66,'2012-02-23 08:33:01'),(695,67,'2012-02-23 08:34:12'),(696,67,'2012-02-23 08:34:18'),(697,67,'2012-02-23 08:34:20'),(698,68,'2012-02-23 08:38:16'),(699,68,'2012-02-23 08:38:29'),(700,68,'2012-02-23 08:38:46'),(701,68,'2012-02-23 08:39:09'),(702,65,'2012-02-23 08:41:25'),(703,65,'2012-02-23 08:41:29'),(704,65,'2012-02-23 08:41:30'),(705,65,'2012-02-23 08:41:44'),(706,65,'2012-02-23 08:50:32'),(707,65,'2012-02-23 08:50:36'),(708,65,'2012-02-23 08:50:38'),(709,65,'2012-02-23 08:50:43'),(710,65,'2012-02-23 08:50:52'),(711,69,'2012-02-23 08:55:20'),(712,69,'2012-02-23 08:55:35'),(713,69,'2012-02-23 08:55:37'),(714,69,'2012-02-23 08:56:08'),(715,69,'2012-02-23 08:56:16'),(716,69,'2012-02-23 08:56:25'),(717,69,'2012-02-23 08:56:28'),(718,69,'2012-02-23 08:56:47'),(719,69,'2012-02-23 08:57:00'),(720,69,'2012-02-23 08:57:04'),(721,69,'2012-02-23 08:57:10'),(722,69,'2012-02-23 08:57:14'),(723,69,'2012-02-23 08:58:48'),(724,65,'2012-02-23 08:59:32'),(725,66,'2012-02-23 09:15:18'),(726,65,'2012-02-23 09:21:16'),(727,65,'2012-02-23 09:21:24'),(728,70,'2012-02-23 10:38:44'),(729,71,'2012-02-23 19:35:18'),(730,71,'2012-02-23 19:37:41'),(731,71,'2012-02-23 19:38:00'),(732,72,'2012-02-25 04:58:36'),(733,73,'2012-02-25 12:07:08'),(734,74,'2012-02-25 13:47:59'),(735,74,'2012-02-25 13:48:53'),(736,74,'2012-02-25 13:49:55'),(737,74,'2012-02-25 13:50:39'),(738,74,'2012-02-25 13:52:49'),(739,74,'2012-02-25 14:19:51'),(740,74,'2012-02-25 14:24:06'),(741,74,'2012-02-25 14:25:17'),(742,74,'2012-02-25 14:29:52'),(743,75,'2012-02-25 22:09:43'),(744,75,'2012-02-25 22:10:14'),(745,75,'2012-02-25 23:09:13'),(746,75,'2012-02-25 23:10:18'),(747,75,'2012-02-25 23:14:41'),(748,75,'2012-02-25 23:14:52'),(749,75,'2012-02-25 23:24:55'),(750,75,'2012-02-25 23:25:11'),(751,75,'2012-02-25 23:26:05'),(752,75,'2012-02-25 23:30:41'),(753,75,'2012-02-25 23:30:50'),(754,75,'2012-02-25 23:31:13'),(755,75,'2012-02-25 23:32:53'),(756,75,'2012-02-25 23:33:15'),(757,75,'2012-02-25 23:35:07'),(758,75,'2012-02-25 23:35:59'),(759,75,'2012-02-25 23:36:50'),(760,75,'2012-02-25 23:38:09'),(761,75,'2012-02-25 23:39:11'),(762,75,'2012-02-25 23:41:12'),(763,75,'2012-02-25 23:41:53'),(764,75,'2012-02-25 23:42:49'),(765,75,'2012-02-25 23:43:48'),(766,75,'2012-02-25 23:44:38'),(767,75,'2012-02-25 23:45:22'),(768,75,'2012-02-25 23:46:41'),(769,75,'2012-02-25 23:47:45'),(770,75,'2012-02-25 23:52:05'),(771,75,'2012-02-26 00:00:29'),(772,75,'2012-02-26 00:06:35'),(773,75,'2012-02-26 00:09:38'),(774,75,'2012-02-26 00:11:08'),(775,75,'2012-02-26 00:12:30'),(776,75,'2012-02-26 00:14:16'),(777,75,'2012-02-26 00:17:52'),(778,75,'2012-02-26 00:21:57'),(779,75,'2012-02-26 00:24:16'),(780,75,'2012-02-26 00:28:21'),(781,75,'2012-02-26 00:29:36'),(782,75,'2012-02-26 00:30:22'),(783,75,'2012-02-26 00:31:55'),(784,75,'2012-02-26 00:37:10'),(785,75,'2012-02-26 00:42:03'),(786,75,'2012-02-26 00:44:07'),(787,75,'2012-02-26 00:44:35'),(788,75,'2012-02-26 00:45:20'),(789,75,'2012-02-26 00:46:32'),(790,75,'2012-02-26 00:46:37'),(791,75,'2012-02-26 00:50:19'),(792,75,'2012-02-26 00:50:33'),(793,75,'2012-02-26 00:50:39'),(794,75,'2012-02-26 00:50:42'),(795,75,'2012-02-26 00:52:42'),(796,75,'2012-02-26 01:05:24'),(797,75,'2012-02-26 01:12:50'),(798,75,'2012-02-26 01:14:11'),(799,75,'2012-02-26 01:14:36'),(800,75,'2012-02-26 01:14:58'),(801,75,'2012-02-26 01:15:31'),(802,75,'2012-02-26 01:16:33'),(803,75,'2012-02-26 01:16:41'),(804,75,'2012-02-26 01:16:46'),(805,75,'2012-02-26 01:17:33'),(806,75,'2012-02-26 01:17:49'),(807,75,'2012-02-26 01:17:53'),(808,75,'2012-02-26 01:18:06'),(809,75,'2012-02-26 01:18:16'),(810,75,'2012-02-26 01:18:33'),(811,75,'2012-02-26 01:18:36'),(812,75,'2012-02-26 01:18:43'),(813,76,'2012-02-26 08:48:15'),(814,76,'2012-02-26 08:48:25'),(815,76,'2012-02-26 08:48:36'),(816,76,'2012-02-26 08:48:43'),(817,76,'2012-02-26 08:49:28'),(818,76,'2012-02-26 08:49:33'),(819,76,'2012-02-26 09:05:13'),(820,76,'2012-02-26 09:07:46'),(821,76,'2012-02-26 09:11:02'),(822,76,'2012-02-26 09:11:42'),(823,76,'2012-02-26 09:23:48'),(824,76,'2012-02-26 09:25:49'),(825,76,'2012-02-26 09:26:00'),(826,76,'2012-02-26 09:26:53'),(827,76,'2012-02-26 09:27:44'),(828,76,'2012-02-26 09:29:02'),(829,76,'2012-02-26 09:29:16'),(830,76,'2012-02-26 09:29:36'),(831,76,'2012-02-26 09:30:48'),(832,76,'2012-02-26 09:31:25'),(833,76,'2012-02-26 09:31:34'),(834,76,'2012-02-26 09:32:06'),(835,76,'2012-02-26 09:32:49'),(836,76,'2012-02-26 09:38:27'),(837,76,'2012-02-26 09:39:39'),(838,76,'2012-02-26 09:43:21'),(839,76,'2012-02-26 09:45:08'),(840,76,'2012-02-26 09:45:56'),(841,76,'2012-02-26 09:47:03'),(842,76,'2012-02-26 09:47:46'),(843,76,'2012-02-26 09:48:02'),(844,76,'2012-02-26 09:54:46'),(845,76,'2012-02-26 09:55:05'),(846,76,'2012-02-26 10:07:41'),(847,76,'2012-02-26 10:08:30'),(848,76,'2012-02-26 10:12:25'),(849,76,'2012-02-26 10:14:35'),(850,76,'2012-02-26 10:14:45'),(851,76,'2012-02-26 10:14:51'),(852,76,'2012-02-26 10:15:31'),(853,76,'2012-02-26 10:18:24'),(854,76,'2012-02-26 10:19:38'),(855,76,'2012-02-26 10:20:02'),(856,76,'2012-02-26 10:23:22'),(857,76,'2012-02-26 10:24:27'),(858,76,'2012-02-26 10:26:04'),(859,76,'2012-02-26 10:26:34'),(860,76,'2012-02-26 10:27:22'),(861,76,'2012-02-26 10:28:05'),(862,76,'2012-02-26 10:28:57'),(863,76,'2012-02-26 10:29:04'),(864,76,'2012-02-26 10:32:57'),(865,76,'2012-02-26 10:33:03'),(866,76,'2012-02-26 10:33:44'),(867,76,'2012-02-26 10:36:42'),(868,76,'2012-02-26 10:37:17'),(869,76,'2012-02-26 10:39:12'),(870,76,'2012-02-26 10:43:18'),(871,76,'2012-02-26 10:43:50'),(872,76,'2012-02-26 10:47:26'),(873,76,'2012-02-26 10:48:08'),(874,76,'2012-02-26 10:55:49'),(875,76,'2012-02-26 10:57:32'),(876,76,'2012-02-26 11:00:48'),(877,76,'2012-02-26 11:02:55'),(878,76,'2012-02-26 11:13:29'),(879,76,'2012-02-26 11:16:31'),(880,76,'2012-02-26 11:19:43'),(881,76,'2012-02-26 11:20:05'),(882,76,'2012-02-26 11:21:36'),(883,76,'2012-02-26 11:21:43'),(884,76,'2012-02-26 11:22:03'),(885,76,'2012-02-26 11:47:07'),(886,76,'2012-02-26 11:54:22'),(887,76,'2012-02-26 12:02:33'),(888,76,'2012-02-26 12:04:43'),(889,76,'2012-02-26 12:06:31'),(890,76,'2012-02-26 12:09:12'),(891,76,'2012-02-26 12:10:35'),(892,77,'2012-02-26 12:11:52'),(893,77,'2012-02-26 12:17:13'),(894,77,'2012-02-26 12:18:11'),(895,78,'2012-02-26 18:26:56'),(896,78,'2012-02-26 18:35:15'),(897,78,'2012-02-26 18:35:22'),(898,78,'2012-02-26 18:35:37'),(899,78,'2012-02-26 18:35:44'),(900,78,'2012-02-26 18:37:46'),(901,78,'2012-02-26 18:38:16'),(902,78,'2012-02-26 18:39:44'),(903,78,'2012-02-26 19:13:05'),(904,79,'2012-02-26 19:13:17'),(905,79,'2012-02-26 19:15:41'),(906,78,'2012-02-26 19:20:41'),(907,78,'2012-02-26 19:31:38'),(908,78,'2012-02-26 19:54:18'),(909,78,'2012-02-26 19:55:44'),(910,78,'2012-02-26 19:58:42'),(911,78,'2012-02-26 19:59:17'),(912,78,'2012-02-26 20:01:00'),(913,78,'2012-02-26 20:05:47'),(914,78,'2012-02-26 20:10:09'),(915,79,'2012-02-26 20:12:53'),(916,79,'2012-02-26 20:13:54'),(917,79,'2012-02-26 20:14:12'),(918,79,'2012-02-26 20:23:30'),(919,79,'2012-02-26 20:27:13'),(920,79,'2012-02-26 20:28:19'),(921,79,'2012-02-26 20:30:35'),(922,78,'2012-02-26 20:41:31'),(923,78,'2012-02-26 20:41:46'),(924,80,'2012-02-27 05:41:36'),(925,80,'2012-02-27 05:51:17'),(926,80,'2012-02-27 05:51:24'),(927,80,'2012-02-27 05:53:24'),(928,80,'2012-02-27 05:53:30'),(929,80,'2012-02-27 05:54:17'),(930,80,'2012-02-27 05:56:39'),(931,80,'2012-02-27 05:56:40'),(932,80,'2012-02-27 06:14:11'),(933,80,'2012-02-27 06:14:12'),(934,80,'2012-02-27 06:14:15'),(935,80,'2012-02-27 06:14:15'),(936,81,'2012-02-27 07:19:56'),(937,82,'2012-02-27 07:21:04'),(938,82,'2012-02-27 07:21:06'),(939,81,'2012-02-27 07:21:13'),(940,82,'2012-02-27 07:21:27'),(941,82,'2012-02-27 07:21:29'),(942,81,'2012-02-27 07:21:31'),(943,81,'2012-02-27 07:21:32'),(944,83,'2012-02-27 08:47:41'),(945,83,'2012-02-27 08:47:43'),(946,84,'2012-02-27 09:59:58'),(947,84,'2012-02-27 10:00:00'),(948,84,'2012-02-27 10:00:59'),(949,84,'2012-02-27 10:01:00'),(950,85,'2012-02-27 10:01:58'),(951,85,'2012-02-27 10:02:29'),(952,84,'2012-02-27 10:03:04'),(953,84,'2012-02-27 10:03:05'),(954,86,'2012-02-27 10:05:48'),(955,86,'2012-02-27 10:05:50'),(956,87,'2012-02-27 10:51:25'),(957,88,'2012-02-27 10:51:37'),(958,86,'2012-02-27 11:02:54'),(959,86,'2012-02-27 11:02:55'),(960,89,'2012-02-27 11:48:25'),(961,89,'2012-02-27 11:48:26'),(962,89,'2012-02-27 11:53:21'),(963,89,'2012-02-27 11:53:23'),(964,89,'2012-02-27 11:56:04'),(965,89,'2012-02-27 11:56:06'),(966,89,'2012-02-27 11:56:22'),(967,89,'2012-02-27 11:56:23'),(968,89,'2012-02-27 11:56:50'),(969,89,'2012-02-27 11:56:51'),(970,89,'2012-02-27 11:57:58'),(971,89,'2012-02-27 11:57:58'),(972,89,'2012-02-27 11:58:05'),(973,89,'2012-02-27 11:58:18'),(974,89,'2012-02-27 11:58:35'),(975,89,'2012-02-27 11:58:35'),(976,89,'2012-02-27 11:58:36'),(977,89,'2012-02-27 11:58:38'),(978,89,'2012-02-27 11:58:45'),(979,89,'2012-02-27 11:58:48'),(980,89,'2012-02-27 11:58:50'),(981,89,'2012-02-27 11:58:50'),(982,89,'2012-02-27 11:58:51'),(983,89,'2012-02-27 11:58:59'),(984,89,'2012-02-27 11:59:04'),(985,89,'2012-02-27 11:59:11'),(986,89,'2012-02-27 11:59:12'),(987,89,'2012-02-27 11:59:16'),(988,89,'2012-02-27 11:59:32'),(989,89,'2012-02-27 11:59:36'),(990,89,'2012-02-27 11:59:49'),(991,89,'2012-02-27 11:59:50'),(992,89,'2012-02-27 11:59:52'),(993,89,'2012-02-27 11:59:53'),(994,89,'2012-02-27 12:00:09'),(995,89,'2012-02-27 12:00:29'),(996,90,'2012-02-27 12:24:45'),(997,90,'2012-02-27 12:24:46'),(998,91,'2012-02-27 12:59:57'),(999,91,'2012-02-27 13:00:03'),(1000,91,'2012-02-27 13:04:30'),(1001,92,'2012-02-27 13:04:47'),(1002,91,'2012-02-27 13:05:05'),(1003,91,'2012-02-27 13:05:23'),(1004,91,'2012-02-27 13:06:56'),(1005,93,'2012-02-27 13:07:31'),(1006,94,'2012-02-27 13:08:31'),(1007,95,'2012-02-27 13:10:31'),(1008,95,'2012-02-27 13:11:03'),(1009,95,'2012-02-27 13:11:04'),(1010,96,'2012-02-27 13:16:41'),(1011,96,'2012-02-27 13:18:05'),(1012,96,'2012-02-27 13:19:08'),(1013,97,'2012-02-27 14:01:11'),(1014,97,'2012-02-27 14:01:12'),(1015,95,'2012-02-27 14:01:37'),(1016,95,'2012-02-27 14:01:39'),(1017,97,'2012-02-27 14:16:44'),(1018,97,'2012-02-27 14:16:45'),(1019,97,'2012-02-27 14:17:42'),(1020,97,'2012-02-27 14:17:43'),(1021,97,'2012-02-27 14:18:03'),(1022,97,'2012-02-27 14:18:04'),(1023,95,'2012-02-27 14:18:46'),(1024,95,'2012-02-27 14:18:48'),(1025,95,'2012-02-27 14:20:28'),(1026,95,'2012-02-27 14:20:34'),(1027,97,'2012-02-27 14:33:15'),(1028,97,'2012-02-27 14:33:16'),(1029,97,'2012-02-27 14:33:24'),(1030,97,'2012-02-27 14:34:04'),(1031,97,'2012-02-27 14:35:17'),(1032,98,'2012-02-27 14:37:42'),(1033,97,'2012-02-27 14:51:02'),(1034,97,'2012-02-27 14:56:06'),(1035,97,'2012-02-27 14:57:14'),(1036,97,'2012-02-27 14:58:57'),(1037,97,'2012-02-27 14:58:58'),(1038,97,'2012-02-27 14:58:59'),(1039,97,'2012-02-27 14:58:59'),(1040,97,'2012-02-27 15:01:06'),(1041,97,'2012-02-27 15:01:07'),(1042,97,'2012-02-27 15:01:08'),(1043,97,'2012-02-27 15:01:09'),(1044,97,'2012-02-27 15:03:20'),(1045,97,'2012-02-27 15:03:21'),(1046,97,'2012-02-27 15:03:22'),(1047,97,'2012-02-27 15:03:22'),(1048,97,'2012-02-27 15:08:06'),(1049,97,'2012-02-27 15:08:08'),(1050,97,'2012-02-27 15:08:09'),(1051,97,'2012-02-27 15:08:10'),(1052,98,'2012-02-27 15:11:02'),(1053,98,'2012-02-27 15:11:03'),(1054,98,'2012-02-27 15:11:04'),(1055,98,'2012-02-27 15:11:04'),(1056,98,'2012-02-27 15:11:05'),(1057,98,'2012-02-27 15:11:06'),(1058,98,'2012-02-27 15:11:07'),(1059,99,'2012-02-27 15:11:38'),(1060,99,'2012-02-27 15:11:40'),(1061,99,'2012-02-27 15:11:41'),(1062,99,'2012-02-27 15:11:52'),(1063,97,'2012-02-27 15:17:14'),(1064,97,'2012-02-27 15:17:15'),(1065,97,'2012-02-27 15:17:16'),(1066,97,'2012-02-27 15:17:17'),(1067,98,'2012-02-27 15:17:26'),(1068,98,'2012-02-27 15:17:28'),(1069,98,'2012-02-27 15:17:28'),(1070,98,'2012-02-27 15:17:29'),(1071,98,'2012-02-27 15:17:29'),(1072,98,'2012-02-27 15:17:30'),(1073,98,'2012-02-27 15:17:31'),(1074,98,'2012-02-27 15:17:32'),(1075,98,'2012-02-27 15:17:32'),(1076,97,'2012-02-27 15:18:59'),(1077,97,'2012-02-27 15:19:00'),(1078,97,'2012-02-27 15:19:01'),(1079,97,'2012-02-27 15:19:03'),(1080,97,'2012-02-27 15:19:05'),(1081,97,'2012-02-27 15:19:06'),(1082,97,'2012-02-27 15:20:16'),(1083,97,'2012-02-27 15:20:18'),(1084,97,'2012-02-27 15:20:19'),(1085,97,'2012-02-27 15:20:20'),(1086,97,'2012-02-27 15:20:20'),(1087,97,'2012-02-27 15:20:21'),(1088,97,'2012-02-27 15:21:32'),(1089,97,'2012-02-27 15:22:43'),(1090,97,'2012-02-27 15:25:30'),(1091,97,'2012-02-27 15:25:31'),(1092,97,'2012-02-27 15:25:33'),(1093,97,'2012-02-27 15:25:34'),(1094,97,'2012-02-27 15:25:37'),(1095,97,'2012-02-27 15:25:38'),(1096,97,'2012-02-27 15:25:39'),(1097,97,'2012-02-27 15:25:39'),(1098,97,'2012-02-27 15:25:40'),(1099,98,'2012-02-27 15:26:16'),(1100,98,'2012-02-27 15:26:18'),(1101,98,'2012-02-27 15:26:18'),(1102,98,'2012-02-27 15:26:18'),(1103,98,'2012-02-27 15:26:19'),(1104,98,'2012-02-27 15:26:20'),(1105,98,'2012-02-27 15:26:20'),(1106,98,'2012-02-27 15:26:20'),(1107,98,'2012-02-27 15:26:21'),(1108,97,'2012-02-27 15:27:47'),(1109,97,'2012-02-27 15:27:49'),(1110,98,'2012-02-27 15:27:56'),(1111,98,'2012-02-27 15:27:57'),(1112,98,'2012-02-27 15:27:58'),(1113,97,'2012-02-27 15:29:35'),(1114,97,'2012-02-27 15:29:36'),(1115,98,'2012-02-27 15:29:38'),(1116,98,'2012-02-27 15:29:39'),(1117,98,'2012-02-27 15:29:40'),(1118,98,'2012-02-27 15:29:57'),(1119,98,'2012-02-27 15:29:58'),(1120,98,'2012-02-27 15:30:01'),(1121,97,'2012-02-27 15:30:20'),(1122,97,'2012-02-27 15:30:21'),(1123,98,'2012-02-27 15:30:30'),(1124,98,'2012-02-27 15:30:34'),(1125,98,'2012-02-27 15:30:36'),(1126,98,'2012-02-27 15:30:37'),(1127,97,'2012-02-27 15:32:52'),(1128,97,'2012-02-27 15:32:53'),(1129,98,'2012-02-27 15:38:37'),(1130,98,'2012-02-27 15:38:39'),(1131,98,'2012-02-27 15:38:41'),(1132,97,'2012-02-27 15:39:58'),(1133,97,'2012-02-27 15:39:59'),(1134,98,'2012-02-27 15:40:08'),(1135,98,'2012-02-27 15:40:09'),(1136,98,'2012-02-27 15:40:10'),(1137,97,'2012-02-27 15:40:25'),(1138,97,'2012-02-27 15:40:27'),(1139,97,'2012-02-27 15:48:05'),(1140,97,'2012-02-27 15:48:07'),(1141,99,'2012-02-27 15:48:12'),(1142,99,'2012-02-27 15:48:18'),(1143,99,'2012-02-27 15:48:19'),(1144,99,'2012-02-27 15:48:22'),(1145,100,'2012-02-27 15:48:25'),(1146,100,'2012-02-27 15:48:27'),(1147,100,'2012-02-27 15:48:28'),(1148,99,'2012-02-27 15:48:31'),(1149,99,'2012-02-27 15:48:32'),(1150,99,'2012-02-27 15:48:45'),(1151,99,'2012-02-27 15:49:00'),(1152,99,'2012-02-27 15:49:01'),(1153,97,'2012-02-27 15:49:01'),(1154,97,'2012-02-27 15:49:14'),(1155,99,'2012-02-27 15:49:20'),(1156,97,'2012-02-27 15:49:21'),(1157,99,'2012-02-27 15:49:21'),(1158,97,'2012-02-27 15:49:21'),(1159,99,'2012-02-27 15:49:30'),(1160,99,'2012-02-27 15:49:31'),(1161,97,'2012-02-27 15:49:35'),(1162,97,'2012-02-27 15:49:36'),(1163,99,'2012-02-27 15:49:41'),(1164,99,'2012-02-27 15:49:42'),(1165,97,'2012-02-27 15:49:43'),(1166,97,'2012-02-27 15:49:44'),(1167,97,'2012-02-27 15:52:52'),(1168,99,'2012-02-27 15:53:11'),(1169,99,'2012-02-27 15:53:26'),(1170,100,'2012-02-27 16:19:51'),(1171,100,'2012-02-27 16:19:53'),(1172,97,'2012-02-27 16:22:00'),(1173,97,'2012-02-27 16:22:01'),(1174,97,'2012-02-27 16:42:17'),(1175,97,'2012-02-27 16:42:19'),(1176,100,'2012-02-27 17:01:04'),(1177,100,'2012-02-27 17:01:07'),(1178,97,'2012-02-27 17:08:41'),(1179,97,'2012-02-27 17:08:43'),(1180,100,'2012-02-27 17:09:15'),(1181,100,'2012-02-27 17:09:17'),(1182,100,'2012-02-27 17:09:32'),(1183,100,'2012-02-27 17:09:33'),(1184,100,'2012-02-27 17:09:41'),(1185,100,'2012-02-27 17:10:00'),(1186,100,'2012-02-27 17:10:01'),(1187,97,'2012-02-27 17:15:49'),(1188,97,'2012-02-27 17:15:51'),(1189,97,'2012-02-27 17:16:49'),(1190,97,'2012-02-27 17:16:50'),(1191,97,'2012-02-27 17:29:09'),(1192,97,'2012-02-27 17:29:10'),(1193,101,'2012-02-27 19:51:26'),(1194,101,'2012-02-27 19:51:31'),(1195,101,'2012-02-27 19:51:32'),(1196,101,'2012-02-27 19:56:39'),(1197,101,'2012-02-27 19:56:41'),(1198,101,'2012-02-27 19:56:43'),(1199,101,'2012-02-27 20:04:52'),(1200,101,'2012-02-27 20:04:55'),(1201,101,'2012-02-27 20:05:05'),(1202,101,'2012-02-27 20:05:06'),(1203,101,'2012-02-27 20:05:07'),(1204,102,'2012-02-27 20:07:03'),(1205,102,'2012-02-27 20:07:04'),(1206,101,'2012-02-27 20:23:33'),(1207,101,'2012-02-27 20:23:35'),(1208,101,'2012-02-27 20:23:36'),(1209,103,'2012-02-27 20:23:56'),(1210,103,'2012-02-27 20:23:58'),(1211,103,'2012-02-27 20:30:20'),(1212,103,'2012-02-27 20:30:22'),(1213,103,'2012-02-27 20:32:58'),(1214,103,'2012-02-27 20:33:00'),(1215,101,'2012-02-27 20:33:20'),(1216,101,'2012-02-27 20:33:22'),(1217,101,'2012-02-27 20:33:25'),(1218,101,'2012-02-27 20:33:27'),(1219,103,'2012-02-27 20:35:03'),(1220,103,'2012-02-27 20:35:05'),(1221,103,'2012-02-27 20:35:30'),(1222,103,'2012-02-27 20:35:33'),(1223,103,'2012-02-27 20:37:08'),(1224,103,'2012-02-27 20:37:09'),(1225,102,'2012-02-27 20:37:49'),(1226,102,'2012-02-27 20:37:50'),(1227,103,'2012-02-27 20:40:02'),(1228,103,'2012-02-27 20:40:04'),(1229,101,'2012-02-27 20:41:08'),(1230,101,'2012-02-27 20:41:10'),(1231,101,'2012-02-27 20:41:11'),(1232,101,'2012-02-27 20:41:17'),(1233,101,'2012-02-27 20:41:18'),(1234,101,'2012-02-27 20:41:19'),(1235,101,'2012-02-27 20:41:57'),(1236,101,'2012-02-27 20:42:01'),(1237,101,'2012-02-27 20:42:03'),(1238,101,'2012-02-27 20:44:16'),(1239,101,'2012-02-27 20:44:18'),(1240,101,'2012-02-27 20:44:19'),(1241,103,'2012-02-27 20:44:45'),(1242,103,'2012-02-27 20:44:46'),(1243,101,'2012-02-27 20:45:15'),(1244,101,'2012-02-27 20:45:17'),(1245,101,'2012-02-27 20:45:18'),(1246,101,'2012-02-27 20:45:37'),(1247,101,'2012-02-27 20:45:39'),(1248,101,'2012-02-27 20:45:40'),(1249,101,'2012-02-27 20:48:04'),(1250,101,'2012-02-27 20:50:26'),(1251,101,'2012-02-27 20:50:28'),(1252,101,'2012-02-27 20:50:29'),(1253,101,'2012-02-27 20:51:22'),(1254,101,'2012-02-27 20:51:24'),(1255,101,'2012-02-27 20:51:25'),(1256,101,'2012-02-27 20:58:59'),(1257,101,'2012-02-27 20:59:01'),(1258,101,'2012-02-27 20:59:02'),(1259,101,'2012-02-27 20:59:28'),(1260,101,'2012-02-27 20:59:45'),(1261,101,'2012-02-27 20:59:47'),(1262,101,'2012-02-27 21:01:19'),(1263,101,'2012-02-27 21:01:20'),(1264,101,'2012-02-27 21:01:21'),(1265,101,'2012-02-27 21:02:53'),(1266,101,'2012-02-27 21:02:55'),(1267,101,'2012-02-27 21:02:56'),(1268,103,'2012-02-27 21:04:37'),(1269,103,'2012-02-27 21:04:39'),(1270,103,'2012-02-27 21:07:02'),(1271,103,'2012-02-27 21:07:03'),(1272,103,'2012-02-27 21:10:37'),(1273,103,'2012-02-27 21:10:39'),(1274,103,'2012-02-27 21:11:02'),(1275,103,'2012-02-27 21:11:04'),(1276,101,'2012-02-27 21:13:07'),(1277,101,'2012-02-27 21:13:09'),(1278,101,'2012-02-27 21:13:10'),(1279,101,'2012-02-27 21:13:38'),(1280,101,'2012-02-27 21:13:40'),(1281,101,'2012-02-27 21:13:42'),(1282,103,'2012-02-27 21:14:35'),(1283,103,'2012-02-27 21:14:37'),(1284,101,'2012-02-27 21:16:06'),(1285,101,'2012-02-27 21:16:08'),(1286,101,'2012-02-27 21:16:09'),(1287,101,'2012-02-27 21:16:44'),(1288,101,'2012-02-27 21:16:46'),(1289,101,'2012-02-27 21:16:48'),(1290,103,'2012-02-27 21:17:01'),(1291,103,'2012-02-27 21:17:04'),(1292,101,'2012-02-27 21:17:15'),(1293,101,'2012-02-27 21:17:16'),(1294,101,'2012-02-27 21:17:18'),(1295,103,'2012-02-27 21:17:28'),(1296,103,'2012-02-27 21:17:30'),(1297,103,'2012-02-27 21:17:57'),(1298,103,'2012-02-27 21:17:58'),(1299,101,'2012-02-27 21:18:12'),(1300,101,'2012-02-27 21:18:14'),(1301,101,'2012-02-27 21:18:15'),(1302,101,'2012-02-27 21:18:23'),(1303,101,'2012-02-27 21:18:25'),(1304,101,'2012-02-27 21:18:26'),(1305,103,'2012-02-27 21:18:28'),(1306,103,'2012-02-27 21:18:30'),(1307,103,'2012-02-27 21:18:41'),(1308,103,'2012-02-27 21:18:43'),(1309,101,'2012-02-27 21:19:01'),(1310,101,'2012-02-27 21:19:03'),(1311,101,'2012-02-27 21:19:04'),(1312,101,'2012-02-27 21:21:15'),(1313,101,'2012-02-27 21:21:18'),(1314,101,'2012-02-27 21:21:19'),(1315,103,'2012-02-27 21:23:46'),(1316,103,'2012-02-27 21:23:52'),(1317,103,'2012-02-27 21:23:54'),(1318,103,'2012-02-27 22:20:39'),(1319,103,'2012-02-27 22:20:40'),(1320,104,'2012-02-27 22:24:49'),(1321,104,'2012-02-27 22:24:50'),(1322,104,'2012-02-27 22:25:33'),(1323,104,'2012-02-27 22:25:34'),(1324,104,'2012-02-27 22:26:22'),(1325,104,'2012-02-27 22:34:26'),(1326,104,'2012-02-27 22:34:27'),(1327,104,'2012-02-27 22:35:19'),(1328,104,'2012-02-27 22:35:22'),(1329,104,'2012-02-27 22:35:23'),(1330,104,'2012-02-27 22:39:58'),(1331,104,'2012-02-27 22:40:00'),(1332,104,'2012-02-27 22:40:44'),(1333,104,'2012-02-27 22:40:45'),(1334,104,'2012-02-27 22:41:01'),(1335,104,'2012-02-27 22:41:02'),(1336,104,'2012-02-27 22:43:03'),(1337,104,'2012-02-27 22:43:04'),(1338,104,'2012-02-27 22:43:35'),(1339,104,'2012-02-27 22:43:37'),(1340,104,'2012-02-27 22:43:39'),(1341,104,'2012-02-27 22:43:43'),(1342,104,'2012-02-27 22:43:54'),(1343,104,'2012-02-27 22:44:00'),(1344,104,'2012-02-27 22:44:16'),(1345,104,'2012-02-27 22:44:26'),(1346,104,'2012-02-27 22:44:28'),(1347,104,'2012-02-27 22:44:33'),(1348,104,'2012-02-27 22:44:35'),(1349,104,'2012-02-27 22:44:39'),(1350,104,'2012-02-27 22:44:40'),(1351,104,'2012-02-27 22:44:50'),(1352,104,'2012-02-27 22:44:52'),(1353,104,'2012-02-27 22:44:58'),(1354,104,'2012-02-27 22:45:09'),(1355,104,'2012-02-27 22:45:18'),(1356,104,'2012-02-27 22:45:19'),(1357,104,'2012-02-27 22:45:43'),(1358,104,'2012-02-27 22:45:48'),(1359,104,'2012-02-27 22:46:12'),(1360,105,'2012-02-28 07:15:11'),(1361,105,'2012-02-28 07:38:20'),(1362,106,'2012-02-28 08:11:23'),(1363,106,'2012-02-28 08:11:26'),(1364,106,'2012-02-28 08:11:28'),(1365,107,'2012-02-28 08:48:38'),(1366,107,'2012-02-28 08:48:41'),(1367,107,'2012-02-28 08:49:09'),(1368,107,'2012-02-28 08:49:12'),(1369,107,'2012-02-28 08:50:24'),(1370,107,'2012-02-28 08:50:27'),(1371,108,'2012-02-28 08:52:50'),(1372,108,'2012-02-28 08:52:53'),(1373,108,'2012-02-28 08:52:55'),(1374,108,'2012-02-28 08:52:58'),(1375,108,'2012-02-28 08:53:00'),(1376,108,'2012-02-28 08:53:01'),(1377,107,'2012-02-28 08:56:58'),(1378,107,'2012-02-28 08:57:10'),(1379,107,'2012-02-28 08:57:44'),(1380,107,'2012-02-28 08:58:21'),(1381,106,'2012-02-28 08:59:14'),(1382,106,'2012-02-28 08:59:20'),(1383,106,'2012-02-28 08:59:29'),(1384,107,'2012-02-28 09:00:44'),(1385,107,'2012-02-28 09:06:29'),(1386,107,'2012-02-28 09:09:02'),(1387,107,'2012-02-28 09:09:05'),(1388,107,'2012-02-28 09:13:37'),(1389,107,'2012-02-28 09:13:45'),(1390,107,'2012-02-28 09:16:46'),(1391,107,'2012-02-28 09:16:50'),(1392,106,'2012-02-28 09:20:50'),(1393,106,'2012-02-28 09:20:54'),(1394,106,'2012-02-28 09:20:57'),(1395,106,'2012-02-28 09:21:08'),(1396,106,'2012-02-28 09:21:13'),(1397,106,'2012-02-28 09:21:17'),(1398,107,'2012-02-28 09:23:15'),(1399,106,'2012-02-28 09:23:24'),(1400,107,'2012-02-28 09:23:28'),(1401,107,'2012-02-28 09:25:02'),(1402,107,'2012-02-28 09:25:07'),(1403,107,'2012-02-28 09:25:31'),(1404,107,'2012-02-28 09:25:42'),(1405,106,'2012-02-28 09:26:09'),(1406,106,'2012-02-28 09:26:13'),(1407,107,'2012-02-28 09:28:06'),(1408,107,'2012-02-28 09:28:22'),(1409,107,'2012-02-28 09:28:26'),(1410,107,'2012-02-28 09:28:35'),(1411,106,'2012-02-28 09:29:17'),(1412,106,'2012-02-28 09:29:47'),(1413,108,'2012-02-28 09:30:38'),(1414,108,'2012-02-28 09:30:53'),(1415,108,'2012-02-28 09:31:39'),(1416,108,'2012-02-28 09:31:49'),(1417,108,'2012-02-28 09:32:40'),(1418,107,'2012-02-28 09:32:42'),(1419,108,'2012-02-28 09:33:41'),(1420,107,'2012-02-28 09:33:42'),(1421,108,'2012-02-28 09:34:56'),(1422,108,'2012-02-28 09:35:18'),(1423,108,'2012-02-28 09:35:41'),(1424,108,'2012-02-28 09:35:47'),(1425,108,'2012-02-28 09:41:09'),(1426,108,'2012-02-28 09:41:11'),(1427,107,'2012-02-28 09:42:11'),(1428,107,'2012-02-28 09:42:15'),(1429,107,'2012-02-28 09:44:21'),(1430,107,'2012-02-28 09:44:24'),(1431,107,'2012-02-28 09:45:04'),(1432,107,'2012-02-28 09:45:07'),(1433,107,'2012-02-28 09:45:26'),(1434,107,'2012-02-28 09:45:29'),(1435,107,'2012-02-28 09:48:53'),(1436,107,'2012-02-28 09:48:56'),(1437,106,'2012-02-28 09:57:57'),(1438,106,'2012-02-28 09:58:00'),(1439,106,'2012-02-28 09:58:03'),(1440,106,'2012-02-28 09:58:06'),(1441,106,'2012-02-28 10:01:20'),(1442,106,'2012-02-28 10:01:23'),(1443,106,'2012-02-28 10:01:24'),(1444,106,'2012-02-28 10:01:26'),(1445,106,'2012-02-28 10:01:34'),(1446,106,'2012-02-28 10:01:35'),(1447,106,'2012-02-28 10:01:38'),(1448,106,'2012-02-28 10:01:42'),(1449,106,'2012-02-28 10:01:45'),(1450,106,'2012-02-28 10:02:33'),(1451,106,'2012-02-28 10:02:35'),(1452,106,'2012-02-28 10:02:38'),(1453,106,'2012-02-28 10:02:41'),(1454,106,'2012-02-28 10:07:55'),(1455,106,'2012-02-28 10:07:59'),(1456,106,'2012-02-28 10:08:00'),(1457,107,'2012-02-28 10:11:37'),(1458,107,'2012-02-28 10:11:40'),(1459,107,'2012-02-28 10:11:41'),(1460,106,'2012-02-28 10:12:39'),(1461,107,'2012-02-28 10:12:51'),(1462,107,'2012-02-28 10:13:20'),(1463,107,'2012-02-28 10:13:44'),(1464,107,'2012-02-28 10:15:13'),(1465,107,'2012-02-28 10:15:26'),(1466,106,'2012-02-28 10:15:39'),(1467,106,'2012-02-28 10:16:00'),(1468,106,'2012-02-28 10:16:02'),(1469,106,'2012-02-28 10:17:57'),(1470,106,'2012-02-28 10:18:00'),(1471,106,'2012-02-28 10:19:45'),(1472,106,'2012-02-28 10:19:49'),(1473,106,'2012-02-28 10:19:51'),(1474,106,'2012-02-28 10:19:52'),(1475,106,'2012-02-28 10:19:54'),(1476,106,'2012-02-28 10:19:55'),(1477,106,'2012-02-28 10:19:58'),(1478,106,'2012-02-28 10:20:07'),(1479,106,'2012-02-28 10:20:09'),(1480,106,'2012-02-28 10:20:17'),(1481,107,'2012-02-28 10:20:35'),(1482,106,'2012-02-28 10:20:38'),(1483,107,'2012-02-28 10:20:39'),(1484,106,'2012-02-28 10:20:41'),(1485,107,'2012-02-28 10:24:37'),(1486,107,'2012-02-28 10:24:39'),(1487,107,'2012-02-28 10:24:52'),(1488,106,'2012-02-28 10:24:54'),(1489,107,'2012-02-28 10:28:08'),(1490,107,'2012-02-28 10:30:37'),(1491,107,'2012-02-28 10:30:51'),(1492,107,'2012-02-28 10:30:53'),(1493,107,'2012-02-28 10:31:27'),(1494,107,'2012-02-28 10:31:29'),(1495,107,'2012-02-28 10:31:40'),(1496,107,'2012-02-28 10:31:43'),(1497,106,'2012-02-28 10:31:48'),(1498,107,'2012-02-28 10:31:50'),(1499,106,'2012-02-28 10:31:51'),(1500,107,'2012-02-28 10:32:02'),(1501,106,'2012-02-28 10:32:12'),(1502,106,'2012-02-28 10:32:16'),(1503,107,'2012-02-28 10:32:29'),(1504,107,'2012-02-28 10:32:31'),(1505,107,'2012-02-28 10:32:33'),(1506,106,'2012-02-28 10:32:39'),(1507,106,'2012-02-28 10:32:41'),(1508,106,'2012-02-28 10:32:48'),(1509,106,'2012-02-28 10:32:51'),(1510,106,'2012-02-28 10:32:52'),(1511,107,'2012-02-28 10:36:47'),(1512,107,'2012-02-28 10:36:49'),(1513,107,'2012-02-28 10:36:50'),(1514,107,'2012-02-28 10:38:53'),(1515,107,'2012-02-28 10:39:02'),(1516,107,'2012-02-28 10:41:02'),(1517,107,'2012-02-28 10:42:54'),(1518,107,'2012-02-28 10:42:56'),(1519,107,'2012-02-28 10:42:58'),(1520,107,'2012-02-28 10:44:21'),(1521,107,'2012-02-28 10:44:24'),(1522,107,'2012-02-28 10:45:46'),(1523,107,'2012-02-28 10:45:49'),(1524,107,'2012-02-28 10:47:32'),(1525,107,'2012-02-28 10:47:33'),(1526,107,'2012-02-28 10:48:16'),(1527,107,'2012-02-28 10:48:17'),(1528,107,'2012-02-28 10:49:06'),(1529,107,'2012-02-28 10:49:53'),(1530,107,'2012-02-28 10:50:32'),(1531,107,'2012-02-28 10:50:33'),(1532,107,'2012-02-28 10:51:38'),(1533,107,'2012-02-28 10:51:40'),(1534,107,'2012-02-28 10:51:58'),(1535,107,'2012-02-28 10:51:59'),(1536,106,'2012-02-28 10:54:55'),(1537,106,'2012-02-28 10:54:56'),(1538,106,'2012-02-28 10:54:57'),(1539,106,'2012-02-28 10:55:55'),(1540,106,'2012-02-28 10:55:56'),(1541,106,'2012-02-28 10:56:16'),(1542,106,'2012-02-28 10:56:17'),(1543,106,'2012-02-28 10:56:19'),(1544,106,'2012-02-28 11:01:05'),(1545,106,'2012-02-28 11:01:06'),(1546,106,'2012-02-28 11:01:07'),(1547,106,'2012-02-28 11:01:25'),(1548,106,'2012-02-28 11:01:26'),(1549,106,'2012-02-28 11:01:28'),(1550,106,'2012-02-28 11:03:12'),(1551,106,'2012-02-28 11:03:13'),(1552,106,'2012-02-28 11:03:14'),(1553,106,'2012-02-28 11:05:02'),(1554,106,'2012-02-28 11:05:03'),(1555,106,'2012-02-28 11:05:05'),(1556,107,'2012-02-28 11:06:52'),(1557,107,'2012-02-28 11:06:53'),(1558,107,'2012-02-28 11:07:53'),(1559,107,'2012-02-28 11:07:54'),(1560,106,'2012-02-28 11:08:02'),(1561,106,'2012-02-28 11:08:03'),(1562,106,'2012-02-28 11:08:04'),(1563,106,'2012-02-28 11:09:53'),(1564,106,'2012-02-28 11:09:55'),(1565,106,'2012-02-28 11:09:56'),(1566,109,'2012-02-28 11:10:28'),(1567,109,'2012-02-28 11:10:29'),(1568,109,'2012-02-28 11:10:36'),(1569,109,'2012-02-28 11:10:37'),(1570,107,'2012-02-28 11:58:36'),(1571,107,'2012-02-28 11:58:37'),(1572,110,'2012-02-28 12:09:49'),(1573,110,'2012-02-28 12:09:50'),(1574,110,'2012-02-28 12:09:51'),(1575,110,'2012-02-28 12:11:40'),(1576,110,'2012-02-28 12:11:41'),(1577,110,'2012-02-28 12:11:42'),(1578,111,'2012-02-28 12:13:32'),(1579,111,'2012-02-28 12:13:33'),(1580,111,'2012-02-28 12:16:07'),(1581,111,'2012-02-28 12:16:07'),(1582,111,'2012-02-28 12:17:25'),(1583,110,'2012-02-28 12:18:19'),(1584,110,'2012-02-28 12:18:20'),(1585,110,'2012-02-28 12:18:21'),(1586,111,'2012-02-28 12:20:43'),(1587,111,'2012-02-28 12:20:50'),(1588,111,'2012-02-28 12:20:51'),(1589,107,'2012-02-28 12:22:44'),(1590,110,'2012-02-28 12:31:21'),(1591,110,'2012-02-28 12:31:22'),(1592,110,'2012-02-28 12:31:23'),(1593,107,'2012-02-28 12:32:07'),(1594,107,'2012-02-28 12:32:09'),(1595,107,'2012-02-28 12:32:10'),(1596,110,'2012-02-28 12:39:02'),(1597,110,'2012-02-28 12:39:05'),(1598,110,'2012-02-28 12:39:07'),(1599,110,'2012-02-28 12:42:14'),(1600,107,'2012-02-28 12:46:47'),(1601,111,'2012-02-28 12:47:28'),(1602,107,'2012-02-28 12:48:08'),(1603,107,'2012-02-28 12:48:20'),(1604,107,'2012-02-28 12:50:16'),(1605,107,'2012-02-28 12:56:19'),(1606,107,'2012-02-28 12:57:09'),(1607,107,'2012-02-28 12:57:10'),(1608,110,'2012-02-28 13:10:55'),(1609,107,'2012-02-28 13:23:46'),(1610,107,'2012-02-28 13:23:49'),(1611,107,'2012-02-28 13:23:51'),(1612,112,'2012-02-28 14:13:30'),(1613,112,'2012-02-28 14:16:19'),(1614,112,'2012-02-28 14:18:15'),(1615,113,'2012-02-28 14:36:03'),(1616,112,'2012-02-28 14:53:44'),(1617,112,'2012-02-28 14:54:33'),(1618,114,'2012-02-28 15:01:06'),(1619,113,'2012-02-28 15:01:22'),(1620,112,'2012-02-28 15:01:46'),(1621,112,'2012-02-28 15:04:08'),(1622,112,'2012-02-28 15:11:49'),(1623,112,'2012-02-28 15:11:51'),(1624,113,'2012-02-28 15:18:29'),(1625,112,'2012-02-28 15:20:54'),(1626,112,'2012-02-28 15:21:29'),(1627,113,'2012-02-28 15:23:22'),(1628,112,'2012-02-28 15:36:36'),(1629,113,'2012-02-28 15:37:46'),(1630,114,'2012-02-28 15:43:19'),(1631,112,'2012-02-28 15:49:35'),(1632,112,'2012-02-28 15:50:39'),(1633,114,'2012-02-28 15:50:51'),(1634,113,'2012-02-28 15:53:12'),(1635,112,'2012-02-28 16:08:30'),(1636,113,'2012-02-28 16:08:31'),(1637,113,'2012-02-28 16:08:45'),(1638,112,'2012-02-28 16:09:05'),(1639,113,'2012-02-28 16:09:10'),(1640,112,'2012-02-28 16:09:11'),(1641,113,'2012-02-28 16:09:12'),(1642,113,'2012-02-28 16:09:19'),(1643,113,'2012-02-28 16:09:27'),(1644,112,'2012-02-28 16:09:37'),(1645,113,'2012-02-28 16:09:38'),(1646,113,'2012-02-28 16:09:53'),(1647,114,'2012-02-28 16:10:07'),(1648,113,'2012-02-28 16:11:01'),(1649,113,'2012-02-28 16:11:12'),(1650,114,'2012-02-28 16:11:13'),(1651,114,'2012-02-28 16:11:54'),(1652,113,'2012-02-28 16:11:55'),(1653,113,'2012-02-28 16:11:59'),(1654,113,'2012-02-28 16:12:48'),(1655,113,'2012-02-28 16:12:49'),(1656,113,'2012-02-28 16:13:00'),(1657,113,'2012-02-28 16:13:03'),(1658,114,'2012-02-28 16:48:44'),(1659,114,'2012-02-28 16:49:19'),(1660,112,'2012-02-28 16:50:53'),(1661,114,'2012-02-28 16:51:23'),(1662,112,'2012-02-28 16:51:53'),(1663,114,'2012-02-28 16:53:10'),(1664,114,'2012-02-28 16:55:07'),(1665,114,'2012-02-28 16:55:39'),(1666,114,'2012-02-28 16:56:44'),(1667,114,'2012-02-28 16:57:58'),(1668,114,'2012-02-28 16:58:08'),(1669,114,'2012-02-28 16:58:49'),(1670,114,'2012-02-28 16:59:58'),(1671,114,'2012-02-28 17:01:08'),(1672,114,'2012-02-28 17:01:48'),(1673,114,'2012-02-28 17:02:16'),(1674,114,'2012-02-28 17:02:36'),(1675,115,'2012-02-28 17:23:55'),(1676,116,'2012-02-29 05:03:29'),(1677,116,'2012-02-29 05:03:41'),(1678,116,'2012-02-29 05:03:42'),(1679,116,'2012-02-29 05:03:44'),(1680,116,'2012-02-29 05:05:11'),(1681,116,'2012-02-29 05:07:28'),(1682,116,'2012-02-29 05:07:29'),(1683,116,'2012-02-29 05:09:13'),(1684,116,'2012-02-29 05:09:39'),(1685,116,'2012-02-29 05:10:20'),(1686,116,'2012-02-29 05:10:21'),(1687,116,'2012-02-29 05:11:05'),(1688,116,'2012-02-29 05:11:22'),(1689,116,'2012-02-29 05:11:36'),(1690,116,'2012-02-29 05:11:52'),(1691,116,'2012-02-29 05:14:26'),(1692,116,'2012-02-29 05:14:52'),(1693,116,'2012-02-29 05:15:22'),(1694,116,'2012-02-29 05:15:29'),(1695,116,'2012-02-29 05:15:49'),(1696,116,'2012-02-29 05:16:06'),(1697,116,'2012-02-29 05:17:04'),(1698,116,'2012-02-29 05:17:17'),(1699,116,'2012-02-29 05:17:31'),(1700,116,'2012-02-29 05:17:47'),(1701,116,'2012-02-29 05:21:58'),(1702,116,'2012-02-29 05:22:03'),(1703,116,'2012-02-29 05:22:10'),(1704,116,'2012-02-29 05:22:11'),(1705,116,'2012-02-29 05:22:14'),(1706,116,'2012-02-29 05:22:18'),(1707,116,'2012-02-29 05:22:26'),(1708,116,'2012-02-29 05:22:33'),(1709,116,'2012-02-29 05:23:48'),(1710,116,'2012-02-29 05:23:53'),(1711,116,'2012-02-29 05:23:57'),(1712,116,'2012-02-29 05:23:58'),(1713,116,'2012-02-29 05:24:13'),(1714,116,'2012-02-29 05:24:20'),(1715,116,'2012-02-29 05:24:58'),(1716,116,'2012-02-29 05:24:59'),(1717,116,'2012-02-29 05:26:47'),(1718,116,'2012-02-29 05:26:54'),(1719,116,'2012-02-29 05:26:54'),(1720,116,'2012-02-29 05:26:57'),(1721,116,'2012-02-29 05:27:02'),(1722,116,'2012-02-29 05:27:06'),(1723,116,'2012-02-29 05:27:17'),(1724,116,'2012-02-29 05:32:29'),(1725,116,'2012-02-29 05:32:32'),(1726,116,'2012-02-29 05:32:35'),(1727,116,'2012-02-29 05:38:56'),(1728,116,'2012-02-29 05:41:27'),(1729,116,'2012-02-29 05:41:32'),(1730,116,'2012-02-29 05:41:57'),(1731,116,'2012-02-29 05:43:58'),(1732,116,'2012-02-29 05:49:11'),(1733,116,'2012-02-29 05:49:23'),(1734,116,'2012-02-29 05:50:04'),(1735,116,'2012-02-29 05:50:07'),(1736,116,'2012-02-29 05:50:27'),(1737,116,'2012-02-29 05:51:12'),(1738,116,'2012-02-29 05:51:14'),(1739,116,'2012-02-29 05:51:33'),(1740,116,'2012-02-29 05:51:35'),(1741,116,'2012-02-29 05:51:53'),(1742,116,'2012-02-29 06:05:14'),(1743,116,'2012-02-29 06:05:17'),(1744,116,'2012-02-29 06:05:19'),(1745,116,'2012-02-29 06:05:23'),(1746,116,'2012-02-29 06:06:49'),(1747,116,'2012-02-29 06:11:25'),(1748,116,'2012-02-29 06:19:44'),(1749,116,'2012-02-29 06:20:47'),(1750,116,'2012-02-29 06:21:56'),(1751,116,'2012-02-29 06:21:56'),(1752,116,'2012-02-29 06:21:58'),(1753,116,'2012-02-29 06:21:59'),(1754,116,'2012-02-29 06:22:00'),(1755,116,'2012-02-29 06:22:01'),(1756,116,'2012-02-29 06:22:48'),(1757,116,'2012-02-29 07:02:52'),(1758,116,'2012-02-29 07:02:53'),(1759,116,'2012-02-29 07:02:54'),(1760,116,'2012-02-29 07:02:55'),(1761,116,'2012-02-29 07:02:56'),(1762,116,'2012-02-29 07:02:57'),(1763,116,'2012-02-29 07:05:59'),(1764,116,'2012-02-29 07:06:00'),(1765,116,'2012-02-29 07:06:01'),(1766,116,'2012-02-29 07:09:38'),(1767,116,'2012-02-29 07:09:39'),(1768,116,'2012-02-29 07:09:41'),(1769,116,'2012-02-29 07:11:58'),(1770,116,'2012-02-29 07:13:25'),(1771,117,'2012-02-29 07:45:05'),(1772,116,'2012-02-29 07:45:09'),(1773,118,'2012-02-29 07:46:09'),(1774,116,'2012-02-29 07:46:41'),(1775,117,'2012-02-29 07:46:44'),(1776,116,'2012-02-29 07:46:59'),(1777,116,'2012-02-29 07:47:04'),(1778,116,'2012-02-29 07:47:17'),(1779,116,'2012-02-29 07:47:20'),(1780,117,'2012-02-29 07:47:21'),(1781,116,'2012-02-29 07:47:22'),(1782,117,'2012-02-29 07:47:27'),(1783,116,'2012-02-29 07:47:29'),(1784,119,'2012-02-29 07:48:56'),(1785,118,'2012-02-29 07:50:20'),(1786,119,'2012-02-29 07:50:24'),(1787,118,'2012-02-29 07:50:31'),(1788,118,'2012-02-29 07:50:35'),(1789,119,'2012-02-29 07:50:37'),(1790,118,'2012-02-29 07:50:40'),(1791,118,'2012-02-29 07:50:47'),(1792,119,'2012-02-29 07:50:52'),(1793,118,'2012-02-29 07:51:45'),(1794,119,'2012-02-29 07:51:47'),(1795,117,'2012-02-29 07:54:13'),(1796,119,'2012-02-29 07:54:39'),(1797,120,'2012-02-29 07:54:46'),(1798,119,'2012-02-29 07:54:49'),(1799,116,'2012-02-29 07:54:51'),(1800,119,'2012-02-29 07:54:52'),(1801,118,'2012-02-29 07:54:53'),(1802,116,'2012-02-29 07:55:53'),(1803,120,'2012-02-29 07:56:19'),(1804,120,'2012-02-29 07:56:31'),(1805,120,'2012-02-29 07:57:35'),(1806,120,'2012-02-29 08:00:09'),(1807,120,'2012-02-29 08:01:54'),(1808,116,'2012-02-29 08:02:04'),(1809,116,'2012-02-29 08:02:32'),(1810,120,'2012-02-29 08:02:40'),(1811,119,'2012-02-29 08:02:54'),(1812,119,'2012-02-29 08:02:58'),(1813,120,'2012-02-29 08:03:24'),(1814,119,'2012-02-29 08:03:32'),(1815,120,'2012-02-29 08:04:20'),(1816,118,'2012-02-29 08:05:07'),(1817,118,'2012-02-29 08:05:11'),(1818,118,'2012-02-29 08:05:37'),(1819,118,'2012-02-29 08:05:46'),(1820,118,'2012-02-29 08:05:51'),(1821,118,'2012-02-29 08:06:10'),(1822,118,'2012-02-29 08:06:11'),(1823,118,'2012-02-29 08:06:17'),(1824,118,'2012-02-29 08:06:33'),(1825,120,'2012-02-29 08:06:48'),(1826,118,'2012-02-29 08:06:50'),(1827,118,'2012-02-29 08:06:52'),(1828,118,'2012-02-29 08:06:55'),(1829,118,'2012-02-29 08:07:03'),(1830,116,'2012-02-29 08:09:40'),(1831,117,'2012-02-29 08:13:07'),(1832,116,'2012-02-29 08:24:09'),(1833,116,'2012-02-29 08:25:22'),(1834,118,'2012-02-29 08:29:28'),(1835,118,'2012-02-29 08:29:29'),(1836,118,'2012-02-29 08:29:30'),(1837,118,'2012-02-29 08:29:33'),(1838,116,'2012-02-29 08:29:39'),(1839,116,'2012-02-29 08:30:20'),(1840,118,'2012-02-29 08:30:23'),(1841,118,'2012-02-29 08:30:28'),(1842,118,'2012-02-29 08:30:39'),(1843,118,'2012-02-29 08:30:43'),(1844,118,'2012-02-29 08:30:45'),(1845,116,'2012-02-29 08:31:06'),(1846,118,'2012-02-29 08:31:12'),(1847,116,'2012-02-29 08:31:51'),(1848,116,'2012-02-29 08:32:20'),(1849,121,'2012-02-29 08:32:31'),(1850,121,'2012-02-29 08:32:33'),(1851,121,'2012-02-29 08:32:38'),(1852,118,'2012-02-29 08:32:50'),(1853,116,'2012-02-29 08:34:56'),(1854,116,'2012-02-29 08:36:50'),(1855,118,'2012-02-29 08:47:32'),(1856,118,'2012-02-29 08:49:03'),(1857,116,'2012-02-29 08:49:33'),(1858,116,'2012-02-29 08:52:43'),(1859,116,'2012-02-29 08:53:22'),(1860,121,'2012-02-29 08:53:29'),(1861,121,'2012-02-29 08:53:42'),(1862,116,'2012-02-29 08:54:12'),(1863,116,'2012-02-29 08:54:43'),(1864,116,'2012-02-29 08:56:35'),(1865,116,'2012-02-29 08:59:04'),(1866,116,'2012-02-29 08:59:09'),(1867,121,'2012-02-29 09:00:02'),(1868,121,'2012-02-29 09:00:26'),(1869,121,'2012-02-29 09:00:35'),(1870,121,'2012-02-29 09:00:38'),(1871,121,'2012-02-29 09:00:40'),(1872,121,'2012-02-29 09:00:44'),(1873,121,'2012-02-29 09:00:47'),(1874,121,'2012-02-29 09:01:06'),(1875,121,'2012-02-29 09:01:09'),(1876,121,'2012-02-29 09:01:14'),(1877,116,'2012-02-29 09:01:18'),(1878,116,'2012-02-29 09:01:19'),(1879,116,'2012-02-29 09:01:27'),(1880,121,'2012-02-29 09:01:40'),(1881,116,'2012-02-29 09:01:42'),(1882,121,'2012-02-29 09:01:44'),(1883,116,'2012-02-29 09:01:48'),(1884,121,'2012-02-29 09:06:05'),(1885,121,'2012-02-29 09:11:25'),(1886,121,'2012-02-29 09:12:02'),(1887,116,'2012-02-29 09:12:23'),(1888,121,'2012-02-29 09:13:17'),(1889,121,'2012-02-29 09:13:40'),(1890,116,'2012-02-29 09:14:08'),(1891,121,'2012-02-29 09:14:12'),(1892,116,'2012-02-29 09:15:15'),(1893,121,'2012-02-29 09:15:28'),(1894,121,'2012-02-29 09:15:31'),(1895,121,'2012-02-29 09:16:17'),(1896,116,'2012-02-29 09:16:19'),(1897,116,'2012-02-29 09:16:20'),(1898,116,'2012-02-29 09:16:24'),(1899,116,'2012-02-29 09:17:02'),(1900,121,'2012-02-29 09:17:10'),(1901,121,'2012-02-29 09:17:13'),(1902,121,'2012-02-29 09:17:18'),(1903,121,'2012-02-29 09:17:20'),(1904,121,'2012-02-29 09:17:24'),(1905,121,'2012-02-29 09:17:34'),(1906,121,'2012-02-29 09:17:37'),(1907,116,'2012-02-29 09:18:05'),(1908,121,'2012-02-29 09:18:06'),(1909,116,'2012-02-29 09:18:09'),(1910,116,'2012-02-29 09:18:16'),(1911,121,'2012-02-29 09:18:16'),(1912,118,'2012-02-29 09:23:46'),(1913,121,'2012-02-29 09:41:49'),(1914,121,'2012-02-29 09:42:55'),(1915,118,'2012-02-29 09:43:56'),(1916,121,'2012-02-29 09:44:26'),(1917,121,'2012-02-29 09:47:50'),(1918,121,'2012-02-29 09:50:15'),(1919,118,'2012-02-29 09:50:32'),(1920,121,'2012-02-29 09:55:25'),(1921,121,'2012-02-29 09:58:06'),(1922,121,'2012-02-29 09:58:47'),(1923,121,'2012-02-29 10:00:02'),(1924,121,'2012-02-29 10:01:03'),(1925,118,'2012-02-29 10:01:21'),(1926,121,'2012-02-29 10:03:42'),(1927,121,'2012-02-29 10:04:21'),(1928,121,'2012-02-29 10:04:31'),(1929,121,'2012-02-29 10:05:34'),(1930,118,'2012-02-29 10:06:09'),(1931,121,'2012-02-29 10:06:34'),(1932,118,'2012-02-29 10:06:48'),(1933,118,'2012-02-29 10:07:09'),(1934,121,'2012-02-29 10:07:26'),(1935,121,'2012-02-29 10:09:29'),(1936,118,'2012-02-29 10:10:43'),(1937,118,'2012-02-29 10:12:33'),(1938,121,'2012-02-29 10:13:32'),(1939,121,'2012-02-29 10:14:49'),(1940,116,'2012-02-29 10:15:11'),(1941,118,'2012-02-29 10:15:16'),(1942,116,'2012-02-29 10:18:02'),(1943,116,'2012-02-29 10:19:51'),(1944,116,'2012-02-29 10:19:52'),(1945,116,'2012-02-29 10:20:12'),(1946,116,'2012-02-29 10:20:13'),(1947,121,'2012-02-29 10:20:20'),(1948,121,'2012-02-29 10:20:26'),(1949,121,'2012-02-29 10:20:27'),(1950,121,'2012-02-29 10:20:28'),(1951,121,'2012-02-29 10:20:33'),(1952,116,'2012-02-29 10:20:34'),(1953,116,'2012-02-29 10:20:40'),(1954,116,'2012-02-29 10:20:41'),(1955,121,'2012-02-29 10:20:42'),(1956,121,'2012-02-29 10:20:43'),(1957,121,'2012-02-29 10:20:55'),(1958,121,'2012-02-29 10:20:57'),(1959,116,'2012-02-29 10:21:05'),(1960,116,'2012-02-29 10:21:07'),(1961,121,'2012-02-29 10:21:20'),(1962,121,'2012-02-29 10:21:36'),(1963,121,'2012-02-29 10:21:38'),(1964,116,'2012-02-29 10:22:25'),(1965,121,'2012-02-29 10:22:30'),(1966,116,'2012-02-29 10:22:54'),(1967,121,'2012-02-29 10:22:58'),(1968,116,'2012-02-29 10:28:09'),(1969,122,'2012-02-29 10:39:07'),(1970,118,'2012-02-29 10:39:39'),(1971,118,'2012-02-29 10:42:35'),(1972,116,'2012-02-29 10:42:37'),(1973,118,'2012-02-29 10:45:41'),(1974,116,'2012-02-29 10:45:52'),(1975,118,'2012-02-29 10:46:31'),(1976,116,'2012-02-29 10:46:58'),(1977,118,'2012-02-29 10:47:22'),(1978,118,'2012-02-29 10:47:25'),(1979,118,'2012-02-29 10:47:27'),(1980,118,'2012-02-29 10:47:29'),(1981,118,'2012-02-29 10:47:30'),(1982,118,'2012-02-29 10:50:36'),(1983,118,'2012-02-29 10:50:37'),(1984,118,'2012-02-29 10:50:43'),(1985,116,'2012-02-29 10:50:59'),(1986,118,'2012-02-29 10:54:55'),(1987,116,'2012-02-29 10:55:10'),(1988,118,'2012-02-29 11:07:14'),(1989,118,'2012-02-29 11:09:04'),(1990,118,'2012-02-29 11:09:14'),(1991,116,'2012-02-29 11:09:30'),(1992,116,'2012-02-29 11:09:35'),(1993,118,'2012-02-29 11:11:53'),(1994,118,'2012-02-29 12:02:15'),(1995,123,'2012-02-29 12:46:38'),(1996,123,'2012-02-29 12:46:46'),(1997,123,'2012-02-29 12:46:55'),(1998,123,'2012-02-29 12:47:28'),(1999,124,'2012-02-29 16:42:02'),(2000,124,'2012-02-29 16:43:05'),(2001,125,'2012-02-29 21:01:26'),(2002,125,'2012-02-29 21:01:37'),(2003,125,'2012-02-29 21:01:50'),(2004,126,'2012-03-01 06:55:39'),(2005,126,'2012-03-01 06:56:08'),(2006,126,'2012-03-01 06:56:28'),(2007,126,'2012-03-01 06:58:04'),(2008,126,'2012-03-01 06:58:06'),(2009,126,'2012-03-01 06:58:18'),(2010,126,'2012-03-01 07:35:40'),(2011,126,'2012-03-01 07:35:41'),(2012,127,'2012-03-01 15:20:57'),(2013,127,'2012-03-01 15:21:10'),(2014,127,'2012-03-01 15:21:17'),(2015,127,'2012-03-01 15:21:35'),(2016,127,'2012-03-01 15:21:41'),(2017,128,'2012-03-01 20:40:14'),(2018,129,'2012-03-02 09:12:11'),(2019,129,'2012-03-02 09:24:13'),(2020,129,'2012-03-02 09:24:23'),(2021,129,'2012-03-02 09:24:24'),(2022,129,'2012-03-02 09:24:49'),(2023,129,'2012-03-02 09:25:04'),(2024,129,'2012-03-02 09:26:31'),(2025,129,'2012-03-02 09:26:32'),(2026,129,'2012-03-02 09:26:32'),(2027,129,'2012-03-02 09:26:40'),(2028,129,'2012-03-02 09:26:41'),(2029,129,'2012-03-02 09:26:54'),(2030,129,'2012-03-02 09:26:55'),(2031,129,'2012-03-02 09:27:08'),(2032,129,'2012-03-02 09:27:09'),(2033,129,'2012-03-02 09:28:51'),(2034,129,'2012-03-02 09:28:53'),(2035,129,'2012-03-02 09:28:54'),(2036,129,'2012-03-02 09:28:55'),(2037,129,'2012-03-02 09:28:56'),(2038,129,'2012-03-02 09:28:59'),(2039,129,'2012-03-02 09:29:00'),(2040,129,'2012-03-02 09:29:08'),(2041,129,'2012-03-02 09:29:18'),(2042,129,'2012-03-02 09:30:23'),(2043,129,'2012-03-02 09:30:24'),(2044,129,'2012-03-02 09:30:24'),(2045,129,'2012-03-02 09:31:02'),(2046,129,'2012-03-02 09:31:05'),(2047,129,'2012-03-02 09:31:29'),(2048,129,'2012-03-02 09:31:30'),(2049,129,'2012-03-02 09:31:32'),(2050,129,'2012-03-02 09:31:33'),(2051,130,'2012-03-02 09:45:34'),(2052,130,'2012-03-02 10:27:09'),(2053,131,'2012-03-02 11:15:29'),(2054,131,'2012-03-02 11:36:56'),(2055,131,'2012-03-02 11:48:57'),(2056,131,'2012-03-02 11:51:56'),(2057,131,'2012-03-02 11:52:01'),(2058,131,'2012-03-02 11:52:07'),(2059,131,'2012-03-02 11:52:15'),(2060,132,'2012-03-02 12:35:53'),(2061,132,'2012-03-02 12:36:12'),(2062,132,'2012-03-02 12:36:31'),(2063,132,'2012-03-02 12:36:38'),(2064,132,'2012-03-02 12:36:43'),(2065,132,'2012-03-02 12:36:44'),(2066,132,'2012-03-02 12:36:52'),(2067,132,'2012-03-02 12:37:01'),(2068,131,'2012-03-02 12:37:11'),(2069,131,'2012-03-02 12:37:13'),(2070,131,'2012-03-02 12:37:17'),(2071,132,'2012-03-02 12:37:32'),(2072,132,'2012-03-02 12:37:34'),(2073,132,'2012-03-02 12:37:34'),(2074,132,'2012-03-02 12:37:44'),(2075,132,'2012-03-02 12:37:45'),(2076,132,'2012-03-02 12:37:51'),(2077,132,'2012-03-02 12:37:52'),(2078,132,'2012-03-02 12:37:57'),(2079,132,'2012-03-02 12:37:58'),(2080,131,'2012-03-02 12:38:47'),(2081,131,'2012-03-02 12:39:06'),(2082,131,'2012-03-02 12:39:47'),(2083,131,'2012-03-02 12:39:50'),(2084,131,'2012-03-02 12:40:57'),(2085,131,'2012-03-02 12:41:13'),(2086,131,'2012-03-02 12:41:24'),(2087,131,'2012-03-02 12:41:31'),(2088,131,'2012-03-02 12:41:32'),(2089,131,'2012-03-02 12:43:09'),(2090,131,'2012-03-02 12:43:19'),(2091,131,'2012-03-02 12:44:00'),(2092,131,'2012-03-02 12:44:30'),(2093,131,'2012-03-02 12:44:31'),(2094,131,'2012-03-02 12:45:27'),(2095,132,'2012-03-02 12:45:30'),(2096,131,'2012-03-02 12:46:25'),(2097,131,'2012-03-02 12:46:25'),(2098,131,'2012-03-02 12:46:27'),(2099,131,'2012-03-02 12:46:47'),(2100,131,'2012-03-02 12:47:04'),(2101,131,'2012-03-02 12:47:14'),(2102,131,'2012-03-02 12:47:16'),(2103,131,'2012-03-02 12:47:37'),(2104,131,'2012-03-02 12:47:38'),(2105,132,'2012-03-02 12:48:01'),(2106,132,'2012-03-02 12:48:10'),(2107,132,'2012-03-02 12:48:11'),(2108,132,'2012-03-02 12:48:20'),(2109,132,'2012-03-02 12:48:22'),(2110,132,'2012-03-02 12:48:28'),(2111,132,'2012-03-02 12:48:34'),(2112,132,'2012-03-02 12:48:53'),(2113,132,'2012-03-02 12:48:54'),(2114,132,'2012-03-02 12:48:55'),(2115,132,'2012-03-02 12:48:58'),(2116,132,'2012-03-02 12:48:59'),(2117,132,'2012-03-02 12:49:05'),(2118,132,'2012-03-02 12:49:21'),(2119,132,'2012-03-02 12:49:40'),(2120,132,'2012-03-02 12:49:41'),(2121,131,'2012-03-02 12:55:15'),(2122,131,'2012-03-02 13:13:24'),(2123,131,'2012-03-02 13:16:21'),(2124,131,'2012-03-02 13:18:33'),(2125,131,'2012-03-02 13:18:47'),(2126,131,'2012-03-02 13:19:28'),(2127,131,'2012-03-02 13:20:42'),(2128,131,'2012-03-02 13:21:50'),(2129,131,'2012-03-02 13:22:32'),(2130,131,'2012-03-02 13:22:42'),(2131,131,'2012-03-02 13:22:43'),(2132,131,'2012-03-02 13:22:45'),(2133,131,'2012-03-02 13:22:50'),(2134,131,'2012-03-02 13:23:15'),(2135,131,'2012-03-02 13:23:56'),(2136,131,'2012-03-02 13:24:05'),(2137,131,'2012-03-02 13:27:59'),(2138,131,'2012-03-02 13:29:54'),(2139,131,'2012-03-02 13:29:56'),(2140,131,'2012-03-02 13:39:23'),(2141,131,'2012-03-02 13:51:32'),(2142,131,'2012-03-02 13:51:44'),(2143,131,'2012-03-02 13:52:42'),(2144,131,'2012-03-02 13:52:46'),(2145,131,'2012-03-02 13:52:55'),(2146,131,'2012-03-02 13:53:09'),(2147,131,'2012-03-02 13:53:19'),(2148,131,'2012-03-02 13:53:45'),(2149,131,'2012-03-02 13:54:16'),(2150,131,'2012-03-02 13:58:39'),(2151,131,'2012-03-02 13:59:13'),(2152,131,'2012-03-02 13:59:32'),(2153,133,'2012-03-02 13:59:35'),(2154,133,'2012-03-02 13:59:41'),(2155,133,'2012-03-02 14:03:05'),(2156,133,'2012-03-02 14:03:08'),(2157,133,'2012-03-02 14:03:15'),(2158,133,'2012-03-02 14:03:17'),(2159,133,'2012-03-02 14:03:52'),(2160,133,'2012-03-02 14:04:07'),(2161,133,'2012-03-02 14:05:02'),(2162,133,'2012-03-02 14:05:03'),(2163,133,'2012-03-02 14:05:10'),(2164,133,'2012-03-02 14:05:13'),(2165,133,'2012-03-02 14:05:14'),(2166,133,'2012-03-02 14:05:22'),(2167,133,'2012-03-02 14:05:23'),(2168,133,'2012-03-02 14:06:11'),(2169,133,'2012-03-02 14:06:18'),(2170,133,'2012-03-02 14:07:06'),(2171,133,'2012-03-02 14:07:07'),(2172,133,'2012-03-02 14:07:08'),(2173,133,'2012-03-02 14:07:11'),(2174,133,'2012-03-02 14:07:12'),(2175,133,'2012-03-02 14:07:25'),(2176,133,'2012-03-02 14:07:26'),(2177,133,'2012-03-02 14:07:29'),(2178,133,'2012-03-02 14:07:30'),(2179,133,'2012-03-02 14:08:49'),(2180,133,'2012-03-02 14:08:51'),(2181,133,'2012-03-02 14:14:12'),(2182,133,'2012-03-02 14:22:49'),(2183,133,'2012-03-02 14:39:24'),(2184,133,'2012-03-02 14:41:07'),(2185,133,'2012-03-02 15:05:20'),(2186,133,'2012-03-02 15:05:36'),(2187,133,'2012-03-02 15:06:46'),(2188,134,'2012-03-02 15:11:07'),(2189,135,'2012-03-02 15:15:41'),(2190,135,'2012-03-02 15:15:58'),(2191,135,'2012-03-02 15:16:09'),(2192,135,'2012-03-02 15:16:18'),(2193,135,'2012-03-02 15:16:24'),(2194,135,'2012-03-02 15:16:41'),(2195,135,'2012-03-02 15:16:50'),(2196,135,'2012-03-02 15:16:59'),(2197,135,'2012-03-02 15:17:17'),(2198,135,'2012-03-02 15:17:20'),(2199,135,'2012-03-02 15:17:33'),(2200,135,'2012-03-02 15:17:43'),(2201,135,'2012-03-02 15:18:30'),(2202,135,'2012-03-02 15:18:31'),(2203,135,'2012-03-02 15:18:32'),(2204,135,'2012-03-02 15:18:40'),(2205,135,'2012-03-02 15:18:41'),(2206,135,'2012-03-02 15:18:56'),(2207,135,'2012-03-02 15:18:58'),(2208,135,'2012-03-02 15:19:16'),(2209,135,'2012-03-02 15:19:17'),(2210,135,'2012-03-02 15:20:54'),(2211,135,'2012-03-02 15:20:56'),(2212,135,'2012-03-02 15:21:15'),(2213,135,'2012-03-02 15:21:19'),(2214,135,'2012-03-02 15:21:51'),(2215,135,'2012-03-02 15:22:12'),(2216,136,'2012-03-02 20:58:27'),(2217,136,'2012-03-02 20:58:29'),(2218,136,'2012-03-02 20:59:13'),(2219,136,'2012-03-02 20:59:16'),(2220,136,'2012-03-02 20:59:18'),(2221,136,'2012-03-02 21:03:46'),(2222,136,'2012-03-02 21:04:54'),(2223,136,'2012-03-02 21:05:03'),(2224,136,'2012-03-02 21:05:06'),(2225,136,'2012-03-02 21:07:56'),(2226,136,'2012-03-02 21:09:24'),(2227,136,'2012-03-02 21:10:12'),(2228,136,'2012-03-02 21:10:25'),(2229,136,'2012-03-02 21:10:28'),(2230,136,'2012-03-02 21:10:36'),(2231,136,'2012-03-02 21:11:15'),(2232,136,'2012-03-02 21:11:21'),(2233,136,'2012-03-02 21:11:27'),(2234,136,'2012-03-02 21:11:31'),(2235,136,'2012-03-02 21:11:34'),(2236,136,'2012-03-02 21:11:36'),(2237,136,'2012-03-02 21:11:51'),(2238,136,'2012-03-02 21:12:15'),(2239,136,'2012-03-02 21:13:09'),(2240,136,'2012-03-02 21:13:12'),(2241,136,'2012-03-02 21:13:14'),(2242,136,'2012-03-02 21:14:37'),(2243,136,'2012-03-02 21:14:39'),(2244,136,'2012-03-02 21:14:41'),(2245,136,'2012-03-02 21:14:49'),(2246,136,'2012-03-02 21:14:50'),(2247,136,'2012-03-02 21:14:54'),(2248,136,'2012-03-02 21:14:56'),(2249,136,'2012-03-02 21:15:57'),(2250,136,'2012-03-02 21:17:15'),(2251,136,'2012-03-02 21:17:17'),(2252,136,'2012-03-02 21:17:45'),(2253,136,'2012-03-02 21:17:46'),(2254,136,'2012-03-02 21:18:28'),(2255,136,'2012-03-02 21:18:54'),(2256,136,'2012-03-02 21:18:56'),(2257,136,'2012-03-02 21:19:33'),(2258,136,'2012-03-02 21:19:35'),(2259,136,'2012-03-02 21:19:52'),(2260,136,'2012-03-02 21:19:54'),(2261,136,'2012-03-02 21:20:23'),(2262,136,'2012-03-02 21:20:25'),(2263,136,'2012-03-02 21:21:41'),(2264,136,'2012-03-02 21:21:42'),(2265,136,'2012-03-02 21:21:49'),(2266,136,'2012-03-02 21:22:38'),(2267,136,'2012-03-02 21:23:38'),(2268,136,'2012-03-02 21:23:44'),(2269,136,'2012-03-02 21:25:07'),(2270,136,'2012-03-02 21:25:09'),(2271,136,'2012-03-02 21:26:04'),(2272,136,'2012-03-02 21:26:13'),(2273,136,'2012-03-02 21:26:18'),(2274,136,'2012-03-02 21:26:23'),(2275,136,'2012-03-02 21:26:25'),(2276,136,'2012-03-02 21:27:24'),(2277,136,'2012-03-02 21:27:35'),(2278,136,'2012-03-02 21:27:40'),(2279,136,'2012-03-02 21:27:43'),(2280,136,'2012-03-02 21:27:47'),(2281,136,'2012-03-02 21:27:56'),(2282,136,'2012-03-02 21:27:57'),(2283,136,'2012-03-02 21:29:22'),(2284,136,'2012-03-02 21:29:24'),(2285,136,'2012-03-02 21:29:55'),(2286,136,'2012-03-02 21:30:00'),(2287,136,'2012-03-02 21:30:17'),(2288,136,'2012-03-02 21:30:37'),(2289,136,'2012-03-02 21:30:41'),(2290,136,'2012-03-02 21:30:45'),(2291,136,'2012-03-02 21:30:46'),(2292,136,'2012-03-02 21:31:41'),(2293,136,'2012-03-02 21:31:42'),(2294,136,'2012-03-02 21:32:19'),(2295,136,'2012-03-02 21:32:20'),(2296,136,'2012-03-02 21:32:22'),(2297,136,'2012-03-02 21:32:27'),(2298,136,'2012-03-02 21:32:30'),(2299,136,'2012-03-02 21:32:32'),(2300,136,'2012-03-02 21:32:33'),(2301,136,'2012-03-02 21:32:48'),(2302,137,'2012-03-03 09:07:00'),(2303,137,'2012-03-03 09:07:08'),(2304,137,'2012-03-03 09:07:13'),(2305,137,'2012-03-03 09:07:15'),(2306,137,'2012-03-03 09:07:18'),(2307,137,'2012-03-03 09:08:41'),(2308,137,'2012-03-03 09:08:42'),(2309,137,'2012-03-03 09:08:48'),(2310,137,'2012-03-03 09:09:10'),(2311,137,'2012-03-03 09:10:13'); /*!40000 ALTER TABLE `log_url` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_url_info` -- DROP TABLE IF EXISTS `log_url_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' COMMENT 'URL', `referer` varchar(255) DEFAULT NULL COMMENT 'Referrer', PRIMARY KEY (`url_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2312 DEFAULT CHARSET=utf8 COMMENT='Log URL Info Table'; /*!40101 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://sgfuji.com/shop1/index.php/','http://sgfuji.com/shop1/index.php/install/wizard/end/'),(2,'http://sgfuji.com/shop1/index.php/',NULL),(3,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/index.php/'),(4,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(5,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/customer/account/login/'),(6,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/checkout/cart/'),(7,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/customer/account/login/'),(8,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/customer/account/login/'),(9,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/customer/account/login/'),(10,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(11,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/'),(12,'http://sgfuji.com/shop1/customer/account/create/','http://sgfuji.com/shop1/customer/account/login/'),(13,'http://sgfuji.com/shop1/catalog/seo_sitemap/category/','http://sgfuji.com/shop1/customer/account/create/'),(14,'http://sgfuji.com/shop1/catalog/seo_sitemap/product/','http://sgfuji.com/shop1/catalog/seo_sitemap/category/'),(15,'http://sgfuji.com/shop1/contacts/','http://sgfuji.com/shop1/catalog/seo_sitemap/product/'),(16,'http://sgfuji.com/shop1/about-magento-demo-store','http://sgfuji.com/shop1/contacts/'),(17,'http://sgfuji.com/shop1/customer-service','http://sgfuji.com/shop1/about-magento-demo-store'),(18,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer-service'),(19,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer-service'),(20,'http://sgfuji.com/shop1/',NULL),(21,'http://sgfuji.com/shop1/',NULL),(22,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/'),(23,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(24,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/customer/account/login/'),(25,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/checkout/cart/'),(26,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(27,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(28,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/customer/account/login/'),(29,'http://sgfuji.com/shop1/about-magento-demo-store','http://sgfuji.com/shop1/'),(30,'http://sgfuji.com/shop1/',NULL),(31,'http://sgfuji.com/shop1/skin/frontend/base/default/images/logo.gif','http://sgfuji.com/shop1/'),(32,'http://sgfuji.com/shop1/',NULL),(33,'http://sgfuji.com/shop1/skin/frontend/base/default/images/logo.gif','http://sgfuji.com/shop1/'),(34,'http://sgfuji.com/shop1/',NULL),(35,'http://sgfuji.com/shop1/about-magento-demo-store','http://sgfuji.com/shop1/'),(36,'http://sgfuji.com/shop1/about-magento-demo-store','http://sgfuji.com/shop1/'),(37,'http://sgfuji.com/shop1/about-magento-demo-store','http://sgfuji.com/shop1/'),(38,'http://sgfuji.com/shop1/',NULL),(39,'http://sgfuji.com/shop1/',NULL),(40,'http://sgfuji.com/shop1/',NULL),(41,'http://sgfuji.com/shop1/',NULL),(42,'http://sgfuji.com/shop1/',NULL),(43,'http://sgfuji.com/shop1/',NULL),(44,'http://sgfuji.com/shop1/',NULL),(45,'http://sgfuji.com/shop1/',NULL),(46,'http://sgfuji.com/shop1/',NULL),(47,'http://sgfuji.com/shop1/',NULL),(48,'http://sgfuji.com/shop1/',NULL),(49,'http://sgfuji.com/shop1/',NULL),(50,'http://sgfuji.com/shop1/',NULL),(51,'http://sgfuji.com/shop1/',NULL),(52,'http://sgfuji.com/shop1/',NULL),(53,'http://sgfuji.com/shop1/',NULL),(54,'http://sgfuji.com/shop1/',NULL),(55,'http://sgfuji.com/shop1/',NULL),(56,'http://sgfuji.com/shop1/',NULL),(57,'http://sgfuji.com/shop1/',NULL),(58,'http://sgfuji.com/shop1/',NULL),(59,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=as','http://sgfuji.com/shop1/'),(60,'http://sgfuji.com/shop1/catalogsearch/result/?q=as','http://sgfuji.com/shop1/'),(61,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/catalogsearch/result/?q=as'),(62,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/'),(63,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/checkout/cart/'),(64,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(65,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(66,'http://sgfuji.com/shop1/',NULL),(67,'http://sgfuji.com/shop1/',NULL),(68,'http://sgfuji.com/shop1/poll/vote/add/poll_id/1/','http://sgfuji.com/shop1/'),(69,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(70,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/customer/account/login/'),(71,'http://sgfuji.com/shop1/poll/vote/add/poll_id/1/','http://sgfuji.com/shop1/'),(72,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(73,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(74,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/'),(75,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(76,'http://sgfuji.com/shop1/customer/account/create/','http://sgfuji.com/shop1/customer/account/login/'),(77,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/'),(78,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/customer/account/login/'),(79,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/create/'),(80,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/customer/account/login/'),(81,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/checkout/cart/'),(82,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(83,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/checkout/cart/'),(84,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/checkout/cart/'),(85,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(86,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(87,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/'),(88,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(89,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/customer/account/login/'),(90,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/checkout/cart/'),(91,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/checkout/cart/'),(92,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/checkout/cart/'),(93,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(94,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/checkout/cart/'),(95,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/checkout/cart/'),(96,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/checkout/cart/'),(97,'http://sgfuji.com/shop1/customer/account/login/',NULL),(98,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/checkout/cart/'),(99,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=Search%20entire%20store%20here...','http://sgfuji.com/shop1/customer/account/login/'),(100,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(101,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/customer/account/login/'),(102,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/customer/account/login/'),(103,'http://sgfuji.com/shop1/',NULL),(104,'http://sgfuji.com/shop1/',NULL),(105,'http://sgfuji.com/shop1/',NULL),(106,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(107,'http://sgfuji.com/shop1/',NULL),(108,'http://sgfuji.com/shop1/',NULL),(109,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(110,'http://sgfuji.com/shop1/',NULL),(111,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(112,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/'),(113,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(114,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(115,'http://sgfuji.com/shop1/',NULL),(116,'http://sgfuji.com/shop1/',NULL),(117,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(118,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/'),(119,'http://sgfuji.com/shop1/customer/account/create/','http://sgfuji.com/shop1/customer/account/login/'),(120,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/create/'),(121,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(122,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/customer/account/login/'),(123,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(124,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/'),(125,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(126,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(127,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/customer/account/login/'),(128,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(129,'http://sgfuji.com/shop1/catalogsearch/term/popular/','http://sgfuji.com/shop1/'),(130,'http://sgfuji.com/shop1/catalogsearch/advanced/','http://sgfuji.com/shop1/catalogsearch/term/popular/'),(131,'http://sgfuji.com/shop1/sales/guest/form/','http://sgfuji.com/shop1/catalogsearch/advanced/'),(132,'http://sgfuji.com/shop1/catalog/seo_sitemap/category/','http://sgfuji.com/shop1/sales/guest/form/'),(133,'http://sgfuji.com/shop1/customer-service','http://sgfuji.com/shop1/catalog/seo_sitemap/category/'),(134,'http://sgfuji.com/shop1/about-magento-demo-store','http://sgfuji.com/shop1/customer-service'),(135,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/about-magento-demo-store'),(136,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(137,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(138,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=jhdhhgf','http://sgfuji.com/shop1/customer/account/login/'),(139,'http://sgfuji.com/shop1/',NULL),(140,'http://sgfuji.com/shop1/',NULL),(141,'http://sgfuji.com/shop1/',NULL),(142,'http://sgfuji.com/shop1/',NULL),(143,'http://sgfuji.com/shop1/',NULL),(144,'http://sgfuji.com/shop1/bridge_Store01_Fuji.php?task=self_test',NULL),(145,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(146,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(147,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(148,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=test','http://sgfuji.com/shop1/'),(149,'http://sgfuji.com/shop1/catalogsearch/result/?q=test','http://sgfuji.com/shop1/'),(150,'http://sgfuji.com/shop1/catalogsearch/result/index/?cat=3&q=test','http://sgfuji.com/shop1/catalogsearch/result/?q=test'),(151,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/catalogsearch/result/index/?cat=3&q=test'),(152,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=tes','http://sgfuji.com/shop1/'),(153,'http://sgfuji.com/shop1/catalogsearch/result/?q=tes','http://sgfuji.com/shop1/'),(154,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/catalogsearch/result/?q=tes'),(155,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(156,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(157,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(158,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(159,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=et','http://sgfuji.com/shop1/'),(160,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=eti','http://sgfuji.com/shop1/'),(161,'http://sgfuji.com/shop1/catalogsearch/result/?q=eti','http://sgfuji.com/shop1/'),(162,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=tes','http://sgfuji.com/shop1/catalogsearch/result/?q=eti'),(163,'http://sgfuji.com/shop1/catalogsearch/result/?q=test','http://sgfuji.com/shop1/catalogsearch/result/?q=eti'),(164,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=test'),(165,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=test'),(166,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=test'),(167,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=test'),(168,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=test'),(169,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=test'),(170,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=test'),(171,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=test'),(172,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=test'),(173,'http://sgfuji.com/shop1/catalog/product_compare/add/product/1/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvcHJvZG90dG8tZGktdGVzdC5odG1s/','http://sgfuji.com/shop1/prodotto-di-test.html'),(174,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/prodotto-di-test.html'),(175,'http://sgfuji.com/shop1/catalog/product_compare/index/items/1/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvcHJvZG90dG8tZGktdGVzdC5odG1s/','http://sgfuji.com/shop1/prodotto-di-test.html'),(176,'http://sgfuji.com/shop1/catalog/product_compare/index/','http://sgfuji.com/shop1/prodotto-di-test.html'),(177,'http://sgfuji.com/shop1/checkout/cart/add/product/1/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvcHJvZG90dG8tZGktdGVzdC5odG1s/','http://sgfuji.com/shop1/catalog/product_compare/index/'),(178,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/catalog/product_compare/index/'),(179,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pr','http://sgfuji.com/shop1/checkout/cart/'),(180,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pro','http://sgfuji.com/shop1/checkout/cart/'),(181,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=tes','http://sgfuji.com/shop1/checkout/cart/'),(182,'http://sgfuji.com/shop1/catalogsearch/result/?q=tes','http://sgfuji.com/shop1/checkout/cart/'),(183,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=Pro','http://sgfuji.com/shop1/catalogsearch/result/?q=tes'),(184,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=Prod','http://sgfuji.com/shop1/catalogsearch/result/?q=tes'),(185,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=est','http://sgfuji.com/shop1/catalogsearch/result/?q=tes'),(186,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=fot','http://sgfuji.com/shop1/catalogsearch/result/?q=tes'),(187,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=foto','http://sgfuji.com/shop1/catalogsearch/result/?q=tes'),(188,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pr','http://sgfuji.com/shop1/catalogsearch/result/?q=tes'),(189,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pro','http://sgfuji.com/shop1/catalogsearch/result/?q=tes'),(190,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/catalogsearch/result/?q=tes'),(191,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pr','http://sgfuji.com/shop1/'),(192,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pro','http://sgfuji.com/shop1/'),(193,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=prod','http://sgfuji.com/shop1/'),(194,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=prodo','http://sgfuji.com/shop1/'),(195,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=prodott','http://sgfuji.com/shop1/'),(196,'http://sgfuji.com/shop1/catalogsearch/advanced/','http://sgfuji.com/shop1/'),(197,'http://sgfuji.com/shop1/catalogsearch/advanced/result/?name=prod&description=&short_description=&sku=&price%5Bfrom%5D=&price%5Bto%5D=','http://sgfuji.com/shop1/catalogsearch/advanced/'),(198,'http://sgfuji.com/shop1/catalogsearch/advanced/','http://sgfuji.com/shop1/'),(199,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/advanced/'),(200,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/prodotto-di-test.html'),(201,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/'),(202,'http://sgfuji.com/shop1/prodotto-di-test.html','http://sgfuji.com/shop1/'),(203,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/prodotto-di-test.html'),(204,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/prodotto-di-test.html'),(205,'http://sgfuji.com/shop1/catalog/product/view/id/1',NULL),(206,'http://sgfuji.com/shop1/catalog/product/view/id/1',NULL),(207,'http://sgfuji.com/shop1/catalog/product/view/id/1',NULL),(208,'http://sgfuji.com/shop1/catalog/product_compare/add/product/1/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZmluZXBpeC1hdjEwMC5odG1s/','http://sgfuji.com/shop1/finepix-av100.html'),(209,'http://sgfuji.com/shop1/enable-cookies','http://sgfuji.com/shop1/finepix-av100.html'),(210,'http://sgfuji.com/shop1/catalog/product/view/id/1',NULL),(211,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZmluZXBpeC1hdjEwMC5odG1sP19fX1NJRD1V/product/1/','http://sgfuji.com/shop1/finepix-av100.html'),(212,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-av100.html'),(213,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/checkout/cart/'),(214,'http://sgfuji.com/shop1/checkout/cart/configure/id/2/','http://sgfuji.com/shop1/finepix-av100.html'),(215,'http://sgfuji.com/shop1/checkout/cart/configure/id/2/','http://sgfuji.com/shop1/checkout/cart/configure/id/2/'),(216,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/prodotto-di-test.html'),(217,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/finepix-av100.html'),(218,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=te','http://sgfuji.com/shop1/'),(219,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=tes','http://sgfuji.com/shop1/'),(220,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=fine','http://sgfuji.com/shop1/'),(221,'http://sgfuji.com/shop1/catalogsearch/result/?q=fine','http://sgfuji.com/shop1/'),(222,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=fine'),(223,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=fine'),(224,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=fine'),(225,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=fine'),(226,'http://sgfuji.com/shop1/checkout/cart/configure/id/2/','http://sgfuji.com/shop1/checkout/cart/configure/id/2/'),(227,'http://sgfuji.com/shop1/checkout/cart/configure/id/2/','http://sgfuji.com/shop1/checkout/cart/configure/id/2/'),(228,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/finepix-av100.html'),(229,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/'),(230,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=fine','http://sgfuji.com/shop1/finepix-av100.html'),(231,'http://sgfuji.com/shop1/catalogsearch/result/?q=fine','http://sgfuji.com/shop1/finepix-av100.html'),(232,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/catalogsearch/result/?q=fine'),(233,'http://sgfuji.com/shop1/catalogsearch/result/?q=fine','http://sgfuji.com/shop1/finepix-av100.html'),(234,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/catalogsearch/result/?q=fine'),(235,'http://sgfuji.com/shop1/catalogsearch/result/?q=fine','http://sgfuji.com/shop1/finepix-av100.html'),(236,'http://sgfuji.com/shop1/',NULL),(237,'http://sgfuji.com/shop1/plugin/method/',NULL),(238,'http://sgfuji.com/shop1/',NULL),(239,'http://sgfuji.com/shop1/',NULL),(240,'http://sgfuji.com/shop1/',NULL),(241,'http://sgfuji.com/shop1/',NULL),(242,'http://sgfuji.com/shop1/',NULL),(243,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/plugin/method/'),(244,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(245,'http://sgfuji.com/shop1/',NULL),(246,'http://sgfuji.com/shop1/',NULL),(247,'http://sgfuji.com/shop1/',NULL),(248,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(249,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(250,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(251,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(252,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(253,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/'),(254,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/customer/account/login/'),(255,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(256,'http://sgfuji.com/shop1/catalogsearch/term/popular/','http://sgfuji.com/shop1/'),(257,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/catalogsearch/term/popular/'),(258,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(259,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(260,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(261,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(262,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(263,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(264,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(265,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(266,'http://sgfuji.com/shop1/catalog/category/view/id/4','http://sgfuji.com/shop1/'),(267,'http://sgfuji.com/shop1/catalog/category/view/id/4?mode=list','http://sgfuji.com/shop1/accessori.html'),(268,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/accessori.html?mode=list'),(269,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(270,'http://sgfuji.com/shop1/',NULL),(271,'http://sgfuji.com/shop1/',NULL),(272,'http://sgfuji.com/shop1/catalog/category/view/id/4','http://sgfuji.com/shop1/'),(273,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/accessori.html'),(274,'http://sgfuji.com/shop1/catalog/category/view/id/3?color=10','http://sgfuji.com/shop1/fotocamere-digitali.html'),(275,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html?color=10'),(276,'http://sgfuji.com/shop1/catalog/product/view/id/1/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(277,'http://sgfuji.com/shop1/catalog/category/view/id/3?color=10','http://sgfuji.com/shop1/fotocamere-digitali.html'),(278,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/accessori.html'),(279,'http://sgfuji.com/shop1/catalog/category/view/id/4','http://sgfuji.com/shop1/'),(280,'http://sgfuji.com/shop1/',NULL),(281,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(282,'http://sgfuji.com/shop1/',NULL),(283,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(284,'http://sgfuji.com/shop1/catalog/product_compare/add/product/2/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZmluZXBpeC1hdjEwMC0yLmh0bWw,/','http://sgfuji.com/shop1/finepix-av100-2.html'),(285,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/finepix-av100-2.html'),(286,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/finepix-av100-2.html'),(287,'http://sgfuji.com/shop1/catalog/product/view/id/1/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(288,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/finepix-av100-2.html'),(289,'http://sgfuji.com/shop1/catalog/product/view/id/1/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(290,'http://sgfuji.com/shop1/catalog/product_compare/index/items/2/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9maW5lcGl4LWF2MTAwLmh0bWw,/',NULL),(291,'http://sgfuji.com/shop1/catalog/product_compare/index/',NULL),(292,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100.html'),(293,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(294,'http://sgfuji.com/shop1/',NULL),(295,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(296,'http://sgfuji.com/shop1/',NULL),(297,'http://sgfuji.com/shop1/catalog/category/view/id/4','http://sgfuji.com/shop1/'),(298,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/accessori.html'),(299,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(300,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(301,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/'),(302,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(303,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/customer/account/login/'),(304,'http://sgfuji.com/shop1/catalog/category/view/id/3?risoluzione=17','http://sgfuji.com/shop1/fotocamere-digitali.html'),(305,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list&risoluzione=17','http://sgfuji.com/shop1/fotocamere-digitali.html?risoluzione=17'),(306,'http://sgfuji.com/shop1/catalog/category/view/id/3?dir=asc&mode=list&order=name&risoluzione=17','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list&risoluzione=17'),(307,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(308,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(309,'http://sgfuji.com/shop1/catalog/product/view/id/1','http://sgfuji.com/shop1/'),(310,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/finepix-av100.html'),(311,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(312,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(313,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(314,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(315,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(316,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(317,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(318,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(319,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(320,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(321,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/finepix-av100-2.html'),(322,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(323,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(324,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(325,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(326,'http://sgfuji.com/shop1/',NULL),(327,'http://sgfuji.com/shop1/',NULL),(328,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/'),(329,'http://sgfuji.com/shop1/catalog/product/gallery/id/4/image/4/','http://sgfuji.com/shop1/finepix-x10.html'),(330,'http://sgfuji.com/shop1/catalog/product/gallery/image/5/id/4/','http://sgfuji.com/shop1/catalog/product/gallery/id/4/image/4/'),(331,'http://sgfuji.com/shop1/catalog/product/gallery/image/6/id/4/','http://sgfuji.com/shop1/catalog/product/gallery/image/5/id/4/'),(332,'http://sgfuji.com/shop1/catalog/product/gallery/image/7/id/4/','http://sgfuji.com/shop1/catalog/product/gallery/image/6/id/4/'),(333,'http://sgfuji.com/shop1/catalog/product/gallery/image/8/id/4/','http://sgfuji.com/shop1/catalog/product/gallery/image/7/id/4/'),(334,'http://sgfuji.com/shop1/catalog/product/gallery/image/7/id/4/','http://sgfuji.com/shop1/catalog/product/gallery/image/8/id/4/'),(335,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/finepix-x10.html'),(336,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(337,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/'),(338,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/finepix-x10.html'),(339,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(340,'http://sgfuji.com/shop1/catalog/product/gallery/id/5/image/14/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(341,'http://sgfuji.com/shop1/catalog/product/gallery/image/13/id/5/','http://sgfuji.com/shop1/catalog/product/gallery/id/5/image/14/'),(342,'http://sgfuji.com/shop1/catalog/product/gallery/image/14/id/5/','http://sgfuji.com/shop1/catalog/product/gallery/image/13/id/5/'),(343,'http://sgfuji.com/shop1/catalog/product/gallery/image/13/id/5/','http://sgfuji.com/shop1/catalog/product/gallery/image/14/id/5/'),(344,'http://sgfuji.com/shop1/catalog/product/gallery/id/5/image/11/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(345,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(346,'http://sgfuji.com/shop1/catalog/product/gallery/id/5/image/11/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(347,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(348,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(349,'http://sgfuji.com/shop1/catalog/product/gallery/id/5/image/14/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(350,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(351,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(352,'http://sgfuji.com/shop1/catalog/product/gallery/id/4/image/4/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(353,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(354,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(355,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x100.html'),(356,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(357,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(358,'http://sgfuji.com/shop1/',NULL),(359,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(360,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(361,'http://sgfuji.com/shop1/inex.php/admin',NULL),(362,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(363,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(364,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(365,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(366,'http://sgfuji.com/shop1/',NULL),(367,'http://sgfuji.com/shop1/catalog/product/gallery/id/4/image/8/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(368,'http://sgfuji.com/shop1/catalog/product/gallery/id/4/image/6/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(369,'http://sgfuji.com/shop1/catalog/product/gallery/id/4/image/7/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(370,'http://sgfuji.com/shop1/catalog/product/gallery/id/4/image/3/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(371,'http://sgfuji.com/shop1/catalog/product/gallery/image/4/id/4/','http://sgfuji.com/shop1/catalog/product/gallery/id/4/image/3/'),(372,'http://sgfuji.com/shop1/catalog/category/view/id/4','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(373,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/accessori.html'),(374,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(375,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(376,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9maW5lcGl4LWF2MTAwLTIuaHRtbD9fX19TSUQ9VQ,,/product/2/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(377,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(378,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(379,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(380,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(381,'http://sgfuji.com/shop1/magento-cleanup.php',NULL),(382,'http://sgfuji.com/shop1/',NULL),(383,'http://sgfuji.com/shop1/',NULL),(384,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(385,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(386,'http://sgfuji.com/shop1/',NULL),(387,'http://sgfuji.com/shop1/',NULL),(388,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(389,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(390,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(391,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(392,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(393,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(394,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(395,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(396,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(397,'http://sgfuji.com/shop1/catalog/product/gallery/id/6/image/16/','http://sgfuji.com/shop1/fujifilm-x100.html'),(398,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x100.html'),(399,'http://sgfuji.com/shop1/sales/guest/form/','http://sgfuji.com/shop1/'),(400,'http://sgfuji.com/shop1/',NULL),(401,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(402,'http://sgfuji.com/shop1/catalog/product/gallery/id/5/image/10/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(403,'http://sgfuji.com/shop1/catalog/product/gallery/image/11/id/5/','http://sgfuji.com/shop1/catalog/product/gallery/id/5/image/10/'),(404,'http://sgfuji.com/shop1/catalog/product/gallery/image/12/id/5/','http://sgfuji.com/shop1/catalog/product/gallery/image/11/id/5/'),(405,'http://sgfuji.com/shop1/catalog/product/gallery/image/13/id/5/','http://sgfuji.com/shop1/catalog/product/gallery/image/12/id/5/'),(406,'http://sgfuji.com/shop1/catalog/product/gallery/image/14/id/5/','http://sgfuji.com/shop1/catalog/product/gallery/image/13/id/5/'),(407,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZnVqaWZpbG0teC1zMS5odG1s/product/5/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(408,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(409,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(410,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(411,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(412,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(413,'http://sgfuji.com/shop1/catalog/category/view/id/3?color=3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(414,'http://sgfuji.com/shop1/catalog/category/view/id/3?color=3&lcd=27','http://sgfuji.com/shop1/fotocamere-digitali.html?color=3'),(415,'http://sgfuji.com/shop1/catalog/category/view/id/3?color=3','http://sgfuji.com/shop1/fotocamere-digitali.html?color=3&lcd=27'),(416,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html?color=3'),(417,'http://sgfuji.com/shop1/catalog/category/view/id/3?risoluzione=49','http://sgfuji.com/shop1/fotocamere-digitali.html'),(418,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html?risoluzione=49'),(419,'http://sgfuji.com/shop1/catalog/category/view/id/3?zoom=48','http://sgfuji.com/shop1/fotocamere-digitali.html'),(420,'http://sgfuji.com/shop1/catalog/category/view/id/3?dir=asc&order=name&zoom=48','http://sgfuji.com/shop1/fotocamere-digitali.html?zoom=48'),(421,'http://sgfuji.com/shop1/catalog/category/view/id/3?dir=asc&order=name','http://sgfuji.com/shop1/fotocamere-digitali.html?dir=asc&order=name&zoom=48'),(422,'http://sgfuji.com/shop1/catalog/category/view/id/3?dir=asc&order=position','http://sgfuji.com/shop1/fotocamere-digitali.html?dir=asc&order=name'),(423,'http://sgfuji.com/shop1/catalog/category/view/id/3?dir=asc&order=price','http://sgfuji.com/shop1/fotocamere-digitali.html?dir=asc&order=position'),(424,'http://sgfuji.com/shop1/',NULL),(425,'http://sgfuji.com/shop1/',NULL),(426,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(427,'http://sgfuji.com/shop1/',NULL),(428,'http://sgfuji.com/shop1/',NULL),(429,'http://sgfuji.com/shop1/catalog/category/view/id/4','http://sgfuji.com/shop1/'),(430,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/accessori.html'),(431,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(432,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(433,'http://sgfuji.com/shop1/channel.xml',NULL),(434,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(435,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(436,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(437,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(438,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(439,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(440,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(441,'http://sgfuji.com/shop1/sales/guest/form/','http://sgfuji.com/shop1/'),(442,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/sales/guest/form/'),(443,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(444,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(445,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(446,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/'),(447,'http://sgfuji.com/shop1/',NULL),(448,'http://sgfuji.com/shop1/',NULL),(449,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(450,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/finepix-x10.html'),(451,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(452,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZnVqaWZpbG0teC1zMS5odG1s/product/5/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(453,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(454,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(455,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmlsbS14LXMxLmh0bWw,/product/5/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(456,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(457,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(458,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(459,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(460,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(461,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(462,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(463,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(464,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(465,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(466,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/onepage/'),(467,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/'),(468,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/onepage/'),(469,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/'),(470,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(471,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/finepix-x10.html'),(472,'http://sgfuji.com/shop1/catalog/category/view/id/3?limit=30','http://sgfuji.com/shop1/fotocamere-digitali.html'),(473,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html'),(474,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html'),(475,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(476,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(477,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(478,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(479,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(480,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(481,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(482,'http://sgfuji.com/shop1/catalog/product_compare/add/product/2/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1sP21vZGU9bGlzdA,,/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(483,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(484,'http://sgfuji.com/shop1/catalog/product_compare/add/product/1/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1sP21vZGU9Z3JpZA,,/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(485,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(486,'http://sgfuji.com/shop1/catalog/product_compare/add/product/6/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1sP21vZGU9Z3JpZA,,/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(487,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(488,'http://sgfuji.com/shop1/catalog/product_compare/add/product/1/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1sP21vZGU9bGlzdA,,/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(489,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(490,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(491,'http://sgfuji.com/shop1/catalog/product_compare/add/product/1/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1sP21vZGU9Z3JpZA,,/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(492,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(493,'http://sgfuji.com/shop1/catalog/product_compare/add/product/6/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1sP21vZGU9Z3JpZA,,/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(494,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(495,'http://sgfuji.com/shop1/catalog/product_compare/add/product/2/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1sP21vZGU9Z3JpZA,,/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(496,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(497,'http://sgfuji.com/shop1/catalog/product_compare/add/product/6/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1sP21vZGU9Z3JpZA,,/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(498,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(499,'http://sgfuji.com/shop1/catalog/product_compare/add/product/4/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1sP21vZGU9Z3JpZA,,/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(500,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(501,'http://sgfuji.com/shop1/catalog/product_compare/add/product/5/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1sP21vZGU9Z3JpZA,,/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(502,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(503,'http://sgfuji.com/shop1/catalog/product_compare/index/items/1,2,4,5,6/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1sP21vZGU9Z3JpZA,,/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(504,'http://sgfuji.com/shop1/catalog/product_compare/index/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(505,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(506,'http://sgfuji.com/shop1/catalog/product_compare/index/items/1,6/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9maW5lcGl4LXgxMC5odG1s/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(507,'http://sgfuji.com/shop1/catalog/product_compare/index/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(508,'http://sgfuji.com/shop1/catalog/product_compare/index/items/1,6/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9maW5lcGl4LXgxMC5odG1s/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(509,'http://sgfuji.com/shop1/catalog/product_compare/index/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(510,'http://sgfuji.com/shop1/catalog/product_compare/remove/product/2/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvY2F0YWxvZy9wcm9kdWN0X2NvbXBhcmUvaW5kZXgv/','http://sgfuji.com/shop1/catalog/product_compare/index/'),(511,'http://sgfuji.com/shop1/catalog/product_compare/index/','http://sgfuji.com/shop1/catalog/product_compare/index/'),(512,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(513,'http://sgfuji.com/shop1/catalog/product_compare/remove/product/5/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvY2F0YWxvZy9wcm9kdWN0X2NvbXBhcmUvaW5kZXgv/','http://sgfuji.com/shop1/catalog/product_compare/index/'),(514,'http://sgfuji.com/shop1/catalog/product_compare/index/','http://sgfuji.com/shop1/catalog/product_compare/index/'),(515,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(516,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(517,'http://sgfuji.com/shop1/catalog/product_compare/remove/product/6/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvY2F0YWxvZy9wcm9kdWN0X2NvbXBhcmUvaW5kZXgv/','http://sgfuji.com/shop1/catalog/product_compare/index/'),(518,'http://sgfuji.com/shop1/catalog/product_compare/index/','http://sgfuji.com/shop1/catalog/product_compare/index/'),(519,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(520,'http://sgfuji.com/shop1/catalog/product_compare/add/product/5/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(521,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(522,'http://sgfuji.com/shop1/catalog/product_compare/add/product/1/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(523,'http://sgfuji.com/shop1/catalog/product_compare/add/product/6/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(524,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(525,'http://sgfuji.com/shop1/catalog/product_compare/add/product/6/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(526,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(527,'http://sgfuji.com/shop1/catalog/product_compare/add/product/1/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(528,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(529,'http://sgfuji.com/shop1/catalog/product_compare/add/product/4/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(530,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(531,'http://sgfuji.com/shop1/catalog/product_compare/add/product/2/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(532,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(533,'http://sgfuji.com/shop1/catalog/product_compare/index/items/1,2,4,5,6/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(534,'http://sgfuji.com/shop1/catalog/product_compare/index/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(535,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html'),(536,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(537,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(538,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(539,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(540,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(541,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(542,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(543,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(544,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(545,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(546,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(547,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(548,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(549,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(550,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(551,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(552,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/customer/account/login/'),(553,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/customer/account/login/'),(554,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/customer/account/login/'),(555,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/customer/account/login/'),(556,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=fo','http://sgfuji.com/shop1/checkout/onepage/'),(557,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=fot','http://sgfuji.com/shop1/checkout/onepage/'),(558,'http://sgfuji.com/shop1/checkout/onepage/blank.gif',NULL),(559,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/checkout/onepage/'),(560,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/customer/account/login/'),(561,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(562,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(563,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/customer/account/login/'),(564,'http://sgfuji.com/shop1/catalog/category/view/id/4','http://sgfuji.com/shop1/fotocamere-digitali.html'),(565,'http://sgfuji.com/shop1/checkout/onepage/blank.gif',NULL),(566,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/accessori.html'),(567,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/accessori.html'),(568,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/onepage/'),(569,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(570,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/accessori.html'),(571,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(572,'http://sgfuji.com/shop1/',NULL),(573,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(574,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(575,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html'),(576,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(577,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/finepix-x10.html'),(578,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/product/2/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(579,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(580,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/checkout/cart/'),(581,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(582,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/checkout/cart/'),(583,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(584,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(585,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(586,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(587,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(588,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(589,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(590,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(591,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(592,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(593,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(594,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(595,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(596,'http://sgfuji.com/shop1/review/product/list/id/5/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(597,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/review/product/list/id/5/'),(598,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(599,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(600,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(601,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(602,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(603,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(604,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(605,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(606,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(607,'http://sgfuji.com/shop1/blank.gif',NULL),(608,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(609,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(610,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(611,'http://sgfuji.com/shop1/catalog/category/view/id/3?batteria=33','http://sgfuji.com/shop1/fotocamere-digitali.html'),(612,'http://sgfuji.com/shop1/catalog/category/view/id/3?batteria=33&lcd=27','http://sgfuji.com/shop1/fotocamere-digitali.html?batteria=33'),(613,'http://sgfuji.com/shop1/catalog/category/view/id/3?lcd=27','http://sgfuji.com/shop1/fotocamere-digitali.html?batteria=33&lcd=27'),(614,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html?lcd=27'),(615,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/'),(616,'http://sgfuji.com/shop1/',NULL),(617,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZmluZXBpeC14MTAuaHRtbA,,/product/4/','http://sgfuji.com/shop1/finepix-x10.html'),(618,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-x10.html'),(619,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/'),(620,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZmluZXBpeC14MTAuaHRtbA,,/product/4/','http://sgfuji.com/shop1/finepix-x10.html'),(621,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-x10.html'),(622,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-x10.html'),(623,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-x10.html'),(624,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-x10.html'),(625,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(626,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(627,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(628,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(629,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/'),(630,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-x10.html'),(631,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(632,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(633,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(634,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/'),(635,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-x10.html'),(636,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-x10.html'),(637,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-x10.html'),(638,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-x10.html'),(639,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/finepix-x10.html'),(640,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(641,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/'),(642,'http://sgfuji.com/shop1/checkout/cart/delete/id/9/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZmluZXBpeC14MTAuaHRtbA,,/','http://sgfuji.com/shop1/finepix-x10.html'),(643,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/finepix-x10.html'),(644,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/finepix-x10.html'),(645,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/finepix-x10.html'),(646,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEv/product/4/','http://sgfuji.com/shop1/'),(647,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/'),(648,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/'),(649,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/'),(650,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/'),(651,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(652,'http://sgfuji.com/shop1/checkout/cart/delete/id/10/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEv/','http://sgfuji.com/shop1/'),(653,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(654,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(655,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZnVqaWZpbG0teDEwMC5odG1s/product/6/','http://sgfuji.com/shop1/fujifilm-x100.html'),(656,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fujifilm-x100.html'),(657,'http://sgfuji.com/shop1/checkout/cart/delete/id/11/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvY2hlY2tvdXQvY2FydC8,/','http://sgfuji.com/shop1/checkout/cart/'),(658,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/checkout/cart/'),(659,'http://sgfuji.com/shop1/catalog/category/view/id/4','http://sgfuji.com/shop1/checkout/cart/'),(660,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(661,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/'),(662,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/finepix-x10.html'),(663,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/finepix-x10.html'),(664,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/checkout/onepage/'),(665,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(666,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmlsbS14LXMxLmh0bWw,/product/5/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(667,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(668,'http://sgfuji.com/shop1/checkout/cart/delete/id/12/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvY2hlY2tvdXQvY2FydC8,/','http://sgfuji.com/shop1/checkout/cart/'),(669,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/checkout/cart/'),(670,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/accessori.html'),(671,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/product/4/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(672,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(673,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/checkout/cart/'),(674,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/checkout/cart/'),(675,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(676,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(677,'http://sgfuji.com/shop1/checkout/onepage/saveMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(678,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(679,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(680,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZnVqaWZpbG0teDEwMC5odG1s/product/6/','http://sgfuji.com/shop1/fujifilm-x100.html'),(681,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fujifilm-x100.html'),(682,'http://sgfuji.com/shop1/checkout/cart/delete/id/8/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvY2hlY2tvdXQvY2FydC8,/','http://sgfuji.com/shop1/checkout/cart/'),(683,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/checkout/cart/'),(684,'http://sgfuji.com/shop1/contacts/','http://sgfuji.com/shop1/checkout/onepage/'),(685,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/contacts/'),(686,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(687,'http://sgfuji.com/shop1/checkout/cart/delete/id/13/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEv/','http://sgfuji.com/shop1/'),(688,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(689,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(690,'http://sgfuji.com/shop1/index.php/quickshop/index/view/path/fujifilm-x-s1.html','http://sgfuji.com/shop1/'),(691,'http://sgfuji.com/shop1/index.php/quickshop/index/view/path/fujifilm-x100.html','http://sgfuji.com/shop1/'),(692,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(693,'http://sgfuji.com/shop1/index.php/quickshop/index/view/path/fujifilm-x-s1.html','http://sgfuji.com/shop1/'),(694,'http://sgfuji.com/shop1/index.php/quickshop/index/view/path/finepix-x10.html','http://sgfuji.com/shop1/'),(695,'http://sgfuji.com/shop1/',NULL),(696,'http://sgfuji.com/shop1/skin/frontend/base/default/css/blank.gif','http://sgfuji.com/shop1/'),(697,'http://sgfuji.com/shop1/index.php/quickshop/index/view/path/fujifilm-x-s1.html','http://sgfuji.com/shop1/'),(698,'http://sgfuji.com/shop1/',NULL),(699,'http://sgfuji.com/shop1/index.php/quickshop/index/view/path/finepix-x10.html','http://sgfuji.com/shop1/'),(700,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(701,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fujifilm-x100.html'),(702,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(703,'http://sgfuji.com/shop1/skin/frontend/base/default/css/blank.gif','http://sgfuji.com/shop1/'),(704,'http://sgfuji.com/shop1/index.php/quickshop/index/view/path/fujifilm-x-s1.html','http://sgfuji.com/shop1/'),(705,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(706,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(707,'http://sgfuji.com/shop1/skin/frontend/base/default/css/blank.gif','http://sgfuji.com/shop1/'),(708,'http://sgfuji.com/shop1/index.php/quickshop/index/view/path/fujifilm-x-s1.html','http://sgfuji.com/shop1/'),(709,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(710,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(711,'http://sgfuji.com/shop1/',NULL),(712,'http://sgfuji.com/shop1/skin/frontend/base/default/css/blank.gif','http://sgfuji.com/shop1/'),(713,'http://sgfuji.com/shop1/index.php/quickshop/index/view/path/fujifilm-x-s1.html','http://sgfuji.com/shop1/'),(714,'http://sgfuji.com/shop1/index.php/quickshop/index/view/path/fujifilm-x-s1.html','http://sgfuji.com/shop1/'),(715,'http://sgfuji.com/shop1/index.php/quickshop/index/view/path/fujifilm-x100.html','http://sgfuji.com/shop1/'),(716,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(717,'http://sgfuji.com/shop1/',NULL),(718,'http://sgfuji.com/shop1/?mode=list','http://sgfuji.com/shop1/'),(719,'http://sgfuji.com/shop1/',NULL),(720,'http://sgfuji.com/shop1/',NULL),(721,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(722,'http://sgfuji.com/shop1/?mode=grid','http://sgfuji.com/shop1/'),(723,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/?mode=grid'),(724,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(725,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(726,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(727,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(728,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/finepix-av100-2.html'),(729,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(730,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(731,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fujifilm-x100.html'),(732,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(733,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(734,'http://sgfuji.com/shop1/',NULL),(735,'http://sgfuji.com/shop1/blank.gif',NULL),(736,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(737,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(738,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(739,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(740,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(741,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(742,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(743,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(744,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(745,'http://sgfuji.com/shop1/',NULL),(746,'http://sgfuji.com/shop1/',NULL),(747,'http://sgfuji.com/shop1/',NULL),(748,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(749,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(750,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(751,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(752,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(753,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(754,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(755,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(756,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(757,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(758,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(759,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(760,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(761,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(762,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(763,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(764,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(765,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(766,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(767,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(768,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(769,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(770,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(771,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(772,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(773,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(774,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(775,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(776,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(777,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(778,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(779,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(780,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(781,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(782,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(783,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(784,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(785,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(786,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(787,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(788,'http://sgfuji.com/shop1/catalog/category/view/id/14','http://sgfuji.com/shop1/fotocamere-digitali.html'),(789,'http://sgfuji.com/shop1/catalog/category/view/id/14','http://sgfuji.com/shop1/fotocamere-digitali.html'),(790,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(791,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(792,'http://sgfuji.com/shop1/catalog/category/view/id/4','http://sgfuji.com/shop1/'),(793,'http://sgfuji.com/shop1/catalog/category/view/id/14','http://sgfuji.com/shop1/accessori.html'),(794,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(795,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(796,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(797,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(798,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(799,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(800,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(801,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(802,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(803,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html'),(804,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(805,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(806,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(807,'http://sgfuji.com/shop1/?mode=list','http://sgfuji.com/shop1/'),(808,'http://sgfuji.com/shop1/?mode=grid','http://sgfuji.com/shop1/?mode=list'),(809,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/?mode=grid'),(810,'http://sgfuji.com/shop1/catalog/category/view/id/17','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(811,'http://sgfuji.com/shop1/catalog/category/view/id/16','http://sgfuji.com/shop1/accessori/custodie-subaquee-1.html'),(812,'http://sgfuji.com/shop1/catalog/category/view/id/4','http://sgfuji.com/shop1/accessori/custodie-macchine-digitali-2.html'),(813,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/accessori.html'),(814,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(815,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(816,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(817,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(818,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(819,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(820,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(821,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(822,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(823,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(824,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(825,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(826,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(827,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(828,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(829,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(830,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(831,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(832,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(833,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(834,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(835,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(836,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(837,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(838,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(839,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(840,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(841,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(842,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(843,'http://sgfuji.com/shop1/blank.gif',NULL),(844,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(845,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(846,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(847,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(848,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(849,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(850,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(851,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(852,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(853,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(854,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(855,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(856,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(857,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(858,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(859,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(860,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(861,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(862,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/'),(863,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/customer/account/login/'),(864,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/customer/account/login/'),(865,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/customer/account/login/'),(866,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/customer/account/login/'),(867,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(868,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(869,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(870,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(871,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(872,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(873,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(874,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(875,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(876,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(877,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(878,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(879,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(880,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(881,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(882,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(883,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(884,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(885,'http://sgfuji.com/shop1/blank.gif',NULL),(886,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(887,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(888,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(889,'http://sgfuji.com/shop1/blank.gif',NULL),(890,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(891,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(892,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(893,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(894,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(895,'http://sgfuji.com/shop1/',NULL),(896,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(897,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(898,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(899,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(900,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(901,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(902,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(903,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(904,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(905,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(906,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(907,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(908,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(909,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(910,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(911,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(912,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(913,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(914,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(915,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(916,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(917,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(918,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(919,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(920,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(921,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(922,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(923,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(924,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(925,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(926,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(927,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(928,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(929,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(930,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(931,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(932,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(933,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(934,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(935,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(936,'http://sgfuji.com/shop1/',NULL),(937,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(938,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(939,'http://sgfuji.com/shop1/',NULL),(940,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(941,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(942,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(943,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(944,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(945,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(946,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(947,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(948,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(949,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(950,'http://sgfuji.com/shop1/',NULL),(951,'http://sgfuji.com/shop1/',NULL),(952,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(953,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(954,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(955,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(956,'http://sgfuji.com/shop1/',NULL),(957,'http://sgfuji.com/shop1/',NULL),(958,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(959,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(960,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(961,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(962,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(963,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(964,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(965,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(966,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(967,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(968,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(969,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(970,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=fin','http://sgfuji.com/shop1/fotocamere-digitali.html'),(971,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=fine','http://sgfuji.com/shop1/fotocamere-digitali.html'),(972,'http://sgfuji.com/shop1/catalogsearch/result/?q=fine','http://sgfuji.com/shop1/fotocamere-digitali.html'),(973,'http://sgfuji.com/shop1/catalogsearch/result/?q=fine','http://sgfuji.com/shop1/catalogsearch/result/?q=fine'),(974,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av','http://sgfuji.com/shop1/catalogsearch/result/?q=fine'),(975,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av1','http://sgfuji.com/shop1/catalogsearch/result/?q=fine'),(976,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av100','http://sgfuji.com/shop1/catalogsearch/result/?q=fine'),(977,'http://sgfuji.com/shop1/catalogsearch/result/?q=av100','http://sgfuji.com/shop1/catalogsearch/result/?q=fine'),(978,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av100','http://sgfuji.com/shop1/catalogsearch/result/?q=av100'),(979,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av100','http://sgfuji.com/shop1/catalogsearch/result/?q=av100'),(980,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av10','http://sgfuji.com/shop1/catalogsearch/result/?q=av100'),(981,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av1','http://sgfuji.com/shop1/catalogsearch/result/?q=av100'),(982,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av','http://sgfuji.com/shop1/catalogsearch/result/?q=av100'),(983,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av','http://sgfuji.com/shop1/catalogsearch/result/?q=av100'),(984,'http://sgfuji.com/shop1/catalogsearch/result/?q=av100','http://sgfuji.com/shop1/catalogsearch/result/?q=av100'),(985,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=ner','http://sgfuji.com/shop1/catalogsearch/result/?q=av100'),(986,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=nero','http://sgfuji.com/shop1/catalogsearch/result/?q=av100'),(987,'http://sgfuji.com/shop1/catalogsearch/result/?q=nero','http://sgfuji.com/shop1/catalogsearch/result/?q=av100'),(988,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=assa','http://sgfuji.com/shop1/catalogsearch/result/?q=nero'),(989,'http://sgfuji.com/shop1/catalogsearch/result/?q=assa','http://sgfuji.com/shop1/catalogsearch/result/?q=nero'),(990,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pa','http://sgfuji.com/shop1/catalogsearch/result/?q=assa'),(991,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pap','http://sgfuji.com/shop1/catalogsearch/result/?q=assa'),(992,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=paperopoli','http://sgfuji.com/shop1/catalogsearch/result/?q=assa'),(993,'http://sgfuji.com/shop1/catalogsearch/result/?q=paperopoli','http://sgfuji.com/shop1/catalogsearch/result/?q=assa'),(994,'http://sgfuji.com/shop1/catalogsearch/result/?q=paperopoli','http://sgfuji.com/shop1/catalogsearch/result/?q=assa'),(995,'http://sgfuji.com/shop1/catalogsearch/result/?q=paperopoli','http://sgfuji.com/shop1/catalogsearch/result/?q=assa'),(996,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(997,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(998,'http://sgfuji.com/shop1/',NULL),(999,'http://sgfuji.com/shop1/',NULL),(1000,'http://sgfuji.com/shop1/',NULL),(1001,'http://sgfuji.com/shop1/',NULL),(1002,'http://sgfuji.com/shop1/',NULL),(1003,'http://sgfuji.com/shop1/',NULL),(1004,'http://sgfuji.com/shop1/',NULL),(1005,'http://sgfuji.com/shop1/',NULL),(1006,'http://sgfuji.com/shop1/',NULL),(1007,'http://sgfuji.com/shop1/catalogsearch/result/?q=paperopoli','http://sgfuji.com/shop1/catalogsearch/result/?q=assa'),(1008,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(1009,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1010,'http://sgfuji.com/shop1/',NULL),(1011,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1012,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fujifilm-x100.html'),(1013,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1014,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1015,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(1016,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1017,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1018,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1019,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1020,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1021,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1022,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1023,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(1024,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1025,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1026,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1027,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1028,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1029,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1030,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1031,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1032,'http://sgfuji.com/shop1/',NULL),(1033,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1034,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1035,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1036,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1037,'http://sgfuji.com/shop1/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1038,'http://sgfuji.com/shop1/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1039,'http://sgfuji.com/shop1/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1040,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1041,'http://sgfuji.com/shop1/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1042,'http://sgfuji.com/shop1/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1043,'http://sgfuji.com/shop1/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1044,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1045,'http://sgfuji.com/shop1/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1046,'http://sgfuji.com/shop1/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1047,'http://sgfuji.com/shop1/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1048,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1049,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1050,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1051,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1052,'http://sgfuji.com/shop1/',NULL),(1053,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1054,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1055,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1056,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1057,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1058,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1059,'http://sgfuji.com/shop1/',NULL),(1060,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1061,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1062,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1063,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1064,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1065,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1066,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1067,'http://sgfuji.com/shop1/',NULL),(1068,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1069,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1070,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1071,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1072,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1073,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1074,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1075,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1076,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1077,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1078,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1079,'http://sgfuji.com/shop1/slide1.jpg','http://sgfuji.com/shop1/'),(1080,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1081,'http://sgfuji.com/shop1/slide1.jpg','http://sgfuji.com/shop1/'),(1082,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1083,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1084,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1085,'http://sgfuji.com/shop1/slide1.jpg','http://sgfuji.com/shop1/'),(1086,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1087,'http://sgfuji.com/shop1/slide1.jpg','http://sgfuji.com/shop1/'),(1088,'http://sgfuji.com/shop1/stl/slider/',NULL),(1089,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/slider1.jpg',NULL),(1090,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/slider1.jpg',NULL),(1091,'http://sgfuji.com/shop1/stl/slider/',NULL),(1092,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1093,'http://sgfuji.com/shop1/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1094,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1095,'http://sgfuji.com/shop1/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1096,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1097,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1098,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1099,'http://sgfuji.com/shop1/',NULL),(1100,'http://sgfuji.com/shop1/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1101,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1102,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1103,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1104,'http://sgfuji.com/shop1/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1105,'http://sgfuji.com/shop1/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1106,'http://sgfuji.com/shop1/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/'),(1107,'http://sgfuji.com/shop1/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/'),(1108,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1109,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1110,'http://sgfuji.com/shop1/',NULL),(1111,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1112,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1113,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1114,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1115,'http://sgfuji.com/shop1/',NULL),(1116,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1117,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1118,'http://sgfuji.com/shop1/',NULL),(1119,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1120,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1121,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1122,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1123,'http://sgfuji.com/shop1/',NULL),(1124,'http://sgfuji.com/shop1/',NULL),(1125,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1126,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1127,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1128,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1129,'http://sgfuji.com/shop1/',NULL),(1130,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1131,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1132,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1133,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1134,'http://sgfuji.com/shop1/',NULL),(1135,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1136,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1137,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1138,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1139,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1140,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1141,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/'),(1142,'http://sgfuji.com/shop1/',NULL),(1143,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1144,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(1145,'http://sgfuji.com/shop1/',NULL),(1146,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1147,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1148,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fujifilm-x-s1.html'),(1149,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1150,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1151,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(1152,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1153,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1154,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(1155,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1156,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1157,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1158,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1159,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/product/2/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1160,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1161,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/product/4/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1162,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1163,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/checkout/cart/'),(1164,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1165,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/checkout/cart/'),(1166,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1167,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1168,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1169,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/checkout/cart/'),(1170,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(1171,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1172,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1173,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1174,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1175,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1176,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(1177,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1178,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1179,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1180,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(1181,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1182,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(1183,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1184,'http://sgfuji.com/shop1/images/bkg_input-search.gif',NULL),(1185,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(1186,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1187,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1188,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1189,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1190,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1191,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1192,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1193,'http://sgfuji.com/shop1/',NULL),(1194,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1195,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1196,'http://sgfuji.com/shop1/',NULL),(1197,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1198,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1199,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/'),(1200,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/'),(1201,'http://sgfuji.com/shop1/',NULL),(1202,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1203,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1204,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1205,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1206,'http://sgfuji.com/shop1/',NULL),(1207,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1208,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1209,'http://sgfuji.com/shop1/',NULL),(1210,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1211,'http://sgfuji.com/shop1/',NULL),(1212,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1213,'http://sgfuji.com/shop1/',NULL),(1214,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1215,'http://sgfuji.com/shop1/',NULL),(1216,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1217,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1218,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1219,'http://sgfuji.com/shop1/',NULL),(1220,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1221,'http://sgfuji.com/shop1/',NULL),(1222,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1223,'http://sgfuji.com/shop1/',NULL),(1224,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1225,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1226,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1227,'http://sgfuji.com/shop1/',NULL),(1228,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1229,'http://sgfuji.com/shop1/',NULL),(1230,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1231,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1232,'http://sgfuji.com/shop1/',NULL),(1233,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1234,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1235,'http://sgfuji.com/shop1/',NULL),(1236,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1237,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1238,'http://sgfuji.com/shop1/',NULL),(1239,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1240,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1241,'http://sgfuji.com/shop1/',NULL),(1242,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1243,'http://sgfuji.com/shop1/',NULL),(1244,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1245,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1246,'http://sgfuji.com/shop1/',NULL),(1247,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1248,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1249,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=hjbmcbnmcnbmnbcm','http://sgfuji.com/shop1/'),(1250,'http://sgfuji.com/shop1/',NULL),(1251,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1252,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1253,'http://sgfuji.com/shop1/',NULL),(1254,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1255,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1256,'http://sgfuji.com/shop1/',NULL),(1257,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1258,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1259,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1260,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fujifilm-x100.html'),(1261,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1262,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1263,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1264,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1265,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1266,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1267,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1268,'http://sgfuji.com/shop1/',NULL),(1269,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1270,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1271,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1272,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1273,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1274,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1275,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1276,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1277,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1278,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1279,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1280,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1281,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1282,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1283,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1284,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1285,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1286,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1287,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1288,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1289,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1290,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1291,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1292,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1293,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1294,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1295,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1296,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1297,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1298,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1299,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1300,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1301,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1302,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1303,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1304,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1305,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1306,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1307,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1308,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1309,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1310,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1311,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1312,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1313,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1314,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1315,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1316,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1317,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1318,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1319,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1320,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1321,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1322,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1323,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1324,'http://sgfuji.com/shop1/blank.gif',NULL),(1325,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1326,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1327,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1328,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1329,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1330,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1331,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1332,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1333,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1334,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1335,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html?___store=default'),(1336,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1337,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html?___store=default'),(1338,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av','http://sgfuji.com/shop1/fotocamere-digitali.html?___store=default'),(1339,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=avw','http://sgfuji.com/shop1/fotocamere-digitali.html?___store=default'),(1340,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av','http://sgfuji.com/shop1/fotocamere-digitali.html?___store=default'),(1341,'http://sgfuji.com/shop1/catalogsearch/result/?q=av','http://sgfuji.com/shop1/fotocamere-digitali.html?___store=default'),(1342,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=ar','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1343,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=ne','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1344,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=fu','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1345,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pi','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1346,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pix','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1347,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pi','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1348,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pix','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1349,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=Pi','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1350,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=Pix','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1351,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=fu','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1352,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=fuj','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1353,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=av','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1354,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=fin','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1355,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pi','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1356,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=pix','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1357,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=ser','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1358,'http://sgfuji.com/shop1/catalogsearch/ajax/suggest/?q=se','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1359,'http://sgfuji.com/shop1/catalogsearch/result/?q=av','http://sgfuji.com/shop1/fotocamere-digitali.html?___store=default'),(1360,'http://sgfuji.com/shop1/catalogsearch/result/blank.gif',NULL),(1361,'http://sgfuji.com/shop1/catalogsearch/result/?q=av','http://sgfuji.com/shop1/fotocamere-digitali.html?___store=default'),(1362,'http://sgfuji.com/shop1/',NULL),(1363,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1364,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1365,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/catalogsearch/result/?q=av'),(1366,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1367,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1368,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1369,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1370,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1371,'http://sgfuji.com/shop1/',NULL),(1372,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1373,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1374,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1375,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1376,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1377,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1378,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1379,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1380,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1381,'http://sgfuji.com/shop1/',NULL),(1382,'http://sgfuji.com/shop1/',NULL),(1383,'http://sgfuji.com/shop1/',NULL),(1384,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1385,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1386,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1387,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/skin/frontend/pro/default/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1388,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1389,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/skin/frontend/pro/default/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/'),(1390,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1391,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1392,'http://sgfuji.com/shop1/',NULL),(1393,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1394,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1395,'http://sgfuji.com/shop1/',NULL),(1396,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1397,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1398,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1399,'http://sgfuji.com/shop1/',NULL),(1400,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1401,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1402,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1403,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1404,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1405,'http://sgfuji.com/shop1/',NULL),(1406,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1407,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1408,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1409,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1410,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1411,'http://sgfuji.com/shop1/',NULL),(1412,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1413,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1414,'http://sgfuji.com/shop1/',NULL),(1415,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1416,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1417,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(1418,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1419,'http://sgfuji.com/shop1/catalog/category/view/id/3',NULL),(1420,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1421,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1422,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1423,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1424,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1425,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1426,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1427,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1428,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1429,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1430,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1431,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1432,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1433,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1434,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1435,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1436,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1437,'http://sgfuji.com/shop1/',NULL),(1438,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1439,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1440,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1441,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css',NULL),(1442,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css'),(1443,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/skin/frontend/pro/default/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css'),(1444,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/skin/frontend/pro/default/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css'),(1445,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/skin/frontend/pro/default/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css'),(1446,'http://sgfuji.com/shop1/',NULL),(1447,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1448,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1449,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1450,'http://sgfuji.com/shop1/',NULL),(1451,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1452,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1453,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1454,'http://sgfuji.com/shop1/',NULL),(1455,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/skin/frontend/pro/default/stl/slider/imgCSS/righty.png','http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css'),(1456,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/skin/frontend/pro/default/stl/slider/imgCSS/lefty.png','http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css'),(1457,'http://sgfuji.com/shop1/',NULL),(1458,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/skin/frontend/pro/default/stl/slider/imgCSS/lefty.png','http://sgfuji.com/shop1/'),(1459,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/skin/frontend/pro/default/stl/slider/imgCSS/righty.png','http://sgfuji.com/shop1/'),(1460,'http://sgfuji.com/shop1/',NULL),(1461,'http://sgfuji.com/shop1/',NULL),(1462,'http://sgfuji.com/shop1/',NULL),(1463,'http://sgfuji.com/shop1/',NULL),(1464,'http://sgfuji.com/shop1/',NULL),(1465,'http://sgfuji.com/shop1/',NULL),(1466,'http://sgfuji.com/shop1/',NULL),(1467,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1468,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1469,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1470,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1471,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1472,'http://sgfuji.com/shop1/fotocamere-digitali/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(1473,'http://sgfuji.com/shop1/fotocamere-digitali/skin/frontend/pro/default/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(1474,'http://sgfuji.com/shop1/fotocamere-digitali/skin/frontend/pro/default/stl/slider/js/jquery-1.6.min.js','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(1475,'http://sgfuji.com/shop1/fotocamere-digitali/skin/frontend/pro/default/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(1476,'http://sgfuji.com/shop1/fotocamere-digitali/skin/frontend/pro/default/stl/slider/js/jquery.clip-animation.min.js','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(1477,'http://sgfuji.com/shop1/fotocamere-digitali/skin/frontend/pro/default/stl/slider/js/jquery.blades-banner.min.js','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(1478,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1479,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1480,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1481,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1482,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1483,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1484,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1485,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1486,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1487,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1488,'http://sgfuji.com/shop1/',NULL),(1489,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1490,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1491,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1492,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1493,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1494,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1495,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1496,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1497,'http://sgfuji.com/shop1/',NULL),(1498,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1499,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1500,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1501,'http://sgfuji.com/shop1/',NULL),(1502,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1503,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1504,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1505,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1506,'http://sgfuji.com/shop1/',NULL),(1507,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/'),(1508,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1509,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1510,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1511,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1512,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1513,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/js/css/blades.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1514,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1515,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1516,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1517,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1518,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1519,'http://sgfuji.com/shop1/slide1.jpg','http://sgfuji.com/shop1/'),(1520,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1521,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1522,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1523,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1524,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1525,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1526,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1527,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1528,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1529,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1530,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1531,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1532,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1533,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1534,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1535,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1536,'http://sgfuji.com/shop1/',NULL),(1537,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1538,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1539,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1540,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1541,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1542,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1543,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1544,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1545,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1546,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1547,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1548,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1549,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1550,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1551,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1552,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1553,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1554,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1555,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1556,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1557,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1558,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1559,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1560,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1561,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1562,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1563,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1564,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1565,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1566,'http://sgfuji.com/shop1/',NULL),(1567,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1568,'http://sgfuji.com/shop1/',NULL),(1569,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1570,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1571,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1572,'http://sgfuji.com/shop1/',NULL),(1573,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1574,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1575,'http://sgfuji.com/shop1/',NULL),(1576,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1577,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1578,'http://sgfuji.com/shop1/',NULL),(1579,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1580,'http://sgfuji.com/shop1/',NULL),(1581,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1582,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css',NULL),(1583,'http://sgfuji.com/shop1/',NULL),(1584,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1585,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1586,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css',NULL),(1587,'http://sgfuji.com/shop1/',NULL),(1588,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1589,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css',NULL),(1590,'http://sgfuji.com/shop1/',NULL),(1591,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1592,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css','http://sgfuji.com/shop1/'),(1593,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1594,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/lefty.png','http://sgfuji.com/shop1/'),(1595,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/righty.png','http://sgfuji.com/shop1/'),(1596,'http://sgfuji.com/shop1/',NULL),(1597,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/lefty.png','http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css'),(1598,'http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/righty.png','http://sgfuji.com/shop1/skin/frontend/pro/default/stl/slider/css/blades.css'),(1599,'http://sgfuji.com/shop1/',NULL),(1600,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1601,'http://sgfuji.com/shop1/',NULL),(1602,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1603,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1604,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1605,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1606,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1607,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1608,'http://sgfuji.com/shop1/',NULL),(1609,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1610,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1611,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1612,'http://sgfuji.com/shop1/',NULL),(1613,'http://sgfuji.com/shop1/',NULL),(1614,'http://sgfuji.com/shop1/',NULL),(1615,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1616,'http://sgfuji.com/shop1/',NULL),(1617,'http://sgfuji.com/shop1/',NULL),(1618,'http://sgfuji.com/shop1/',NULL),(1619,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1620,'http://sgfuji.com/shop1/',NULL),(1621,'http://sgfuji.com/shop1/',NULL),(1622,'http://sgfuji.com/shop1/',NULL),(1623,'http://sgfuji.com/shop1/',NULL),(1624,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1625,'http://sgfuji.com/shop1/',NULL),(1626,'http://sgfuji.com/shop1/',NULL),(1627,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1628,'http://sgfuji.com/shop1/',NULL),(1629,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1630,'http://sgfuji.com/shop1/',NULL),(1631,'http://sgfuji.com/shop1/',NULL),(1632,'http://sgfuji.com/shop1/',NULL),(1633,'http://sgfuji.com/shop1/',NULL),(1634,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1635,'http://sgfuji.com/shop1/',NULL),(1636,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1637,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1638,'http://sgfuji.com/shop1/',NULL),(1639,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1640,'http://sgfuji.com/shop1/',NULL),(1641,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1642,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1643,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1644,'http://sgfuji.com/shop1/',NULL),(1645,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1646,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1647,'http://sgfuji.com/shop1/',NULL),(1648,'http://sgfuji.com/shop1/blank.gif',NULL),(1649,'http://sgfuji.com/shop1/blank.gif',NULL),(1650,'http://sgfuji.com/shop1/',NULL),(1651,'http://sgfuji.com/shop1/',NULL),(1652,'http://sgfuji.com/shop1/blank.gif',NULL),(1653,'http://sgfuji.com/shop1/blank.gif',NULL),(1654,'http://sgfuji.com/shop1/blank.gif',NULL),(1655,'http://sgfuji.com/shop1/blank.gif',NULL),(1656,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1657,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1658,'http://sgfuji.com/shop1/',NULL),(1659,'http://sgfuji.com/shop1/',NULL),(1660,'http://sgfuji.com/shop1/',NULL),(1661,'http://sgfuji.com/shop1/',NULL),(1662,'http://sgfuji.com/shop1/',NULL),(1663,'http://sgfuji.com/shop1/',NULL),(1664,'http://sgfuji.com/shop1/',NULL),(1665,'http://sgfuji.com/shop1/',NULL),(1666,'http://sgfuji.com/shop1/',NULL),(1667,'http://sgfuji.com/shop1/',NULL),(1668,'http://sgfuji.com/shop1/',NULL),(1669,'http://sgfuji.com/shop1/',NULL),(1670,'http://sgfuji.com/shop1/',NULL),(1671,'http://sgfuji.com/shop1/',NULL),(1672,'http://sgfuji.com/shop1/',NULL),(1673,'http://sgfuji.com/shop1/',NULL),(1674,'http://sgfuji.com/shop1/',NULL),(1675,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1676,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1677,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1678,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1679,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1680,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1681,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1682,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1683,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1684,'http://sgfuji.com/shop1/catalog/category/view/id/8','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1685,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-f.html'),(1686,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1687,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1688,'http://sgfuji.com/shop1/catalog/category/view/id/13','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1689,'http://sgfuji.com/shop1/catalog/category/view/id/12','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-s-hs.html'),(1690,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-t-xp.html'),(1691,'http://sgfuji.com/shop1/catalog/category/view/id/14','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1692,'http://sgfuji.com/shop1/catalog/category/view/id/4','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(1693,'http://sgfuji.com/shop1/catalog/category/view/id/16','http://sgfuji.com/shop1/accessori.html'),(1694,'http://sgfuji.com/shop1/catalog/category/view/id/17','http://sgfuji.com/shop1/accessori/custodie-macchine-digitali-2.html'),(1695,'http://sgfuji.com/shop1/catalog/category/view/id/16','http://sgfuji.com/shop1/accessori/custodie-subaquee-1.html'),(1696,'http://sgfuji.com/shop1/catalog/category/view/id/17','http://sgfuji.com/shop1/accessori/custodie-macchine-digitali-2.html'),(1697,'http://sgfuji.com/shop1/catalog/category/view/id/18','http://sgfuji.com/shop1/accessori/custodie-subaquee-1.html'),(1698,'http://sgfuji.com/shop1/catalog/category/view/id/20','http://sgfuji.com/shop1/accessori/batterie.html'),(1699,'http://sgfuji.com/shop1/catalog/category/view/id/21','http://sgfuji.com/shop1/accessori/caricabatterie.html'),(1700,'http://sgfuji.com/shop1/catalog/category/view/id/22','http://sgfuji.com/shop1/accessori/alimentatori.html'),(1701,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/accessori/flash.html'),(1702,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1703,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1704,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1705,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1706,'http://sgfuji.com/shop1/fotocamere-digitali/fotocamere-digitali/fujiflm-serie-x.html','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1707,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali/fotocamere-digitali/fujiflm-serie-x.html'),(1708,'http://sgfuji.com/shop1/fotocamere-digitali/fotocamere-digitali/fujiflm-serie-x.html','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1709,'http://sgfuji.com/shop1/fotocamere-digitali/fotocamere-digitali/fujiflm-serie-x.html','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1710,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fotocamere-digitali/fujiflm-serie-x.html'),(1711,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1712,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1//fotocamere-digitali.html'),(1713,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1//fotocamere-digitali.html'),(1714,'http://sgfuji.com/shop1//fotocamere-digitali/fotocamere-digitali/finepix-serie-t-xp.html','http://sgfuji.com/shop1//fotocamere-digitali/finepix-serie-a.html'),(1715,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1//fotocamere-digitali/fotocamere-digitali/finepix-serie-t-xp.html'),(1716,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1//fotocamere-digitali.html'),(1717,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1//fotocamere-digitali.html'),(1718,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(1719,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1720,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1721,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1722,'http://sgfuji.com/shop1/catalog/category/view/id/12','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1723,'http://sgfuji.com/shop1/catalog/category/view/id/18','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-t-xp.html'),(1724,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/accessori/batterie.html'),(1725,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1726,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1727,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1728,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1729,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1730,'http://sgfuji.com/shop1/blank.gif',NULL),(1731,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1732,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1733,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1734,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1735,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1736,'http://sgfuji.com/shop1/blank.gif',NULL),(1737,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1738,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1739,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1740,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1741,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/'),(1742,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1743,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1744,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1745,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1746,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1747,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1748,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1749,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1750,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1751,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles.css','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1752,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1753,'http://sgfuji.com/shop1/skin/frontend/base/default/images/logo.gif','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1754,'http://sgfuji.com/shop1/skin/frontend/base/default/images/media/col_left_callout.jpg','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1755,'http://sgfuji.com/shop1/skin/frontend/base/default/css/print.css','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1756,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1757,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1758,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles.css','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1759,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1760,'http://sgfuji.com/shop1/skin/frontend/base/default/images/logo.gif','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1761,'http://sgfuji.com/shop1/skin/frontend/base/default/images/media/col_left_callout.jpg','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1762,'http://sgfuji.com/shop1/skin/frontend/base/default/css/print.css','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1763,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles.css','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1764,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1765,'http://sgfuji.com/shop1/skin/frontend/base/default/css/print.css','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1766,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1767,'http://sgfuji.com/shop1/skin/frontend/base/default/css/easytabs.css','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1768,'http://sgfuji.com/shop1/skin/frontend/base/default/css/easytabs.css','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1769,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1770,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1771,'http://sgfuji.com/shop1/',NULL),(1772,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1773,'http://sgfuji.com/shop1/',NULL),(1774,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1775,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1776,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/finepix-av100-2.html'),(1777,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1778,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/finepix-av100-2.html'),(1779,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1780,'http://sgfuji.com/shop1/',NULL),(1781,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1782,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1783,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1784,'http://sgfuji.com/shop1/',NULL),(1785,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1786,'http://sgfuji.com/shop1/catalog/product/view/id/5','http://sgfuji.com/shop1/'),(1787,'http://sgfuji.com/shop1/offerte-speciali.html','http://sgfuji.com/shop1/fujifilm-x100.html'),(1788,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/offerte-speciali.html'),(1789,'http://sgfuji.com/shop1/',NULL),(1790,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1791,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1792,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/'),(1793,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1794,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1795,'http://sgfuji.com/shop1/',NULL),(1796,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j/finepix-x10.html'),(1797,'http://sgfuji.com/shop1/',NULL),(1798,'http://sgfuji.com/shop1/catalog/category/view/id/14','http://sgfuji.com/shop1/'),(1799,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1800,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j/finepix-x10.html'),(1801,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j/finepix-x10.html'),(1802,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1803,'http://sgfuji.com/shop1/',NULL),(1804,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1805,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1806,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1807,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1808,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1809,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1810,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1811,'http://sgfuji.com/shop1/catalog/category/view/id/14','http://sgfuji.com/shop1/'),(1812,'http://sgfuji.com/shop1/offerte-speciali.html','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(1813,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1814,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/offerte-speciali.html'),(1815,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1816,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/'),(1817,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1818,'http://sgfuji.com/shop1/customer-service','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1819,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1820,'http://sgfuji.com/shop1/catalog/seo_sitemap/category/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1821,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1822,'http://sgfuji.com/shop1/catalogsearch/term/popular/','http://sgfuji.com/shop1/catalog/seo_sitemap/category/'),(1823,'http://sgfuji.com/shop1/catalogsearch/advanced/','http://sgfuji.com/shop1/catalogsearch/term/popular/'),(1824,'http://sgfuji.com/shop1/contacts/','http://sgfuji.com/shop1/catalogsearch/advanced/'),(1825,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1826,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/contacts/'),(1827,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/contacts/'),(1828,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/contacts/'),(1829,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(1830,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1831,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1832,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1833,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1834,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(1835,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(1836,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(1837,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/'),(1838,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1839,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1840,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/finepix-av100-2.html'),(1841,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1842,'http://sgfuji.com/shop1/catalog/product/view/id/4','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j/fujifilm-x-s1.html'),(1843,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/finepix-x10.html'),(1844,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/fujifilm-x100.html'),(1845,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1846,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/fujifilm-x100.html'),(1847,'http://sgfuji.com/shop1/catalog/product/view/id/2',NULL),(1848,'http://sgfuji.com/shop1/catalog/product/view/id/2',NULL),(1849,'http://sgfuji.com/shop1/f',NULL),(1850,'http://sgfuji.com/shop1/',NULL),(1851,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1852,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3',NULL),(1853,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1854,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1855,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/fujifilm-x100.html'),(1856,'http://sgfuji.com/shop1/catalog/product/view/id/2','http://sgfuji.com/shop1/fujifilm-x100.html'),(1857,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1858,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1859,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1860,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1861,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/fujifilm-x100.html'),(1862,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1863,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1864,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1865,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x100.html'),(1866,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1867,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1868,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j/finepix-x10.html'),(1869,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1870,'http://sgfuji.com/shop1/catalog/category/view/id/13','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1871,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-s-hs.html'),(1872,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1873,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1874,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j/finepix-x10.html'),(1875,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1876,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1877,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fujifilm-x100.html'),(1878,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1879,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1880,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j/finepix-x10.html'),(1881,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fujifilm-x100.html'),(1882,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1883,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1884,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1885,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1886,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1887,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1888,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1889,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1890,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1891,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1892,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1893,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/fujifilm-x100.html'),(1894,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1895,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/6','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1896,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x100.html'),(1897,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1898,'http://sgfuji.com/shop1/catalog/product/view/id/5/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1899,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1900,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j/fujifilm-x-s1.html'),(1901,'http://sgfuji.com/shop1/catalog/category/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1902,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-j.html'),(1903,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1904,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1905,'http://sgfuji.com/shop1/catalog/category/view/id/13','http://sgfuji.com/shop1/fujifilm-x100.html'),(1906,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/'),(1907,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x-s1.html'),(1908,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fujifilm-x100.html'),(1909,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fujifilm-x100.html'),(1910,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1911,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1912,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3',NULL),(1913,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1914,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1915,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3',NULL),(1916,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1917,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1918,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1919,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3',NULL),(1920,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1921,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1922,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1923,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1924,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1925,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3',NULL),(1926,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1927,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1928,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1929,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1930,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3',NULL),(1931,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1932,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3',NULL),(1933,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3',NULL),(1934,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1935,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1936,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3',NULL),(1937,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3',NULL),(1938,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1939,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1940,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1941,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/3',NULL),(1942,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1943,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(1944,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1945,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1946,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(1947,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(1948,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1949,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1950,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1951,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1952,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(1953,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1954,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1955,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1956,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1957,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=list','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1958,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=list'),(1959,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1960,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(1961,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1962,'http://sgfuji.com/shop1/catalog/category/view/id/3?mode=grid','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1963,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(1964,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(1965,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(1966,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(1967,'http://sgfuji.com/shop1/',NULL),(1968,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(1969,'http://sgfuji.com/shop1/skin/adminhtml/base/default/images/media/about_us_img.jpg',NULL),(1970,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x100.html'),(1971,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x100.html'),(1972,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(1973,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x100.html'),(1974,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html?mode=grid'),(1975,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x100.html'),(1976,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1977,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/'),(1978,'http://sgfuji.com/shop1/fotocamere-digitali/offerte-speciali.html','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(1979,'http://sgfuji.com/shop1/fotocamere-digitali/offerte-speciali.html','http://sgfuji.com/shop1/fotocamere-digitali/offerte-speciali.html'),(1980,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/offerte-speciali.html'),(1981,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1982,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/offerte-speciali.html'),(1983,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1984,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1985,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1986,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1987,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(1988,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(1989,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(1990,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1991,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(1992,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1993,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(1994,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1995,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(1996,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(1997,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(1998,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(1999,'http://sgfuji.com/shop1/',NULL),(2000,'http://sgfuji.com/shop1/',NULL),(2001,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(2002,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2003,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2004,'http://sgfuji.com/shop1/',NULL),(2005,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2006,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2007,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s/product/6/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2008,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2009,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/checkout/cart/'),(2010,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/checkout/cart/'),(2011,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/checkout/cart/'),(2012,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2013,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2014,'http://sgfuji.com/shop1/catalog/product/view/id/4/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2015,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2016,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2017,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2018,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(2019,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2020,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,/product/6/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2021,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2022,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(2023,'http://sgfuji.com/shop1/checkout/onepage/saveMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2024,'http://sgfuji.com/shop1/checkout/onepage/saveBilling/','http://sgfuji.com/shop1/checkout/onepage/'),(2025,'http://sgfuji.com/shop1/checkout/onepage/getAdditional/','http://sgfuji.com/shop1/checkout/onepage/'),(2026,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2027,'http://sgfuji.com/shop1/checkout/onepage/saveShippingMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2028,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2029,'http://sgfuji.com/shop1/checkout/onepage/savePayment/','http://sgfuji.com/shop1/checkout/onepage/'),(2030,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2031,'http://sgfuji.com/shop1/checkout/onepage/saveOrder/','http://sgfuji.com/shop1/checkout/onepage/'),(2032,'http://sgfuji.com/shop1/keyclient/return/bankpost/','http://sgfuji.com/shop1/checkout/onepage/'),(2033,'http://sgfuji.com/shop1/keyclient/return/bankpost/','http://sgfuji.com/shop1/checkout/onepage/'),(2034,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(2035,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/checkout/cart/'),(2036,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2037,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2038,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,/product/6/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2039,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2040,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(2041,'http://sgfuji.com/shop1/checkout/onepage/saveMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2042,'http://sgfuji.com/shop1/checkout/onepage/saveBilling/','http://sgfuji.com/shop1/checkout/onepage/'),(2043,'http://sgfuji.com/shop1/checkout/onepage/getAdditional/','http://sgfuji.com/shop1/checkout/onepage/'),(2044,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2045,'http://sgfuji.com/shop1/checkout/onepage/saveShippingMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2046,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2047,'http://sgfuji.com/shop1/checkout/onepage/savePayment/','http://sgfuji.com/shop1/checkout/onepage/'),(2048,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2049,'http://sgfuji.com/shop1/checkout/onepage/saveOrder/','http://sgfuji.com/shop1/checkout/onepage/'),(2050,'http://sgfuji.com/shop1/keyclient/return/bankpost/','http://sgfuji.com/shop1/checkout/onepage/'),(2051,'http://sgfuji.com/shop1/keyclient/return/response/?mail=&session_id=&codAut=&alias=payment_testm_urlmac&orario=113323&data=20120302&mac=NjdmZGIxZmQ5NjE2MjM4OTQ2NGZiMjUzNGMxMTg1ZTI%253D&importo=1&$BRAND=MasterCard&cognome=luca&nazionalita=ITA&pan=5255',NULL),(2052,'http://sgfuji.com/shop1/',NULL),(2053,'http://sgfuji.com/shop1/keyclient/return/response/?mail=&session_id=&codAut=&alias=payment_testm_urlmac&orario=113323&data=20120302&mac=NjdmZGIxZmQ5NjE2MjM4OTQ2NGZiMjUzNGMxMTg1ZTI%253D&importo=1&$BRAND=MasterCard&cognome=luca&nazionalita=ITA&pan=5255',NULL),(2054,'http://sgfuji.com/shop1/keyclient/return/response/?mail=&session_id=&codAut=&alias=payment_testm_urlmac&orario=113323&data=20120302&mac=NjdmZGIxZmQ5NjE2MjM4OTQ2NGZiMjUzNGMxMTg1ZTI%253D&importo=1&$BRAND=MasterCard&cognome=luca&nazionalita=ITA&pan=5255',NULL),(2055,'http://sgfuji.com/shop1/keyclient/return/response/?mail=&session_id=&codAut=&alias=payment_testm_urlmac&orario=113323&data=20120302&mac=NjdmZGIxZmQ5NjE2MjM4OTQ2NGZiMjUzNGMxMTg1ZTI%253D&importo=1&$BRAND=MasterCard&cognome=luca&nazionalita=ITA&pan=5255',NULL),(2056,'http://sgfuji.com/shop1/',NULL),(2057,'http://sgfuji.com/shop1/offerte-speciali.html','http://sgfuji.com/shop1/'),(2058,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2059,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2060,'http://sgfuji.com/shop1/',NULL),(2061,'http://sgfuji.com/shop1/offerte-speciali.html','http://sgfuji.com/shop1/'),(2062,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(2063,'http://sgfuji.com/shop1/catalog/product/view/id/2/category/3','http://sgfuji.com/shop1/fotocamere-digitali.html'),(2064,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9maW5lcGl4LWF2MTAwLTIuaHRtbA,,/product/2/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(2065,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(2066,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(2067,'http://sgfuji.com/shop1/checkout/onepage/saveMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2068,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s/product/6/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2069,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2070,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(2071,'http://sgfuji.com/shop1/checkout/onepage/saveBilling/','http://sgfuji.com/shop1/checkout/onepage/'),(2072,'http://sgfuji.com/shop1/checkout/onepage/getAdditional/','http://sgfuji.com/shop1/checkout/onepage/'),(2073,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2074,'http://sgfuji.com/shop1/checkout/onepage/saveShippingMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2075,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2076,'http://sgfuji.com/shop1/checkout/onepage/savePayment/','http://sgfuji.com/shop1/checkout/onepage/'),(2077,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2078,'http://sgfuji.com/shop1/checkout/onepage/saveOrder/','http://sgfuji.com/shop1/checkout/onepage/'),(2079,'http://sgfuji.com/shop1/keyclient/return/bankpost/','http://sgfuji.com/shop1/checkout/onepage/'),(2080,'http://sgfuji.com/shop1/customer/account/loginPost/','http://sgfuji.com/shop1/checkout/onepage/'),(2081,'http://sgfuji.com/shop1/checkout/onepage/index/','http://sgfuji.com/shop1/checkout/onepage/'),(2082,'http://sgfuji.com/shop1/customer/account/loginPost/','http://sgfuji.com/shop1/checkout/onepage/index/'),(2083,'http://sgfuji.com/shop1/checkout/onepage/index/','http://sgfuji.com/shop1/checkout/onepage/index/'),(2084,'http://sgfuji.com/shop1/customer/account/loginPost/','http://sgfuji.com/shop1/checkout/onepage/index/'),(2085,'http://sgfuji.com/shop1/checkout/onepage/index/','http://sgfuji.com/shop1/checkout/onepage/index/'),(2086,'http://sgfuji.com/shop1/customer/account/forgotpassword/','http://sgfuji.com/shop1/checkout/onepage/index/'),(2087,'http://sgfuji.com/shop1/customer/account/forgotpasswordpost/','http://sgfuji.com/shop1/customer/account/forgotpassword/'),(2088,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/forgotpassword/'),(2089,'http://sgfuji.com/shop1/customer/account/loginPost/','http://sgfuji.com/shop1/customer/account/login/'),(2090,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/login/'),(2091,'http://sgfuji.com/shop1/customer/account/create/','http://sgfuji.com/shop1/customer/account/login/'),(2092,'http://sgfuji.com/shop1/customer/account/createpost/','http://sgfuji.com/shop1/customer/account/create/'),(2093,'http://sgfuji.com/shop1/customer/account/index/','http://sgfuji.com/shop1/customer/account/create/'),(2094,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/customer/account/index/'),(2095,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html'),(2096,'http://sgfuji.com/shop1/checkout/onepage/saveBilling/','http://sgfuji.com/shop1/checkout/onepage/'),(2097,'http://sgfuji.com/shop1/checkout/onepage/getAdditional/','http://sgfuji.com/shop1/checkout/onepage/'),(2098,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2099,'http://sgfuji.com/shop1/checkout/onepage/saveShippingMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2100,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2101,'http://sgfuji.com/shop1/checkout/onepage/savePayment/','http://sgfuji.com/shop1/checkout/onepage/'),(2102,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2103,'http://sgfuji.com/shop1/checkout/onepage/saveOrder/','http://sgfuji.com/shop1/checkout/onepage/'),(2104,'http://sgfuji.com/shop1/keyclient/return/bankpost/','http://sgfuji.com/shop1/checkout/onepage/'),(2105,'http://sgfuji.com/shop1/catalog/category/view/id/11','http://sgfuji.com/shop1/checkout/cart/'),(2106,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/fotocamere-digitali/finepix-serie-a.html'),(2107,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(2108,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/product/6/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(2109,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(2110,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(2111,'http://sgfuji.com/shop1/checkout/onepage/saveMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2112,'http://sgfuji.com/shop1/checkout/onepage/saveBilling/','http://sgfuji.com/shop1/checkout/onepage/'),(2113,'http://sgfuji.com/shop1/checkout/onepage/getAdditional/','http://sgfuji.com/shop1/checkout/onepage/'),(2114,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2115,'http://sgfuji.com/shop1/checkout/onepage/saveShippingMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2116,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2117,'http://sgfuji.com/shop1/checkout/onepage/savePayment/','http://sgfuji.com/shop1/checkout/onepage/'),(2118,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2119,'http://sgfuji.com/shop1/checkout/onepage/saveOrder/','http://sgfuji.com/shop1/checkout/onepage/'),(2120,'http://sgfuji.com/shop1/keyclient/return/bankpost/','http://sgfuji.com/shop1/checkout/onepage/'),(2121,'http://sgfuji.com/shop1/keyclient/return/response/?mail=&session_id=&codAut=&alias=payment_testm_urlmac&orario=113323&data=20120302&mac=NjdmZGIxZmQ5NjE2MjM4OTQ2NGZiMjUzNGMxMTg1ZTI%253D&importo=1&$BRAND=MasterCard&cognome=luca&nazionalita=ITA&pan=5255',NULL),(2122,'http://sgfuji.com/shop1/',NULL),(2123,'http://sgfuji.com/shop1/catalog/category/view/id/14','http://sgfuji.com/shop1/'),(2124,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(2125,'http://sgfuji.com/shop1/checkout/cart/addgroup/','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(2126,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(2127,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(2128,'http://sgfuji.com/shop1/checkout/onepage/saveBilling/','http://sgfuji.com/shop1/checkout/onepage/'),(2129,'http://sgfuji.com/shop1/checkout/onepage/getAdditional/','http://sgfuji.com/shop1/checkout/onepage/'),(2130,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2131,'http://sgfuji.com/shop1/checkout/onepage/saveShippingMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2132,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2133,'http://sgfuji.com/shop1/checkout/onepage/savePayment/','http://sgfuji.com/shop1/checkout/onepage/'),(2134,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2135,'http://sgfuji.com/shop1/checkout/onepage/saveOrder/','http://sgfuji.com/shop1/checkout/onepage/'),(2136,'http://sgfuji.com/shop1/keyclient/return/bankpost/','http://sgfuji.com/shop1/checkout/onepage/'),(2137,'http://sgfuji.com/shop1/keyclient/return/bankpost/','http://sgfuji.com/shop1/checkout/onepage/'),(2138,'http://sgfuji.com/shop1/keyclient/return/response/?mail=staff%40tresoldi.net&session_id=&codAut=TESTOK&alias=payment_testm_urlmac&orario=152947&data=20120302&mac=NDAyNzI5YjVhZmE3YzQzZjJlYTJhMTRlZDA4NTFiZmI%253D&importo=1&$BRAND=MasterCard&cognome=luc',NULL),(2139,'http://sgfuji.com/shop1/checkout/onepage/success/',NULL),(2140,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/onepage/success/'),(2141,'http://sgfuji.com/shop1/',NULL),(2142,'http://sgfuji.com/shop1/',NULL),(2143,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2144,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2145,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2146,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2147,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s/product/6/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2148,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2149,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(2150,'http://sgfuji.com/shop1/checkout/onepage/saveBilling/','http://sgfuji.com/shop1/checkout/onepage/'),(2151,'http://sgfuji.com/shop1/checkout/onepage/getAdditional/','http://sgfuji.com/shop1/checkout/onepage/'),(2152,'http://sgfuji.com/shop1/customer/account/logout/','http://sgfuji.com/shop1/checkout/onepage/'),(2153,'http://sgfuji.com/shop1/customer/account/logoutSuccess/','http://sgfuji.com/shop1/checkout/onepage/'),(2154,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/customer/account/logoutSuccess/'),(2155,'http://sgfuji.com/shop1/catalog/category/view/id/14','http://sgfuji.com/shop1/'),(2156,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-ricondizionate.html'),(2157,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,/product/6/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2158,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2159,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(2160,'http://sgfuji.com/shop1/checkout/onepage/saveMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2161,'http://sgfuji.com/shop1/checkout/onepage/saveBilling/','http://sgfuji.com/shop1/checkout/onepage/'),(2162,'http://sgfuji.com/shop1/checkout/onepage/getAdditional/','http://sgfuji.com/shop1/checkout/onepage/'),(2163,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2164,'http://sgfuji.com/shop1/checkout/onepage/saveShippingMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2165,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2166,'http://sgfuji.com/shop1/checkout/onepage/savePayment/','http://sgfuji.com/shop1/checkout/onepage/'),(2167,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2168,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(2169,'http://sgfuji.com/shop1/checkout/onepage/saveMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2170,'http://sgfuji.com/shop1/checkout/onepage/saveBilling/','http://sgfuji.com/shop1/checkout/onepage/'),(2171,'http://sgfuji.com/shop1/checkout/onepage/getAdditional/','http://sgfuji.com/shop1/checkout/onepage/'),(2172,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2173,'http://sgfuji.com/shop1/checkout/onepage/saveShippingMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2174,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2175,'http://sgfuji.com/shop1/checkout/onepage/savePayment/','http://sgfuji.com/shop1/checkout/onepage/'),(2176,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2177,'http://sgfuji.com/shop1/checkout/onepage/saveOrder/','http://sgfuji.com/shop1/checkout/onepage/'),(2178,'http://sgfuji.com/shop1/keyclient/return/bankpost/','http://sgfuji.com/shop1/checkout/onepage/'),(2179,'http://sgfuji.com/shop1/keyclient/return/response/?mail=&session_id=&codAut=TESTOK&alias=payment_testm_urlmac&orario=160846&data=20120302&mac=ZjQzNjliYWY5NzA1Y2I3MzcyZTg2Mjc5ODBhM2YxOGM%253D&importo=1&$BRAND=MasterCard&cognome=luca&nazionalita=ITA&pa',NULL),(2180,'http://sgfuji.com/shop1/checkout/onepage/success/',NULL),(2181,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/onepage/success/'),(2182,'http://sgfuji.com/shop1/',NULL),(2183,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(2184,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2185,'http://sgfuji.com/shop1/catalog/category/view/id/10',NULL),(2186,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2187,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2188,'http://sgfuji.com/shop1/',NULL),(2189,'http://sgfuji.com/shop1/',NULL),(2190,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2191,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2192,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2193,'http://sgfuji.com/shop1/catalog/category/view/id/10?zoom=48','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2194,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html?zoom=48'),(2195,'http://sgfuji.com/shop1/catalog/category/view/id/10?mode=list','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2196,'http://sgfuji.com/shop1/catalog/product/view/id/6/category/10','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html?mode=list'),(2197,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s/product/6/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2198,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2199,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/cart/'),(2200,'http://sgfuji.com/shop1/checkout/onepage/saveMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2201,'http://sgfuji.com/shop1/checkout/onepage/saveBilling/','http://sgfuji.com/shop1/checkout/onepage/'),(2202,'http://sgfuji.com/shop1/checkout/onepage/getAdditional/','http://sgfuji.com/shop1/checkout/onepage/'),(2203,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2204,'http://sgfuji.com/shop1/checkout/onepage/saveShippingMethod/','http://sgfuji.com/shop1/checkout/onepage/'),(2205,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2206,'http://sgfuji.com/shop1/checkout/onepage/savePayment/','http://sgfuji.com/shop1/checkout/onepage/'),(2207,'http://sgfuji.com/shop1/checkout/onepage/progress/','http://sgfuji.com/shop1/checkout/onepage/'),(2208,'http://sgfuji.com/shop1/checkout/onepage/saveOrder/','http://sgfuji.com/shop1/checkout/onepage/'),(2209,'http://sgfuji.com/shop1/keyclient/return/bankpost/','http://sgfuji.com/shop1/checkout/onepage/'),(2210,'http://sgfuji.com/shop1/keyclient/return/response/?importo=1&divisa=EUR&codTrans=OID-20120302161915-100000008&esito=ANNULLO',NULL),(2211,'http://sgfuji.com/shop1/checkout/onepage/failure/',NULL),(2212,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/checkout/onepage/failure/'),(2213,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(2214,'http://sgfuji.com/shop1/catalogsearch/result/?q=X100','http://sgfuji.com/shop1/'),(2215,'http://sgfuji.com/shop1/catalog/product/view/id/6','http://sgfuji.com/shop1/catalogsearch/result/?q=X100'),(2216,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s/product/6/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2217,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html'),(2218,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(2219,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/'),(2220,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/'),(2221,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/'),(2222,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2223,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2224,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2225,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/checkout/onepage/'),(2226,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/checkout/onepage/'),(2227,'http://sgfuji.com/shop1/',NULL),(2228,'http://sgfuji.com/shop1/catalog/category/view/id/3','http://sgfuji.com/shop1/'),(2229,'http://sgfuji.com/shop1/skin/frontend/base/default/css/styles_pink.css','http://sgfuji.com/shop1/fotocamere-digitali.html'),(2230,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s/product/1/','http://sgfuji.com/shop1/fotocamere-digitali.html'),(2231,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/onepage/'),(2232,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/'),(2233,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2234,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,/product/4/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2235,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2236,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2237,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2238,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2239,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/onepage/'),(2240,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/'),(2241,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/'),(2242,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/onepage/'),(2243,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/'),(2244,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/'),(2245,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2246,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/onepage/'),(2247,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/'),(2248,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/'),(2249,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/'),(2250,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/checkout/onepage/'),(2251,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/'),(2252,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/checkout/onepage/'),(2253,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/'),(2254,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/'),(2255,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/checkout/onepage/'),(2256,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/'),(2257,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/checkout/onepage/'),(2258,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/'),(2259,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/checkout/onepage/'),(2260,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/'),(2261,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/checkout/onepage/'),(2262,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/'),(2263,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/checkout/onepage/'),(2264,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/'),(2265,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2266,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2267,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/checkout/onepage/'),(2268,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/'),(2269,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/checkout/onepage/'),(2270,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/'),(2271,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/'),(2272,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2273,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/onepage/'),(2274,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/'),(2275,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/'),(2276,'http://sgfuji.com/shop1/gomage_checkout/onepage/customerLogin/','http://sgfuji.com/shop1/checkout/onepage/'),(2277,'http://sgfuji.com/shop1/gomage_checkout/onepage/customerLogin/','http://sgfuji.com/shop1/checkout/onepage/'),(2278,'http://sgfuji.com/shop1/gomage_checkout/onepage/customerLogin/','http://sgfuji.com/shop1/checkout/onepage/'),(2279,'http://sgfuji.com/shop1/gomage_checkout/onepage/customerLogin/','http://sgfuji.com/shop1/checkout/onepage/'),(2280,'http://sgfuji.com/shop1/customer/account/forgotpassword/','http://sgfuji.com/shop1/checkout/onepage/'),(2281,'http://sgfuji.com/shop1/customer/account/forgotpasswordpost/','http://sgfuji.com/shop1/customer/account/forgotpassword/'),(2282,'http://sgfuji.com/shop1/customer/account/login/','http://sgfuji.com/shop1/customer/account/forgotpassword/'),(2283,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/customer/account/login/'),(2284,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/customer/account/login/'),(2285,'http://sgfuji.com/shop1/gomage_checkout/onepage/customerLogin/','http://sgfuji.com/shop1/checkout/onepage/'),(2286,'http://sgfuji.com/shop1/gomage_checkout/onepage/customerLogin/','http://sgfuji.com/shop1/checkout/onepage/'),(2287,'http://sgfuji.com/shop1/gomage_checkout/onepage/customerLogin/','http://sgfuji.com/shop1/checkout/onepage/'),(2288,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2289,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2290,'http://sgfuji.com/shop1/gomage_checkout/onepage/save/','http://sgfuji.com/shop1/checkout/onepage/'),(2291,'http://sgfuji.com/shop1/keyclient/return/bankpost/','http://sgfuji.com/shop1/checkout/onepage/'),(2292,'http://sgfuji.com/shop1/keyclient/return/response/?mail=staff%40tresoldi.net&session_id=&codAut=TESTOK&alias=payment_testm_urlmac&orario=233138&data=20120302&mac=OTBhYzk3OWM1YWIyNGRlMGM4NTZkMzc3MDc0MmYwYzU%253D&importo=1&$BRAND=MasterCard&cognome=luc',NULL),(2293,'http://sgfuji.com/shop1/checkout/onepage/success/',NULL),(2294,'http://sgfuji.com/shop1/checkout/','http://sgfuji.com/shop1/checkout/onepage/success/'),(2295,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/checkout/onepage/success/'),(2296,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/checkout/onepage/success/'),(2297,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/checkout/cart/'),(2298,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,/product/6/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2299,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2300,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2301,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2302,'http://sgfuji.com/shop1/',NULL),(2303,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2304,'http://sgfuji.com/shop1/checkout/cart/add/uenc/aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,/product/4/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2305,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2306,'http://sgfuji.com/shop1/checkout/onepage/','http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x.html'),(2307,'http://sgfuji.com/shop1/gomage_checkout/onepage/ajax/','http://sgfuji.com/shop1/checkout/onepage/'),(2308,'http://sgfuji.com/shop1/checkout/cart/','http://sgfuji.com/shop1/checkout/onepage/'),(2309,'http://sgfuji.com/shop1/','http://sgfuji.com/shop1/checkout/cart/'),(2310,'http://sgfuji.com/shop1/catalog/category/view/id/10','http://sgfuji.com/shop1/'),(2311,'http://sgfuji.com/shop1/fotocamere-digitali/blank.gif',NULL); /*!40000 ALTER TABLE `log_url_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_visitor` -- DROP TABLE IF EXISTS `log_visitor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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=InnoDB AUTO_INCREMENT=138 DEFAULT CHARSET=utf8 COMMENT='Log Visitors Table'; /*!40101 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,'e4372dbe5a4095940d3a5f97f2b3826e','2012-02-08 21:11:30','2012-02-08 21:11:30',1,1),(2,'1dff6590bd12d4976e43aa9497ad1dc1','2012-02-08 21:22:31','2012-02-08 21:24:24',18,1),(3,'b672a59290e874ec5e6cff5ba2f7e6c3','2012-02-09 07:48:21','2012-02-09 07:48:21',19,1),(4,'e03972e0932caaef4265b6b5642938e0','2012-02-13 15:35:19','2012-02-13 16:02:07',98,1),(5,'d56f3961e692a8843baa5d246af64135','2012-02-13 15:35:23','2012-02-13 16:46:11',102,1),(6,'e9991b52a9da92e525be1ff90c5d9341','2012-02-13 16:01:45','2012-02-13 16:01:45',97,1),(7,'8ef02df304f90b1814ae30d5eb563104','2012-02-14 13:22:54','2012-02-14 13:39:52',108,1),(8,'2158bd56b14773ba185f81c672a922e9','2012-02-14 13:24:26','2012-02-14 13:43:49',109,1),(9,'8ef02df304f90b1814ae30d5eb563104','2012-02-14 14:12:36','2012-02-14 14:12:36',110,1),(10,'2158bd56b14773ba185f81c672a922e9','2012-02-14 14:19:20','2012-02-14 14:59:07',114,1),(11,'6cfac21221e24ab41af5a5223268746d','2012-02-14 16:43:01','2012-02-14 16:43:01',115,1),(12,'5be4cf82f42769126421e61c943f6e64','2012-02-14 17:24:45','2012-02-14 17:24:45',116,1),(13,'85df629280203d8e809b6e91ecc3a876','2012-02-14 22:26:43','2012-02-14 22:50:48',138,1),(14,'816c1e56191031c8a0ae61ee75294e9e','2012-02-15 06:49:34','2012-02-15 06:49:34',139,1),(15,'16def8e49665cbae4a37a2f80bbb985e','2012-02-15 07:03:27','2012-02-15 07:03:28',140,1),(16,'f0efa914e25aa3909fc093da9e86d198','2012-02-15 07:04:44','2012-02-15 07:04:44',141,1),(17,'11730ebef0b29fcea04f0283af256bac','2012-02-15 09:34:46','2012-02-15 09:34:46',142,1),(18,'6nc36ptsi03b37ihqbp9vupsv6','2012-02-15 22:46:59','2012-02-16 00:03:26',170,1),(19,'tvggdmediek1kiodabccuqp085','2012-02-16 06:33:05','2012-02-16 06:54:52',204,1),(20,'rs8cmv2k2jn475dvqq6lavkpf4','2012-02-16 07:46:54','2012-02-16 07:46:54',205,1),(21,'vfmt9f90mh25vfgg74eajk11g3','2012-02-16 08:14:14','2012-02-16 08:34:05',207,1),(22,'mqr588ccapss99vkou6hr30kb0','2012-02-16 09:07:01','2012-02-16 09:44:14',227,1),(23,'a2hqcd3t2iisq7b46ma0p9lhs5','2012-02-16 09:33:07','2012-02-16 10:17:08',235,1),(24,'ppfam057g4tjhcs42pqeiedc16','2012-02-16 11:57:30','2012-02-16 12:15:45',237,1),(25,'opret39oitmn5edu0vg4ov6d53','2012-02-16 13:45:20','2012-02-16 14:28:30',270,1),(26,'ois3qb0v8hhk54cgc7fn5vv6o4','2012-02-16 13:50:54','2012-02-16 14:27:42',269,1),(27,'f100dch319djqqdfirchnsae06','2012-02-16 19:17:21','2012-02-16 20:02:49',280,1),(28,'6mh97v626ksafk0o162o8l7996','2012-02-16 20:18:34','2012-02-16 20:18:35',281,1),(29,'lmatdfkoa6q9fbebiaqigrtn73','2012-02-17 10:02:00','2012-02-17 10:06:37',293,1),(30,'3lpdkgm0428i22fu03mbhh26c0','2012-02-17 14:26:10','2012-02-17 14:26:11',294,1),(31,'kv0v43j0llj8rl6ip47o9svol3','2012-02-17 14:51:04','2012-02-17 14:51:04',295,1),(32,'t9ms9t1kekkl9kesnrqkvos2c7','2012-02-17 14:59:31','2012-02-17 15:01:11',306,1),(33,'e7046d78al6s06f2g4gfrumu84','2012-02-17 19:12:18','2012-02-17 19:12:19',307,1),(34,'lvjnn4c9589t0smpk8l34i29u0','2012-02-19 08:41:02','2012-02-19 08:41:05',308,1),(35,'194brsls8ljedan5gooagtl8g6','2012-02-20 07:31:44','2012-02-20 07:48:26',325,1),(36,'h7n65svj10lo6stiln5v78nun6','2012-02-20 08:53:48','2012-02-20 08:53:48',326,1),(37,'2raon5ftmqdsc85ig6n8q59783','2012-02-20 11:46:36','2012-02-20 12:28:44',354,1),(38,'uh06lh7iu8j0bpn9g638gpg805','2012-02-20 14:37:00','2012-02-20 15:22:14',380,1),(39,'c3h5ndodhlef24qd5gptrvqne1','2012-02-20 15:10:17','2012-02-20 15:16:05',361,1),(40,'0s4m3361u260588qh7ho3lj3r4','2012-02-20 15:16:53','2012-02-20 15:16:53',366,1),(41,'dlu66qhlss4oih2uirogn8d386','2012-02-20 15:28:58','2012-02-20 15:28:58',381,1),(42,'dlu66qhlss4oih2uirogn8d386','2012-02-20 15:30:16','2012-02-20 15:32:38',383,1),(43,'uh06lh7iu8j0bpn9g638gpg805','2012-02-20 15:45:14','2012-02-20 16:01:51',388,1),(44,'olmfsg0660q9fv1slrnj56k8d3','2012-02-20 15:46:28','2012-02-20 15:46:29',386,1),(45,'8lktjmh28af4f5vihtd03rkei4','2012-02-20 15:54:28','2012-02-20 15:54:28',387,1),(46,'penvsfenepug7pp7h0cf73t8d5','2012-02-20 17:06:10','2012-02-20 17:13:42',390,1),(47,'t07hgas8nmb4hso8j98bjakr24','2012-02-20 20:34:46','2012-02-20 20:34:47',391,1),(48,'uh22dt4jgns8p38v7ad8k2j8f1','2012-02-21 08:24:48','2012-02-21 08:24:51',392,1),(49,'9hcv3nvop8ea7s4dj7920p9on6','2012-02-21 08:24:52','2012-02-21 08:24:54',393,1),(50,'oskv2gocf5e4slo1im26giut73','2012-02-21 10:17:45','2012-02-21 10:17:46',394,1),(51,'qn6ra7lo9udehc8pdvaplia7d2','2012-02-21 12:47:10','2012-02-21 12:52:09',399,1),(52,'sn8q03271dk9fd437r2haut0u0','2012-02-21 13:22:00','2012-02-21 13:25:34',423,1),(53,'5rsh7fajcqckn5ouqf849429h6','2012-02-21 14:37:18','2012-02-21 14:49:21',443,1),(54,'cu66oivvge7c1miennq63jd5t3','2012-02-21 14:42:37','2012-02-21 14:42:47',432,1),(55,'rvut90lkogo4nhulh7r3n9leq5','2012-02-21 14:43:33','2012-02-21 14:43:34',433,1),(56,'qgprk991uci9l70ajgqskrusq0','2012-02-21 14:49:18','2012-02-21 14:49:29',444,1),(57,'1aat4ujdhna3v0i8bniuufp475','2012-02-21 14:49:18','2012-02-21 14:49:19',441,1),(58,'gqvhf6f35uict0ct0cmiqk0lh2','2012-02-21 17:15:55','2012-02-21 17:15:56',445,1),(59,'hgqrcgo64gg1ahiegnq23pai11','2012-02-21 19:49:48','2012-02-21 19:49:50',446,1),(60,'pa1la7b27pq1cjl4pvlmf5ear7','2012-02-22 09:20:38','2012-02-22 09:20:43',447,1),(61,'aqc7kmibkcqtvt45gnd25htov2','2012-02-22 09:20:44','2012-02-22 10:23:01',570,1),(62,'3k8p7h21q1t8grb64lh1ot9os4','2012-02-22 09:21:45','2012-02-22 10:24:42',571,1),(63,'ojl3h0pdn0tjdudl7en62u1mt2','2012-02-22 13:23:41','2012-02-22 13:38:22',584,1),(64,'9cff2s0p8v3pp8ij7jrnmd4o87','2012-02-22 18:22:59','2012-02-22 19:57:05',613,1),(65,'ape3im6pqthrj2g6vjlhd2ute2','2012-02-23 07:00:22','2012-02-23 09:21:24',727,1),(66,'djsvs0cag6neqccoaha8a69l91','2012-02-23 07:01:49','2012-02-23 09:15:18',725,1),(67,'5nq1cl02mc6rp31m2gnoodglr0','2012-02-23 08:34:11','2012-02-23 08:34:20',697,1),(68,'efelu4hdebeq27nq58jvvo2s12','2012-02-23 08:38:15','2012-02-23 08:39:09',701,1),(69,'g33jos1mt7sugsrclu04eeih97','2012-02-23 08:55:19','2012-02-23 08:58:48',723,1),(70,'p1g81l2hdrcu1d44u4gfhtred6','2012-02-23 10:38:44','2012-02-23 10:38:44',728,1),(71,'9jesssuepjnbnra6gbipo6ru36','2012-02-23 19:35:16','2012-02-23 19:38:00',731,1),(72,'l0dgm7bon7uqcum8ee44cdcac3','2012-02-25 04:58:34','2012-02-25 04:58:36',732,1),(73,'o2rp2ul6lrqmvv7ojq6udr0mo1','2012-02-25 12:07:07','2012-02-25 12:07:08',733,1),(74,'o75hj30jsonsclj0op4ambmi36','2012-02-25 13:47:58','2012-02-25 14:29:52',742,1),(75,'74fh3mdn4614q7okkss9jnaej1','2012-02-25 22:09:42','2012-02-26 01:18:43',812,1),(76,'4cnu9qkqq2rina7cdhgkm2r764','2012-02-26 08:48:11','2012-02-26 12:10:35',891,1),(77,'f67l56do1p912rtflopf231ke0','2012-02-26 12:11:51','2012-02-26 12:18:11',894,1),(78,'8p2b5jd6mp68e3deo2jv3oukh3','2012-02-26 18:26:55','2012-02-26 20:41:46',923,1),(79,'4rnlahe5ki77ohgi6407885476','2012-02-26 19:13:17','2012-02-26 20:30:35',921,1),(80,'7k8jm3n1abpjaj21civjgtf784','2012-02-27 05:41:35','2012-02-27 06:14:15',935,1),(81,'qq1pdrnsa9qghngjf5s6h5c8m1','2012-02-27 07:19:55','2012-02-27 07:21:32',943,1),(82,'aabb6ck8qvd511m1628cntll82','2012-02-27 07:21:04','2012-02-27 07:21:29',941,1),(83,'rmm3jo7anq6uburfjv08rnas12','2012-02-27 08:47:40','2012-02-27 08:47:43',945,1),(84,'74t080arqm7tj0t0ln5lim4jk0','2012-02-27 09:59:56','2012-02-27 10:03:05',953,1),(85,'cj6b7960khboj5dp07p1vmlds5','2012-02-27 10:01:57','2012-02-27 10:02:29',951,1),(86,'umbjp6j5ouhc70i67akihiapo3','2012-02-27 10:05:48','2012-02-27 11:02:55',959,1),(87,'rr5sn01jujiodfs5ip21lm6f74','2012-02-27 10:51:18','2012-02-27 10:51:25',956,1),(88,'5o7l2e10ar6pi9k1tbf7nbsv53','2012-02-27 10:51:34','2012-02-27 10:51:37',957,1),(89,'abv9musjffrk8m39ab4pf4mqc4','2012-02-27 11:48:24','2012-02-27 12:00:29',995,1),(90,'pcbackbg1q18p73b3bhd1pjst1','2012-02-27 12:24:44','2012-02-27 12:24:46',997,1),(91,'ra06e5r86segmica616phaneb7','2012-02-27 12:59:56','2012-02-27 13:06:56',1004,1),(92,'3t08mq3ohr95cq96ikohrccin5','2012-02-27 13:04:46','2012-02-27 13:04:47',1001,1),(93,'dv4896ssjqsddfgk4uass27790','2012-02-27 13:07:30','2012-02-27 13:07:31',1005,1),(94,'4b741p6kti2degvp98u02bhve0','2012-02-27 13:08:31','2012-02-27 13:08:31',1006,1),(95,'62mnhpgaa0as0h4asir95jo0n3','2012-02-27 13:10:23','2012-02-27 14:20:34',1026,1),(96,'se9b7doh5j8lj55a9cpmoj1gs5','2012-02-27 13:16:41','2012-02-27 13:19:08',1012,1),(97,'1pdhsut6b4nudh36ukerv04i65','2012-02-27 14:01:10','2012-02-27 17:29:10',1192,1),(98,'tuk9r7d5fvr9pk93fja9hn0ds1','2012-02-27 14:37:42','2012-02-27 15:40:10',1136,1),(99,'nglaoo3m5uftbbdsd2vothddp5','2012-02-27 15:11:38','2012-02-27 15:53:26',1169,1),(100,'v1n41pi4gc7upiffiogjckikj3','2012-02-27 15:48:25','2012-02-27 17:10:01',1186,1),(101,'ofktfl24ftlhbjqfk14ji0uhk2','2012-02-27 19:51:25','2012-02-27 21:21:19',1314,1),(102,'0ir0rul6ko282ththf1te8c376','2012-02-27 20:07:03','2012-02-27 20:37:50',1226,1),(103,'olf79viqj5300ii086felgqdj7','2012-02-27 20:23:55','2012-02-27 22:20:40',1319,1),(104,'rsct8ulc0qhtkgnv8thui95j06','2012-02-27 22:24:49','2012-02-27 22:46:12',1359,1),(105,'v73atbddusgjg5qiddckghus75','2012-02-28 07:15:08','2012-02-28 07:38:20',1361,1),(106,'50kc1vepa25rv0q6hjr61g8ih2','2012-02-28 08:11:22','2012-02-28 11:09:56',1565,1),(107,'7mgpf1c3fuhmo5mvcc4r7p5rh0','2012-02-28 08:48:37','2012-02-28 13:23:51',1611,1),(108,'2dm1peknrnouvqtrb0usv0spr3','2012-02-28 08:52:49','2012-02-28 09:41:11',1426,1),(109,'5masbsqhhla06f5u9ir8a38604','2012-02-28 11:10:27','2012-02-28 11:10:37',1569,1),(110,'edbsglfodt4b1mts8fbmgvggu7','2012-02-28 12:09:48','2012-02-28 13:10:55',1608,1),(111,'gaclj7bjn8mbfqv0qsbipen0h6','2012-02-28 12:13:32','2012-02-28 12:47:28',1601,1),(112,'nabjj2ti4nhsi7mtjcqshle887','2012-02-28 14:13:30','2012-02-28 16:51:53',1662,1),(113,'iqg55iv74la4jglij51gosfkj5','2012-02-28 14:36:02','2012-02-28 16:13:03',1657,1),(114,'gmslr3jric3gdc4l6gur83sgc1','2012-02-28 15:01:06','2012-02-28 17:02:36',1674,1),(115,'6dj0g0arkvfubend3gr45itl67','2012-02-28 17:23:54','2012-02-28 17:23:55',1675,1),(116,'9bdf8530lpvqut8hjm5temip70','2012-02-29 05:03:27','2012-02-29 11:09:35',1992,1),(117,'vfch60h2ruc6bal5koka22lfq7','2012-02-29 07:45:04','2012-02-29 08:13:07',1831,1),(118,'rtg54kak6euv2idr0inmf2h4p6','2012-02-29 07:46:08','2012-02-29 12:02:15',1994,1),(119,'kl0o81gaofnnfn2nmdh84stsg2','2012-02-29 07:48:56','2012-02-29 08:03:32',1814,1),(120,'e00pk9gdthse1lvh8tpojdd682','2012-02-29 07:54:45','2012-02-29 08:06:48',1825,1),(121,'tfet2huqr0esbigkmcn70f4431','2012-02-29 08:32:30','2012-02-29 10:22:58',1967,1),(122,'hvv5a6cdt46pd8j5ovaqvsfpv6','2012-02-29 10:39:05','2012-02-29 10:39:07',1969,1),(123,'efpqtdi2b8u1f3dn8s0hgvo9s7','2012-02-29 12:46:36','2012-02-29 12:47:28',1998,1),(124,'1l3130i52kaltbejdfhen8q5l2','2012-02-29 16:42:02','2012-02-29 16:43:05',2000,1),(125,'lrmrsrk6nf4n21mfs1b8l4ab51','2012-02-29 21:01:24','2012-02-29 21:01:50',2003,1),(126,'tai22u3fqduvehq1j71n18q4d4','2012-03-01 06:55:38','2012-03-01 07:35:41',2011,1),(127,'ejq6m7fqoo3so8tfi9gslaff87','2012-03-01 15:20:54','2012-03-01 15:21:41',2016,1),(128,'94vrbjbv3g4bhba3h50ugbkok4','2012-03-01 20:40:13','2012-03-01 20:40:14',2017,1),(129,'ka2p6l3io3lsaafgtu25af8or3','2012-03-02 09:12:11','2012-03-02 09:31:33',2050,1),(130,'kdc5dd2af38aqtbb5atflitus7','2012-03-02 09:45:34','2012-03-02 10:27:09',2052,1),(131,'pshuafe0s6v3fc3qolh3o79gk5','2012-03-02 11:15:29','2012-03-02 13:59:32',2152,1),(132,'74puvbefncgr1fohimlo0truu5','2012-03-02 12:35:53','2012-03-02 12:49:41',2120,1),(133,'v1t1moh0ka685g8fs58lo02ts4','2012-03-02 13:59:32','2012-03-02 15:06:46',2187,1),(134,'5cplvrq2ndm822frhbn978l2n2','2012-03-02 15:11:06','2012-03-02 15:11:07',2188,1),(135,'7ok9mo9jqh5ndminop4n118v66','2012-03-02 15:15:40','2012-03-02 15:22:12',2215,1),(136,'sm9u51pe4bm44ndcnb9k6v5g44','2012-03-02 20:58:25','2012-03-02 21:32:48',2301,1),(137,'5ppde8qiavrveebd3bjuarm1t1','2012-03-03 09:06:58','2012-03-03 09:10:13',2311,1); /*!40000 ALTER TABLE `log_visitor` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_visitor_info` -- DROP TABLE IF EXISTS `log_visitor_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log Visitor Info Table'; /*!40101 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,'http://sgfuji.com/shop1/index.php/install/wizard/end/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it,en-US;q=0.8,en;q=0.6',2886992395,1349856634),(2,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579465911),(3,'http://sgfuji.com/shop1/customer-service','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579465911),(4,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1381263144),(5,NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)',NULL,'it-IT',2886992395,1370364511),(6,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1','ISO-8859-1,utf-8;q=0.7,*;q=0.7','it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(7,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564834857),(8,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309458185),(9,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564834857),(10,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309458185),(11,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1370364511),(12,NULL,'Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3',NULL,'it-it',2886992395,1836579802),(13,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1381268896),(14,NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)',NULL,'it-IT',2886992395,1383189442),(15,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.11 Safari/535.19','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it,en-US;q=0.8,en;q=0.6',2886992395,1564628017),(16,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(17,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(18,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1381268896),(19,'http://sgfuji.com/shop1/catalogsearch/result/?q=test','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1381268896),(20,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.1) Gecko/20100101 Firefox/10.0.1',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(21,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.7 (KHTML, like Gecko) Chrome/16.0.912.77 Safari/535.7','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1370364511),(22,'http://sgfuji.com/shop1/finepix-av100.html','Mozilla/5.0 (Windows NT 6.1; rv:10.0.1) Gecko/20100101 Firefox/10.0.1',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(23,'http://sgfuji.com/shop1/prodotto-di-test.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1381268896),(24,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1381268896),(25,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(26,'http://sgfuji.com/shop1/plugin/method/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1381268896),(27,NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; SAMSUNG; OMNIA7)',NULL,'it-IT',2886992395,2966349539),(28,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1381268896),(29,NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)',NULL,'it-IT',2886992395,1383189442),(30,NULL,'Mozilla/5.0 (iPhone; CPU iPhone OS 5_0_1 like Mac OS X) AppleWebKit/534.46 (KHTML, like Gecko) Version/5.1 Mobile/9A405 Safari/7534.48.3',NULL,'it-it',2886992395,2536506251),(31,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1381268896),(32,NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)',NULL,'it-IT',2886992395,1383189442),(33,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1381268896),(34,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(35,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(36,NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)',NULL,'it-IT',2886992395,1370364511),(37,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(38,'http://sgfuji.com/shop1/fotocamere-digitali/fujifilm-x100.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(39,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.33 Safari/535.19','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it,en-US;q=0.8,en;q=0.6',2886992395,1564628017),(40,NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)',NULL,'it-IT',2886992395,1383189442),(41,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(42,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(43,'http://sgfuji.com/shop1/fotocamere-digitali/finepix-av100-2.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(44,NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it,en-us;q=0.7,en;q=0.3',2886992395,1382720953),(45,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(46,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(47,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(48,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(49,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(50,'http://sgfuji.com/shop1/fujifilm-x-s1.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(51,'http://sgfuji.com/shop1/fujifilm-x-s1.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(52,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1370364511),(53,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(54,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.33 Safari/535.19','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it,en-US;q=0.8,en;q=0.6',2886992395,1564628017),(55,NULL,NULL,NULL,NULL,2886992395,2886992395),(56,'http://sgfuji.com/shop1/sales/guest/form/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(57,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(58,'http://sgfuji.com/shop1/fujifilm-x-s1.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(59,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(60,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1370364511),(61,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1370364511),(62,'http://sgfuji.com/shop1/finepix-x10.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(63,NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)',NULL,'it-IT',2886992395,1383189442),(64,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(65,'http://sgfuji.com/shop1/fotocamere-digitali.html?lcd=27','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(66,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(67,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.39 Safari/535.19','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it,en-US;q=0.8,en;q=0.6',2886992395,1564628017),(68,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(69,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1370364511),(70,'http://sgfuji.com/shop1/finepix-av100-2.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(71,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(72,'http://sgfuji.com/shop1/fotocamere-digitali.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(73,'http://sgfuji.com/shop1/fotocamere-digitali.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(74,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309457622),(75,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309448206),(76,'http://sgfuji.com/shop1/accessori.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309448206),(77,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0','ISO-8859-1,utf-8;q=0.7,*;q=0.7','it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1309448206),(78,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309448206),(79,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0','ISO-8859-1,utf-8;q=0.7,*;q=0.7','it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1309448206),(80,'http://sgfuji.com/shop1/fotocamere-digitali.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309448206),(81,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.39 Safari/535.19','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it,en-US;q=0.8,en;q=0.6',2886992395,1564628017),(82,'http://sgfuji.com/shop1/fotocamere-digitali.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309448206),(83,'http://sgfuji.com/shop1/fotocamere-digitali.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309448206),(84,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.39 Safari/535.19','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it,en-US;q=0.8,en;q=0.6',2886992395,1564628017),(85,NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)',NULL,'it-IT',2886992395,1370364511),(86,'http://sgfuji.com/shop1/fotocamere-digitali.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309448206),(87,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(88,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(89,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0','ISO-8859-1,utf-8;q=0.7,*;q=0.7','it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1309448206),(90,'http://sgfuji.com/shop1/fotocamere-digitali.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309448206),(91,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(92,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.39 Safari/535.19','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it,en-US;q=0.8,en;q=0.6',2886992395,1564628017),(93,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(94,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(95,'http://sgfuji.com/shop1/catalogsearch/result/?q=assa','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1309448206),(96,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(97,'http://sgfuji.com/shop1/fotocamere-digitali.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1309448206),(98,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(99,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1370364511),(100,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(101,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:9.0.1) Gecko/20100101 Firefox/9.0.1','ISO-8859-1,utf-8;q=0.7,*;q=0.7','it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,43853628),(102,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579465540),(103,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,43853628),(104,'http://sgfuji.com/shop1/fotocamere-digitali.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579465540),(105,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579465540),(106,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(107,'http://sgfuji.com/shop1/catalogsearch/result/?q=av','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579465540),(108,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.1) Gecko/20100101 Firefox/10.0.1',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1579465540),(109,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1370364511),(110,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(111,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1370364511),(112,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(113,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579471452),(114,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1370364511),(115,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579471452),(116,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579471452),(117,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.39 Safari/535.19','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it,en-US;q=0.8,en;q=0.6',2886992395,1564628017),(118,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(119,NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)',NULL,'it-IT',2886992395,1383189442),(120,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(121,NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1370364511),(122,NULL,NULL,NULL,NULL,2886992395,2886992395),(123,'http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579471452),(124,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(125,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579471452),(126,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(127,'http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579471452),(128,'http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579471452),(129,'http://sgfuji.com/shop1/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579471452),(130,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(131,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579471452),(132,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(133,'http://sgfuji.com/shop1/checkout/onepage/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579471452),(134,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1564628017),(135,NULL,'Mozilla/5.0 (Windows NT 6.1; rv:10.0.2) Gecko/20100101 Firefox/10.0.2',NULL,'it-it,it;q=0.8,en-us;q=0.5,en;q=0.3',2886992395,1370364511),(136,'http://sgfuji.com/shop1/fotocamere-digitali/fujiflm-serie-x/fujifilm-x100.html','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579472054),(137,NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11','ISO-8859-1,utf-8;q=0.7,*;q=0.3','it-IT,it;q=0.8,en-US;q=0.6,en;q=0.4',2886992395,1579472054); /*!40000 ALTER TABLE `log_visitor_info` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `log_visitor_online` -- DROP TABLE IF EXISTS `log_visitor_online`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log Visitor Online Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_NEWSLETTER_PROBLEM_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_NLTTR_PROBLEM_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Problems'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_NEWSLETTER_QUEUE_TEMPLATE_ID_NEWSLETTER_TEMPLATE_TEMPLATE_ID` FOREIGN KEY (`template_id`) REFERENCES `newsletter_template` (`template_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue'; /*!40101 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 */; /*!40000 ALTER TABLE `newsletter_queue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_queue_link` -- DROP TABLE IF EXISTS `newsletter_queue_link`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_NEWSLETTER_QUEUE_LINK_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_NLTTR_QUEUE_LNK_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Link'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_NEWSLETTER_QUEUE_STORE_LINK_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_NLTTR_QUEUE_STORE_LNK_QUEUE_ID_NLTTR_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Store Link'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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) NOT NULL DEFAULT '' 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`), CONSTRAINT `FK_NEWSLETTER_SUBSCRIBER_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Subscriber'; /*!40101 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 */; /*!40000 ALTER TABLE `newsletter_subscriber` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletter_template` -- DROP TABLE IF EXISTS `newsletter_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Template'; /*!40101 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 */; /*!40000 ALTER TABLE `newsletter_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paypal_cert` -- DROP TABLE IF EXISTS `paypal_cert`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_PAYPAL_CERT_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Certificate Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='PayPal Payflow Link Payment Transaction'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`row_id`), KEY `IDX_PAYPAL_SETTLEMENT_REPORT_ROW_REPORT_ID` (`report_id`), CONSTRAINT `FK_E183E488F593E0DE10C6EBFFEBAC9B55` FOREIGN KEY (`report_id`) REFERENCES `paypal_settlement_report` (`report_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Row Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_PERSISTENT_SESSION_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `FK_PERSISTENT_SESSION_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Persistent Session'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_POLL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Poll'; /*!40101 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 (1,'What is your favorite color',9,0,'2012-02-13 16:57:15',NULL,1,0,NULL); /*!40000 ALTER TABLE `poll` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `poll_answer` -- DROP TABLE IF EXISTS `poll_answer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_POLL_ANSWER_POLL_ID_POLL_POLL_ID` FOREIGN KEY (`poll_id`) REFERENCES `poll` (`poll_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Poll Answers'; /*!40101 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 (1,1,'Green',4,0),(2,1,'Red',2,0),(3,1,'Black',0,0),(4,1,'Magenta',3,0); /*!40000 ALTER TABLE `poll_answer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `poll_store` -- DROP TABLE IF EXISTS `poll_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_POLL_STORE_POLL_ID_POLL_POLL_ID` FOREIGN KEY (`poll_id`) REFERENCES `poll` (`poll_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_POLL_STORE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Poll Store'; /*!40101 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 (1,1); /*!40000 ALTER TABLE `poll_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `poll_vote` -- DROP TABLE IF EXISTS `poll_vote`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_POLL_VOTE_POLL_ANSWER_ID_POLL_ANSWER_ANSWER_ID` FOREIGN KEY (`poll_answer_id`) REFERENCES `poll_answer` (`answer_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Poll Vote'; /*!40101 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,1,4,1370364511,NULL,'2012-02-13 15:57:02'),(2,1,2,1381263144,NULL,'2012-02-13 15:57:15'); /*!40000 ALTER TABLE `poll_vote` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `product_alert_price` -- DROP TABLE IF EXISTS `product_alert_price`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_PRD_ALERT_PRICE_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_PRODUCT_ALERT_PRICE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_PRODUCT_ALERT_PRICE_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Product Alert Price'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_PRD_ALERT_STOCK_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_PRODUCT_ALERT_STOCK_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_PRODUCT_ALERT_STOCK_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Product Alert Stock'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_RATING_ENTITY_ID_RATING_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `rating_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Ratings'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Rating entities'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_RATING_OPTION_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='Rating options'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_RATING_OPTION_VOTE_OPTION_ID_RATING_OPTION_OPTION_ID` FOREIGN KEY (`option_id`) REFERENCES `rating_option` (`option_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating option values'; /*!40101 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 */; /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_RATING_OPTION_VOTE_AGGREGATED_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_RATING_OPTION_VOTE_AGGREGATED_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating vote aggregated'; /*!40101 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 */; /*!40000 ALTER TABLE `rating_option_vote_aggregated` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_store` -- DROP TABLE IF EXISTS `rating_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_RATING_STORE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `FK_RATING_STORE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating Store'; /*!40101 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 */; /*!40000 ALTER TABLE `rating_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rating_title` -- DROP TABLE IF EXISTS `rating_title`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_RATING_TITLE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_RATING_TITLE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating Title'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_REPORT_CMPD_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_REPORT_CMPD_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_REPORT_COMPARED_PRODUCT_INDEX_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COMMENT='Reports Compared Product Index Table'; /*!40101 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,19,NULL,1,1,'2012-02-16 06:36:55'),(2,29,NULL,2,1,'2012-02-17 10:02:57'),(3,62,NULL,2,1,'2012-02-22 09:58:54'),(4,61,NULL,1,1,'2012-02-22 10:01:20'),(5,61,NULL,6,1,'2012-02-22 10:01:11'),(6,62,NULL,1,1,'2012-02-22 09:58:42'),(8,62,NULL,6,1,'2012-02-22 09:59:05'),(11,62,NULL,4,1,'2012-02-22 09:59:19'),(12,62,NULL,5,1,'2012-02-22 09:59:25'),(13,61,NULL,5,1,'2012-02-22 10:00:59'),(18,61,NULL,4,1,'2012-02-22 10:01:30'),(19,61,NULL,2,1,'2012-02-22 10:01:35'); /*!40000 ALTER TABLE `report_compared_product_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report_event` -- DROP TABLE IF EXISTS `report_event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_REPORT_EVENT_EVENT_TYPE_ID_REPORT_EVENT_TYPES_EVENT_TYPE_ID` FOREIGN KEY (`event_type_id`) REFERENCES `report_event_types` (`event_type_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_REPORT_EVENT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=318 DEFAULT CHARSET=utf8 COMMENT='Reports Event Table'; /*!40101 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,'2012-02-15 23:46:12',1,1,18,1,1),(2,'2012-02-15 23:48:39',1,1,18,1,1),(3,'2012-02-15 23:58:17',1,1,18,1,1),(4,'2012-02-15 23:59:03',1,1,18,1,1),(5,'2012-02-16 00:01:09',1,1,18,1,1),(6,'2012-02-16 00:02:45',1,1,18,1,1),(7,'2012-02-16 00:03:26',1,1,18,1,1),(8,'2012-02-16 06:33:05',1,1,19,1,1),(9,'2012-02-16 06:36:41',1,1,19,1,1),(10,'2012-02-16 06:36:55',3,1,19,1,1),(11,'2012-02-16 06:36:56',1,1,19,1,1),(12,'2012-02-16 06:37:11',4,1,19,1,1),(13,'2012-02-16 06:42:42',1,1,19,1,1),(14,'2012-02-16 06:47:06',1,1,19,1,1),(15,'2012-02-16 06:48:52',1,1,19,1,1),(16,'2012-02-16 06:54:51',1,1,19,1,1),(17,'2012-02-16 07:46:54',1,1,20,1,1),(18,'2012-02-16 08:14:14',1,1,21,1,1),(19,'2012-02-16 08:34:04',1,1,21,1,1),(20,'2012-02-16 09:07:13',1,1,22,1,1),(21,'2012-02-16 09:07:34',4,1,22,1,1),(22,'2012-02-16 09:08:02',1,1,22,1,1),(23,'2012-02-16 09:08:11',1,1,22,1,1),(24,'2012-02-16 09:08:17',1,1,22,1,1),(25,'2012-02-16 09:33:07',1,1,23,1,1),(26,'2012-02-16 09:34:41',1,1,23,1,1),(27,'2012-02-16 09:36:54',1,1,23,1,1),(28,'2012-02-16 09:39:24',1,1,23,1,1),(29,'2012-02-16 09:42:34',1,1,23,1,1),(30,'2012-02-16 09:43:57',1,1,22,1,1),(31,'2012-02-16 09:44:14',1,1,22,1,1),(32,'2012-02-16 10:16:31',1,1,23,1,1),(33,'2012-02-16 10:16:48',1,2,23,1,1),(34,'2012-02-16 10:17:02',1,1,23,1,1),(35,'2012-02-16 19:19:16',1,1,27,1,1),(36,'2012-02-17 10:02:14',1,2,29,1,1),(37,'2012-02-17 10:02:57',3,2,29,1,1),(38,'2012-02-17 10:02:57',1,2,29,1,1),(39,'2012-02-17 10:03:03',1,1,29,1,1),(40,'2012-02-17 10:03:12',1,1,29,1,1),(41,'2012-02-17 10:06:36',1,2,29,1,1),(42,'2012-02-17 15:00:04',1,2,32,1,1),(43,'2012-02-20 07:31:45',1,1,35,1,1),(44,'2012-02-20 07:40:03',1,5,35,1,1),(45,'2012-02-20 07:41:36',1,6,35,1,1),(46,'2012-02-20 07:41:41',1,2,35,1,1),(47,'2012-02-20 07:43:24',1,4,35,1,1),(48,'2012-02-20 11:46:43',1,4,37,1,1),(49,'2012-02-20 11:47:40',1,4,37,1,1),(50,'2012-02-20 11:57:16',1,5,37,1,1),(51,'2012-02-20 12:21:45',1,5,37,1,1),(52,'2012-02-20 12:22:55',1,5,37,1,1),(53,'2012-02-20 12:27:36',1,4,37,1,1),(54,'2012-02-20 12:28:44',1,6,37,1,1),(55,'2012-02-20 14:37:04',1,5,38,1,1),(56,'2012-02-20 15:10:28',1,4,38,1,1),(57,'2012-02-20 15:14:58',1,4,38,1,1),(58,'2012-02-20 15:16:18',1,4,38,1,1),(59,'2012-02-20 15:16:21',1,4,38,1,1),(60,'2012-02-20 15:16:30',1,4,38,1,1),(61,'2012-02-20 15:16:52',1,4,38,1,1),(62,'2012-02-20 15:17:43',1,2,38,1,1),(63,'2012-02-20 15:17:54',4,2,38,1,1),(64,'2012-02-20 15:17:58',1,2,38,1,1),(65,'2012-02-20 15:22:13',1,2,38,1,1),(66,'2012-02-20 15:45:17',1,2,43,1,1),(67,'2012-02-21 08:24:52',1,5,49,1,1),(68,'2012-02-21 12:47:14',1,6,51,1,1),(69,'2012-02-21 13:22:26',1,5,52,1,1),(70,'2012-02-21 13:22:52',4,5,52,1,1),(71,'2012-02-21 13:22:57',1,5,52,1,1),(72,'2012-02-21 13:24:17',1,4,52,1,1),(73,'2012-02-21 14:37:29',1,5,53,1,1),(74,'2012-02-21 14:42:46',1,2,54,1,1),(75,'2012-02-21 14:47:13',1,5,53,1,1),(76,'2012-02-21 14:47:32',1,5,53,1,1),(77,'2012-02-21 14:49:21',1,5,53,1,1),(78,'2012-02-21 14:49:28',1,5,56,1,1),(79,'2012-02-21 19:49:48',1,4,59,1,1),(80,'2012-02-22 09:20:50',1,5,61,1,1),(81,'2012-02-22 09:23:02',1,5,62,1,1),(82,'2012-02-22 09:28:37',4,5,61,1,1),(83,'2012-02-22 09:28:41',1,5,61,1,1),(84,'2012-02-22 09:28:53',4,5,62,1,1),(85,'2012-02-22 09:28:57',1,5,62,1,1),(86,'2012-02-22 09:36:08',1,5,61,1,1),(87,'2012-02-22 09:36:10',1,5,62,1,1),(88,'2012-02-22 09:36:23',1,5,62,1,1),(89,'2012-02-22 09:37:03',1,5,62,1,1),(90,'2012-02-22 09:41:32',1,4,62,1,1),(91,'2012-02-22 09:54:38',3,2,62,1,1),(92,'2012-02-22 09:55:06',3,1,61,1,1),(93,'2012-02-22 09:55:13',3,6,61,1,1),(94,'2012-02-22 09:55:24',3,1,62,1,1),(95,'2012-02-22 09:58:42',3,1,62,1,1),(96,'2012-02-22 09:58:48',3,6,62,1,1),(97,'2012-02-22 09:58:54',3,2,62,1,1),(98,'2012-02-22 09:59:05',3,6,62,1,1),(99,'2012-02-22 09:59:19',3,4,62,1,1),(100,'2012-02-22 09:59:25',3,5,62,1,1),(101,'2012-02-22 09:59:51',1,4,61,1,1),(102,'2012-02-22 10:00:59',3,5,61,1,1),(103,'2012-02-22 10:01:02',3,1,61,1,1),(104,'2012-02-22 10:01:03',3,6,61,1,1),(105,'2012-02-22 10:01:12',3,6,61,1,1),(106,'2012-02-22 10:01:20',3,1,61,1,1),(107,'2012-02-22 10:01:30',3,4,61,1,1),(108,'2012-02-22 10:01:35',3,2,61,1,1),(109,'2012-02-22 10:06:03',1,2,61,1,1),(110,'2012-02-22 10:06:09',1,2,61,1,1),(111,'2012-02-22 10:22:57',1,6,61,1,1),(112,'2012-02-22 13:24:02',1,5,63,1,1),(113,'2012-02-22 13:28:16',1,4,63,1,1),(114,'2012-02-22 13:30:39',4,2,63,1,1),(115,'2012-02-22 13:34:25',1,2,63,1,1),(116,'2012-02-22 18:25:12',1,5,64,1,1),(117,'2012-02-22 18:26:55',1,5,64,1,1),(118,'2012-02-22 18:32:07',1,5,64,1,1),(119,'2012-02-22 18:33:44',1,5,64,1,1),(120,'2012-02-22 18:36:42',1,5,64,1,1),(121,'2012-02-22 18:42:13',1,5,64,1,1),(122,'2012-02-22 18:49:54',1,5,64,1,1),(123,'2012-02-22 18:50:28',1,5,64,1,1),(124,'2012-02-22 18:51:01',1,5,64,1,1),(125,'2012-02-22 18:51:44',1,5,64,1,1),(126,'2012-02-22 18:56:44',1,5,64,1,1),(127,'2012-02-22 19:09:49',1,5,64,1,1),(128,'2012-02-23 07:00:51',1,4,65,1,1),(129,'2012-02-23 07:01:51',4,4,65,1,1),(130,'2012-02-23 07:01:53',1,4,66,1,1),(131,'2012-02-23 07:01:57',4,4,66,1,1),(132,'2012-02-23 07:12:15',1,4,65,1,1),(133,'2012-02-23 07:30:02',1,4,66,1,1),(134,'2012-02-23 07:47:58',1,4,66,1,1),(135,'2012-02-23 07:48:04',1,4,66,1,1),(136,'2012-02-23 07:48:56',4,4,66,1,1),(137,'2012-02-23 07:58:28',1,6,66,1,1),(138,'2012-02-23 07:58:32',4,6,66,1,1),(139,'2012-02-23 08:01:23',1,4,65,1,1),(140,'2012-02-23 08:01:54',1,5,65,1,1),(141,'2012-02-23 08:02:00',4,5,65,1,1),(142,'2012-02-23 08:03:00',4,4,66,1,1),(143,'2012-02-23 08:09:49',1,6,65,1,1),(144,'2012-02-23 08:09:53',4,6,65,1,1),(145,'2012-02-23 08:31:21',1,5,66,1,1),(146,'2012-02-23 08:31:36',1,6,66,1,1),(147,'2012-02-23 08:32:22',1,5,66,1,1),(148,'2012-02-23 08:32:59',1,4,66,1,1),(149,'2012-02-23 08:34:19',1,5,67,1,1),(150,'2012-02-23 08:38:27',1,4,68,1,1),(151,'2012-02-23 08:38:42',1,6,68,1,1),(152,'2012-02-23 08:41:30',1,5,65,1,1),(153,'2012-02-23 08:41:42',1,5,65,1,1),(154,'2012-02-23 08:50:37',1,5,65,1,1),(155,'2012-02-23 08:50:42',1,5,65,1,1),(156,'2012-02-23 08:55:36',1,5,69,1,1),(157,'2012-02-23 08:56:08',1,5,69,1,1),(158,'2012-02-23 08:56:15',1,6,69,1,1),(159,'2012-02-23 08:56:24',1,5,69,1,1),(160,'2012-02-23 09:21:23',1,2,65,1,1),(161,'2012-02-23 19:37:40',1,6,71,1,1),(162,'2012-02-27 13:18:04',1,6,96,1,1),(163,'2012-02-27 15:48:21',1,5,99,1,1),(164,'2012-02-27 15:48:44',1,2,99,1,1),(165,'2012-02-27 15:49:01',1,2,97,1,1),(166,'2012-02-27 15:49:30',4,2,99,1,1),(167,'2012-02-27 15:49:35',4,4,97,1,1),(168,'2012-02-27 20:59:28',1,6,101,1,1),(169,'2012-02-28 10:19:41',1,2,106,1,1),(170,'2012-02-29 06:05:22',1,5,116,1,1),(171,'2012-02-29 06:06:49',1,5,116,1,1),(172,'2012-02-29 06:11:24',1,5,116,1,1),(173,'2012-02-29 06:19:43',1,5,116,1,1),(174,'2012-02-29 06:20:46',1,5,116,1,1),(175,'2012-02-29 06:21:55',1,5,116,1,1),(176,'2012-02-29 06:22:48',1,5,116,1,1),(177,'2012-02-29 07:02:52',1,5,116,1,1),(178,'2012-02-29 07:09:37',1,5,116,1,1),(179,'2012-02-29 07:11:57',1,5,116,1,1),(180,'2012-02-29 07:13:25',1,5,116,1,1),(181,'2012-02-29 07:46:40',1,2,116,1,1),(182,'2012-02-29 07:46:42',1,6,117,1,1),(183,'2012-02-29 07:47:03',1,2,116,1,1),(184,'2012-02-29 07:47:25',1,2,117,1,1),(185,'2012-02-29 07:47:28',1,6,116,1,1),(186,'2012-02-29 07:50:19',1,6,118,1,1),(187,'2012-02-29 07:50:23',1,5,119,1,1),(188,'2012-02-29 07:51:44',1,4,118,1,1),(189,'2012-02-29 07:51:47',1,4,119,1,1),(190,'2012-02-29 07:54:51',1,6,116,1,1),(191,'2012-02-29 07:55:52',1,6,116,1,1),(192,'2012-02-29 07:56:31',1,2,120,1,1),(193,'2012-02-29 07:57:34',1,2,120,1,1),(194,'2012-02-29 08:00:08',1,2,120,1,1),(195,'2012-02-29 08:01:53',1,2,120,1,1),(196,'2012-02-29 08:02:03',1,6,116,1,1),(197,'2012-02-29 08:02:31',1,6,116,1,1),(198,'2012-02-29 08:02:40',1,2,120,1,1),(199,'2012-02-29 08:03:24',1,2,120,1,1),(200,'2012-02-29 08:04:17',1,2,120,1,1),(201,'2012-02-29 08:06:44',1,2,120,1,1),(202,'2012-02-29 08:09:39',1,6,116,1,1),(203,'2012-02-29 08:13:06',1,2,117,1,1),(204,'2012-02-29 08:24:08',1,6,116,1,1),(205,'2012-02-29 08:25:22',1,6,116,1,1),(206,'2012-02-29 08:29:33',1,2,118,1,1),(207,'2012-02-29 08:29:38',1,6,116,1,1),(208,'2012-02-29 08:30:20',1,6,116,1,1),(209,'2012-02-29 08:30:27',1,5,118,1,1),(210,'2012-02-29 08:30:38',1,4,118,1,1),(211,'2012-02-29 08:30:42',1,6,118,1,1),(212,'2012-02-29 08:30:44',1,2,118,1,1),(213,'2012-02-29 08:31:06',1,6,116,1,1),(214,'2012-02-29 08:31:11',1,2,118,1,1),(215,'2012-02-29 08:31:51',1,2,116,1,1),(216,'2012-02-29 08:32:19',1,2,116,1,1),(217,'2012-02-29 08:32:37',1,6,121,1,1),(218,'2012-02-29 08:32:49',1,6,118,1,1),(219,'2012-02-29 08:34:55',1,6,116,1,1),(220,'2012-02-29 08:36:49',1,6,116,1,1),(221,'2012-02-29 08:47:31',1,2,118,1,1),(222,'2012-02-29 08:49:03',1,2,118,1,1),(223,'2012-02-29 08:49:32',1,6,116,1,1),(224,'2012-02-29 08:52:42',1,6,116,1,1),(225,'2012-02-29 08:53:20',1,6,116,1,1),(226,'2012-02-29 08:53:27',1,6,121,1,1),(227,'2012-02-29 08:54:11',1,6,116,1,1),(228,'2012-02-29 08:54:42',1,6,116,1,1),(229,'2012-02-29 08:56:34',1,6,116,1,1),(230,'2012-02-29 08:59:09',1,6,116,1,1),(231,'2012-02-29 09:00:01',1,4,121,1,1),(232,'2012-02-29 09:00:46',1,4,121,1,1),(233,'2012-02-29 09:01:13',1,4,121,1,1),(234,'2012-02-29 09:01:27',1,4,116,1,1),(235,'2012-02-29 09:01:43',1,6,121,1,1),(236,'2012-02-29 09:01:47',1,6,116,1,1),(237,'2012-02-29 09:05:56',1,6,121,1,1),(238,'2012-02-29 09:11:24',1,6,121,1,1),(239,'2012-02-29 09:12:02',1,6,121,1,1),(240,'2012-02-29 09:12:23',1,6,116,1,1),(241,'2012-02-29 09:13:16',1,6,121,1,1),(242,'2012-02-29 09:13:38',1,6,121,1,1),(243,'2012-02-29 09:14:07',1,6,116,1,1),(244,'2012-02-29 09:14:11',1,6,121,1,1),(245,'2012-02-29 09:15:14',1,6,116,1,1),(246,'2012-02-29 09:16:17',1,5,121,1,1),(247,'2012-02-29 09:16:23',1,5,116,1,1),(248,'2012-02-29 09:17:01',1,6,116,1,1),(249,'2012-02-29 09:17:23',1,6,121,1,1),(250,'2012-02-29 09:17:36',1,6,121,1,1),(251,'2012-02-29 09:18:04',1,6,116,1,1),(252,'2012-02-29 09:18:14',1,6,116,1,1),(253,'2012-02-29 09:18:15',1,6,121,1,1),(254,'2012-02-29 09:23:45',1,6,118,1,1),(255,'2012-02-29 09:41:45',1,6,121,1,1),(256,'2012-02-29 09:42:54',1,6,121,1,1),(257,'2012-02-29 09:43:55',1,6,118,1,1),(258,'2012-02-29 09:44:25',1,6,121,1,1),(259,'2012-02-29 09:47:49',1,6,121,1,1),(260,'2012-02-29 09:50:14',1,6,121,1,1),(261,'2012-02-29 09:50:30',1,6,118,1,1),(262,'2012-02-29 09:55:16',1,6,121,1,1),(263,'2012-02-29 09:58:05',1,6,121,1,1),(264,'2012-02-29 09:58:46',1,6,121,1,1),(265,'2012-02-29 10:00:00',1,6,121,1,1),(266,'2012-02-29 10:01:01',1,6,121,1,1),(267,'2012-02-29 10:01:20',1,6,118,1,1),(268,'2012-02-29 10:03:41',1,6,121,1,1),(269,'2012-02-29 10:04:19',1,6,121,1,1),(270,'2012-02-29 10:04:29',1,6,121,1,1),(271,'2012-02-29 10:05:31',1,6,121,1,1),(272,'2012-02-29 10:06:07',1,6,118,1,1),(273,'2012-02-29 10:06:33',1,6,121,1,1),(274,'2012-02-29 10:06:46',1,6,118,1,1),(275,'2012-02-29 10:07:07',1,6,118,1,1),(276,'2012-02-29 10:07:25',1,6,121,1,1),(277,'2012-02-29 10:09:28',1,6,121,1,1),(278,'2012-02-29 10:10:42',1,6,118,1,1),(279,'2012-02-29 10:12:31',1,6,118,1,1),(280,'2012-02-29 10:13:31',1,6,121,1,1),(281,'2012-02-29 10:14:37',1,6,121,1,1),(282,'2012-02-29 10:14:57',1,6,116,1,1),(283,'2012-02-29 10:15:06',1,6,118,1,1),(284,'2012-02-29 10:18:01',1,6,116,1,1),(285,'2012-02-29 11:09:13',1,6,118,1,1),(286,'2012-02-29 11:09:34',1,6,116,1,1),(287,'2012-02-29 12:02:14',1,6,118,1,1),(288,'2012-02-29 12:46:53',1,6,123,1,1),(289,'2012-02-29 21:01:48',1,6,125,1,1),(290,'2012-03-01 06:56:26',1,6,126,1,1),(291,'2012-03-01 06:58:04',4,6,126,1,1),(292,'2012-03-01 06:58:17',1,6,126,1,1),(293,'2012-03-01 07:35:39',1,6,126,1,1),(294,'2012-03-01 07:35:40',1,6,126,1,1),(295,'2012-03-01 15:21:16',1,4,127,1,1),(296,'2012-03-01 15:21:39',1,6,127,1,1),(297,'2012-03-02 09:24:23',4,6,129,1,1),(298,'2012-03-02 09:28:59',4,6,129,1,1),(299,'2012-03-02 11:52:13',1,6,131,1,1),(300,'2012-03-02 12:36:38',1,2,132,1,1),(301,'2012-03-02 12:36:43',4,2,132,1,1),(302,'2012-03-02 12:37:11',4,6,131,1,1),(303,'2012-03-02 12:48:18',4,6,132,1,1),(304,'2012-03-02 13:18:45',4,6,1,0,1),(305,'2012-03-02 13:53:04',1,6,1,0,1),(306,'2012-03-02 13:53:19',4,6,1,0,1),(307,'2012-03-02 14:03:14',4,6,133,1,1),(308,'2012-03-02 15:06:39',1,6,133,1,1),(309,'2012-03-02 15:16:07',1,6,135,1,1),(310,'2012-03-02 15:16:58',1,6,135,1,1),(311,'2012-03-02 15:17:17',4,6,135,1,1),(312,'2012-03-02 15:22:11',1,6,135,1,1),(313,'2012-03-02 20:58:26',4,6,136,1,1),(314,'2012-03-02 21:10:38',1,1,136,1,1),(315,'2012-03-02 21:11:31',4,4,136,1,1),(316,'2012-03-02 21:32:30',4,6,1,0,1),(317,'2012-03-03 09:07:12',4,4,137,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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Reports Event Type Table'; /*!40101 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_index` -- DROP TABLE IF EXISTS `report_viewed_product_index`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_REPORT_VIEWED_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_REPORT_VIEWED_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_REPORT_VIEWED_PRODUCT_INDEX_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=268 DEFAULT CHARSET=utf8 COMMENT='Reports Viewed Product Index Table'; /*!40101 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,18,NULL,1,1,'2012-02-16 00:03:26'),(8,19,NULL,1,1,'2012-02-16 06:54:51'),(15,20,NULL,1,1,'2012-02-16 07:46:54'),(16,21,NULL,1,1,'2012-02-16 08:34:04'),(18,22,NULL,1,1,'2012-02-16 09:44:14'),(22,23,NULL,1,1,'2012-02-16 10:17:02'),(30,23,NULL,2,1,'2012-02-16 10:16:48'),(32,27,NULL,1,1,'2012-02-16 19:19:16'),(33,29,NULL,2,1,'2012-02-17 10:06:36'),(35,29,NULL,1,1,'2012-02-17 10:03:12'),(38,32,NULL,2,1,'2012-02-17 15:00:03'),(39,35,NULL,1,1,'2012-02-20 07:31:45'),(40,35,NULL,5,1,'2012-02-20 07:40:03'),(41,35,NULL,6,1,'2012-02-20 07:41:36'),(42,35,NULL,2,1,'2012-02-20 07:41:41'),(43,35,NULL,4,1,'2012-02-20 07:43:24'),(44,37,NULL,4,1,'2012-02-20 12:27:36'),(46,37,NULL,5,1,'2012-02-20 12:22:55'),(50,37,NULL,6,1,'2012-02-20 12:28:44'),(51,38,NULL,5,1,'2012-02-20 14:37:04'),(52,38,NULL,4,1,'2012-02-20 15:16:52'),(58,38,NULL,2,1,'2012-02-20 15:22:13'),(61,43,NULL,2,1,'2012-02-20 15:45:17'),(62,49,NULL,5,1,'2012-02-21 08:24:52'),(63,51,NULL,6,1,'2012-02-21 12:47:14'),(64,52,NULL,5,1,'2012-02-21 13:22:57'),(66,52,NULL,4,1,'2012-02-21 13:24:17'),(67,53,NULL,5,1,'2012-02-21 14:49:21'),(68,54,NULL,2,1,'2012-02-21 14:42:46'),(72,56,NULL,5,1,'2012-02-21 14:49:28'),(73,59,NULL,4,1,'2012-02-21 19:49:48'),(74,61,NULL,5,1,'2012-02-22 09:36:08'),(75,62,NULL,5,1,'2012-02-22 09:37:03'),(82,62,NULL,4,1,'2012-02-22 09:41:32'),(83,61,NULL,4,1,'2012-02-22 09:59:51'),(84,61,NULL,2,1,'2012-02-22 10:06:09'),(86,61,NULL,6,1,'2012-02-22 10:22:57'),(87,63,NULL,5,1,'2012-02-22 13:24:02'),(88,63,NULL,4,1,'2012-02-22 13:28:16'),(89,63,NULL,2,1,'2012-02-22 13:34:25'),(90,64,NULL,5,1,'2012-02-22 19:09:49'),(102,65,NULL,4,1,'2012-02-23 08:01:23'),(103,66,NULL,4,1,'2012-02-23 08:32:59'),(108,66,NULL,6,1,'2012-02-23 08:31:36'),(110,65,NULL,5,1,'2012-02-23 08:50:42'),(111,65,NULL,6,1,'2012-02-23 08:09:49'),(112,66,NULL,5,1,'2012-02-23 08:32:22'),(116,67,NULL,5,1,'2012-02-23 08:34:19'),(117,68,NULL,4,1,'2012-02-23 08:38:27'),(118,68,NULL,6,1,'2012-02-23 08:38:41'),(123,69,NULL,5,1,'2012-02-23 08:56:24'),(125,69,NULL,6,1,'2012-02-23 08:56:15'),(127,65,NULL,2,1,'2012-02-23 09:21:23'),(128,71,NULL,6,1,'2012-02-23 19:37:40'),(129,96,NULL,6,1,'2012-02-27 13:18:04'),(130,99,NULL,5,1,'2012-02-27 15:48:21'),(131,99,NULL,2,1,'2012-02-27 15:48:44'),(132,97,NULL,2,1,'2012-02-27 15:49:01'),(133,101,NULL,6,1,'2012-02-27 20:59:28'),(134,106,NULL,2,1,'2012-02-28 10:19:41'),(135,116,NULL,5,1,'2012-02-29 09:16:23'),(146,116,NULL,2,1,'2012-02-29 08:32:19'),(147,117,NULL,6,1,'2012-02-29 07:46:42'),(149,117,NULL,2,1,'2012-02-29 08:13:06'),(150,116,NULL,6,1,'2012-02-29 11:09:34'),(151,118,NULL,6,1,'2012-02-29 12:02:14'),(152,119,NULL,5,1,'2012-02-29 07:50:23'),(153,118,NULL,4,1,'2012-02-29 08:30:38'),(154,119,NULL,4,1,'2012-02-29 07:51:47'),(157,120,NULL,2,1,'2012-02-29 08:06:44'),(171,118,NULL,2,1,'2012-02-29 08:49:03'),(174,118,NULL,5,1,'2012-02-29 08:30:27'),(182,121,NULL,6,1,'2012-02-29 10:14:37'),(196,121,NULL,4,1,'2012-02-29 09:01:13'),(199,116,NULL,4,1,'2012-02-29 09:01:27'),(211,121,NULL,5,1,'2012-02-29 09:16:17'),(253,123,NULL,6,1,'2012-02-29 12:46:53'),(254,125,NULL,6,1,'2012-02-29 21:01:48'),(255,126,NULL,6,1,'2012-03-01 07:35:40'),(259,127,NULL,4,1,'2012-03-01 15:21:15'),(260,127,NULL,6,1,'2012-03-01 15:21:39'),(261,NULL,1,6,1,'2012-03-02 14:59:31'),(262,132,NULL,2,1,'2012-03-02 12:36:38'),(263,133,NULL,6,1,'2012-03-02 15:06:39'),(264,135,NULL,6,1,'2012-03-02 15:22:07'),(267,136,1,1,1,'2012-03-02 21:30:14'); /*!40000 ALTER TABLE `report_viewed_product_index` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review` -- DROP TABLE IF EXISTS `review`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_REVIEW_ENTITY_ID_REVIEW_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `review_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_REVIEW_STATUS_ID_REVIEW_STATUS_STATUS_ID` FOREIGN KEY (`status_id`) REFERENCES `review_status` (`status_id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review base information'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `review` -- LOCK TABLES `review` WRITE; /*!40000 ALTER TABLE `review` DISABLE KEYS */; /*!40000 ALTER TABLE `review` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_detail` -- DROP TABLE IF EXISTS `review_detail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_REVIEW_DETAIL_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `FK_REVIEW_DETAIL_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_REVIEW_DETAIL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review detail information'; /*!40101 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 */; /*!40000 ALTER TABLE `review_detail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_entity` -- DROP TABLE IF EXISTS `review_entity`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Review entities'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_REVIEW_ENTITY_SUMMARY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review aggregates'; /*!40101 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 */; /*!40000 ALTER TABLE `review_entity_summary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `review_status` -- DROP TABLE IF EXISTS `review_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Review statuses'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_REVIEW_STORE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_REVIEW_STORE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review Store'; /*!40101 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 */; /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_BESTSELLERS_AGGRED_DAILY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_BESTSELLERS_AGGRED_DAILY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Daily'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_BESTSELLERS_AGGRED_MONTHLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_BESTSELLERS_AGGRED_MONTHLY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Monthly'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_BESTSELLERS_AGGRED_YEARLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_BESTSELLERS_AGGRED_YEARLY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Yearly'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_SALES_BILLING_AGREEMENT_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_BILLING_AGREEMENT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_BILLING_AGRT_ORDER_AGRT_ID_SALES_BILLING_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `sales_billing_agreement` (`agreement_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_BILLING_AGRT_ORDER_ORDER_ID_SALES_FLAT_ORDER_ENTT_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement Order'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', `base_customer_balance_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Customer Balance Amount', `customer_balance_amount` decimal(12,4) DEFAULT NULL COMMENT 'Customer Balance Amount', `bs_customer_bal_total_refunded` decimal(12,4) DEFAULT NULL COMMENT 'Bs Customer Bal Total Refunded', `customer_bal_total_refunded` decimal(12,4) DEFAULT NULL COMMENT 'Customer Bal Total Refunded', `base_gift_cards_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Gift Cards Amount', `gift_cards_amount` decimal(12,4) DEFAULT NULL COMMENT 'Gift Cards Amount', `base_reward_currency_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Reward Currency Amount', `reward_currency_amount` decimal(12,4) DEFAULT NULL COMMENT 'Reward Currency Amount', `reward_points_balance` int(11) DEFAULT NULL COMMENT 'Reward Points Balance', `reward_points_balance_refund` int(11) DEFAULT NULL COMMENT 'Reward Points Balance Refund', 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`), CONSTRAINT `FK_SALES_FLAT_CREDITMEMO_ORDER_ID_SALES_FLAT_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_CREDITMEMO_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_B0FCB0B5467075BE63D474F2CD5F7804` FOREIGN KEY (`parent_id`) REFERENCES `sales_flat_creditmemo` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Comment'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_78C711B225167A11CC077B03D1C8E1CC` FOREIGN KEY (`entity_id`) REFERENCES `sales_flat_creditmemo` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_CREDITMEMO_GRID_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Grid'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', `gomage_gift_wrap` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Gift Wrap', `gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Wrap Amount', `base_gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Wrap Amount', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_CREDITMEMO_ITEM_PARENT_ID` (`parent_id`), CONSTRAINT `FK_306DAC836C699F0B5E13BE486557AC8A` FOREIGN KEY (`parent_id`) REFERENCES `sales_flat_creditmemo` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Item'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', `base_customer_balance_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Customer Balance Amount', `customer_balance_amount` decimal(12,4) DEFAULT NULL COMMENT 'Customer Balance Amount', `base_gift_cards_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Gift Cards Amount', `gift_cards_amount` decimal(12,4) DEFAULT NULL COMMENT 'Gift Cards Amount', `base_reward_currency_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Reward Currency Amount', `reward_currency_amount` decimal(12,4) DEFAULT NULL COMMENT 'Reward Currency Amount', `reward_points_balance` int(11) DEFAULT NULL COMMENT 'Reward Points Balance', 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`), CONSTRAINT `FK_SALES_FLAT_INVOICE_ORDER_ID_SALES_FLAT_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_INVOICE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_5C4B36BBE5231A76AB8018B281ED50BC` FOREIGN KEY (`parent_id`) REFERENCES `sales_flat_invoice` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Comment'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_FLAT_INVOICE_GRID_ENTT_ID_SALES_FLAT_INVOICE_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `sales_flat_invoice` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_INVOICE_GRID_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Grid'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_FLAT_INVOICE_ITEM_PARENT_ID_SALES_FLAT_INVOICE_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_flat_invoice` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Item'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', `paypal_ipn_customer_notified` int(11) DEFAULT '0' COMMENT 'Paypal Ipn Customer Notified', `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message Id', `base_customer_balance_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Customer Balance Amount', `customer_balance_amount` decimal(12,4) DEFAULT NULL COMMENT 'Customer Balance Amount', `base_customer_balance_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Base Customer Balance Invoiced', `customer_balance_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Customer Balance Invoiced', `base_customer_balance_refunded` decimal(12,4) DEFAULT NULL COMMENT 'Base Customer Balance Refunded', `customer_balance_refunded` decimal(12,4) DEFAULT NULL COMMENT 'Customer Balance Refunded', `bs_customer_bal_total_refunded` decimal(12,4) DEFAULT NULL COMMENT 'Bs Customer Bal Total Refunded', `customer_bal_total_refunded` decimal(12,4) DEFAULT NULL COMMENT 'Customer Bal Total Refunded', `gift_cards` text COMMENT 'Gift Cards', `base_gift_cards_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Gift Cards Amount', `gift_cards_amount` decimal(12,4) DEFAULT NULL COMMENT 'Gift Cards Amount', `base_gift_cards_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Base Gift Cards Invoiced', `gift_cards_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Gift Cards Invoiced', `base_gift_cards_refunded` decimal(12,4) DEFAULT NULL COMMENT 'Base Gift Cards Refunded', `gift_cards_refunded` decimal(12,4) DEFAULT NULL COMMENT 'Gift Cards Refunded', `reward_points_balance` int(11) DEFAULT NULL COMMENT 'Reward Points Balance', `base_reward_currency_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Reward Currency Amount', `reward_currency_amount` decimal(12,4) DEFAULT NULL COMMENT 'Reward Currency Amount', `base_rwrd_crrncy_amt_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Base Rwrd Crrncy Amt Invoiced', `rwrd_currency_amount_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Rwrd Currency Amount Invoiced', `base_rwrd_crrncy_amnt_refnded` decimal(12,4) DEFAULT NULL COMMENT 'Base Rwrd Crrncy Amnt Refnded', `rwrd_crrncy_amnt_refunded` decimal(12,4) DEFAULT NULL COMMENT 'Rwrd Crrncy Amnt Refunded', `reward_points_balance_refund` int(11) DEFAULT NULL COMMENT 'Reward Points Balance Refund', `reward_points_balance_refunded` int(11) DEFAULT NULL COMMENT 'Reward Points Balance Refunded', `reward_salesrule_points` int(11) DEFAULT NULL COMMENT 'Reward Salesrule Points', `gomage_checkout_customer_comment` text COMMENT 'Customer Comment', `gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Wrap Amount', `gomage_gift_wrap_canceled` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Canceled Wrap Amount', `gomage_gift_wrap_invoiced` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Invoiced Wrap Amount', `gomage_gift_wrap_refunded` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Refunded Wrap Amount', `base_gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Wrap Amount', `base_gomage_gift_wrap_canceled` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Canceled Wrap Amount', `base_gomage_gift_wrap_invoiced` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Invoiced Wrap Amount', `base_gomage_gift_wrap_refunded` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Refunded Wrap Amount', `gomage_deliverydate` datetime DEFAULT NULL COMMENT 'Delivery Date', `gomage_deliverydate_formated` varchar(128) DEFAULT NULL COMMENT 'Delivery Date Formated', 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`), CONSTRAINT `FK_SALES_FLAT_ORDER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_ORDER_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order'; /*!40101 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 */; INSERT INTO `sales_flat_order` VALUES (1,'pending','pending',NULL,'059b9e','Flat Rate - Fixed',0,1,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,'1.0000','1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'1.0000','1.0000','578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0000',NULL,NULL,NULL,1,1,1,0,NULL,NULL,NULL,NULL,NULL,13,2,NULL,NULL,NULL,NULL,'0.0000','700.0000',NULL,NULL,'0.0000','700.0000',NULL,'1.0000',NULL,'100000001',NULL,'EUR','staff@tresoldi.net','Paolo','Rossi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'94.36.210.92','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2012-03-02 09:27:06','2012-03-02 09:27:07',1,NULL,'0.0000','0.0000','0.0000','0.0000',NULL,NULL,NULL,NULL,'5.0000','5.0000',0,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,'a:0:{}','0.0000','0.0000',NULL,NULL,NULL,NULL,0,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,NULL),(2,'canceled','canceled',NULL,'9a3c10','Flat Rate - Fixed',0,1,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,'1.0000','1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'1.0000','1.0000','578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0000',NULL,NULL,NULL,1,1,3,0,NULL,0,NULL,NULL,NULL,14,4,NULL,NULL,NULL,NULL,'0.0000','700.0000','705.0000',NULL,'0.0000','700.0000','705.0000','1.0000',NULL,'100000002',NULL,'EUR','staff@tresoldi.net','Paolo','Verdi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'94.36.210.92','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2012-03-02 09:31:32','2012-03-02 09:33:24',1,NULL,'0.0000','0.0000','0.0000','0.0000',NULL,NULL,NULL,NULL,'5.0000','5.0000',0,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,'a:0:{}','0.0000','0.0000',NULL,NULL,NULL,NULL,0,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,NULL),(3,'canceled','canceled',NULL,'ff2189','Flat Rate - Fixed',0,1,NULL,'0.0000',NULL,NULL,NULL,'105.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'82.6400',NULL,NULL,NULL,'17.3600',NULL,NULL,NULL,'1.0000','1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,'105.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'1.0000','1.0000','82.6400',NULL,NULL,NULL,'17.3600',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0000',NULL,NULL,NULL,1,1,5,0,NULL,0,NULL,NULL,NULL,15,6,NULL,NULL,NULL,NULL,'0.0000','100.0000','105.0000',NULL,'0.0000','100.0000','105.0000','1.0000',NULL,'100000003',NULL,'EUR','higgly@ymail.com','Mario','Rossi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'93.66.84.49','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2012-03-02 12:37:56','2012-03-02 12:40:33',1,NULL,'0.0000','0.0000','0.0000','0.0000',NULL,NULL,NULL,NULL,'5.0000','5.0000',0,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,'a:0:{}','0.0000','0.0000',NULL,NULL,NULL,NULL,0,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,NULL),(4,'canceled','canceled',NULL,'b6024e','Flat Rate - Fixed',0,1,1,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,'1.0000','1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'1.0000','1.0000','578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0000',NULL,NULL,NULL,0,1,7,1,NULL,0,NULL,NULL,NULL,16,8,NULL,NULL,NULL,NULL,'0.0000','700.0000','705.0000',NULL,'0.0000','700.0000','705.0000','1.0000',NULL,'100000004',NULL,'EUR','staff@tresoldi.net','stefano','tresoldi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'94.36.210.92','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2012-03-02 12:47:34','2012-03-02 12:49:39',1,NULL,'0.0000','0.0000','0.0000','0.0000',NULL,NULL,NULL,NULL,'5.0000','5.0000',0,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,'a:0:{}','0.0000','0.0000',NULL,NULL,NULL,NULL,0,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,NULL),(5,'canceled','canceled',NULL,'53c38e','Flat Rate - Fixed',0,1,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,'1.0000','1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'1.0000','1.0000','578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0000',NULL,NULL,NULL,1,1,9,0,NULL,0,NULL,NULL,NULL,17,10,NULL,NULL,NULL,NULL,'0.0000','700.0000','705.0000',NULL,'0.0000','700.0000','705.0000','1.0000',NULL,'100000005',NULL,'EUR','higgly@ymail.com','Mario','Rossi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'93.66.84.49','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2012-03-02 12:49:33','2012-03-02 12:51:23',1,NULL,'0.0000','0.0000','0.0000','0.0000',NULL,NULL,NULL,NULL,'5.0000','5.0000',0,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,'a:0:{}','0.0000','0.0000',NULL,NULL,NULL,NULL,0,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,NULL),(6,'processing','processing',NULL,'e7a833','Flat Rate - Fixed',0,1,1,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,'1.0000','1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'1.0000','1.0000','578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0000',NULL,NULL,NULL,0,1,11,1,NULL,1,NULL,NULL,NULL,18,12,NULL,NULL,NULL,NULL,'0.0000','700.0000','705.0000',NULL,'0.0000','700.0000','705.0000','1.0000',NULL,'100000006',NULL,'EUR','staff@tresoldi.net','stefano','tresoldi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'94.36.210.92','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2012-03-02 13:23:46','2012-03-02 13:29:52',1,NULL,'0.0000','0.0000','0.0000','0.0000',NULL,NULL,NULL,NULL,'5.0000','5.0000',0,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,'a:0:{}','0.0000','0.0000',NULL,NULL,NULL,NULL,0,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,NULL),(7,'processing','processing',NULL,'9d1ce8','Flat Rate - Fixed',0,1,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,'1.0000','1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'1.0000','1.0000','578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0000',NULL,NULL,NULL,1,1,13,0,NULL,1,NULL,NULL,NULL,20,14,NULL,NULL,NULL,NULL,'0.0000','700.0000','705.0000',NULL,'0.0000','700.0000','705.0000','1.0000',NULL,'100000007',NULL,'EUR','staff@tresoldi.net','marco ','Mariani',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'94.36.210.92','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2012-03-02 14:07:28','2012-03-02 14:08:48',1,NULL,'0.0000','0.0000','0.0000','0.0000',NULL,NULL,NULL,NULL,'5.0000','5.0000',0,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,'a:0:{}','0.0000','0.0000',NULL,NULL,NULL,NULL,0,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,NULL),(8,'canceled','canceled',NULL,'cf9d5d','Flat Rate - Fixed',0,1,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,'1.0000','1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,'705.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'1.0000','1.0000','578.5100',NULL,NULL,NULL,'121.4900',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1.0000',NULL,NULL,NULL,1,1,15,0,NULL,0,NULL,NULL,NULL,21,16,NULL,NULL,NULL,NULL,'0.0000','700.0000','705.0000',NULL,'0.0000','700.0000','705.0000','1.0000',NULL,'100000008',NULL,'EUR','info@stefanogandini.it','stefano','gandini',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'81.174.26.95','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2012-03-02 15:19:13','2012-03-02 15:20:50',1,NULL,'0.0000','0.0000','0.0000','0.0000',NULL,NULL,NULL,NULL,'5.0000','5.0000',0,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,'a:0:{}','0.0000','0.0000',NULL,NULL,NULL,NULL,0,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,NULL),(9,'processing','processing',NULL,'1830e6','A mezzo corriere - Costo di spedizione',0,1,1,'0.0000',NULL,NULL,NULL,'2105.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'1735.5400',NULL,NULL,NULL,'364.4600',NULL,NULL,NULL,'1.0000','1.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000',NULL,NULL,NULL,'2105.0000','5.0000',NULL,NULL,NULL,'0.0000',NULL,'1.0000','1.0000','1735.5400',NULL,NULL,NULL,'364.4600',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'3.0000',NULL,NULL,NULL,0,1,17,1,NULL,1,NULL,NULL,NULL,19,18,NULL,NULL,NULL,NULL,'0.0000','2100.0000','2105.0000',NULL,'0.0000','2100.0000','2105.0000','3.0000',NULL,'100000009',NULL,'EUR','staff@tresoldi.net','stefano','tresoldi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'94.36.212.182','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2012-03-02 21:30:44','2012-03-02 21:31:40',1,NULL,'0.0000','0.0000','0.0000','0.0000',NULL,NULL,NULL,NULL,'5.0000','5.0000',0,NULL,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,'a:0:{}','0.0000','0.0000',NULL,NULL,NULL,NULL,0,'0.0000','0.0000',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000',NULL,NULL); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', PRIMARY KEY (`entity_id`), KEY `IDX_SALES_FLAT_ORDER_ADDRESS_PARENT_ID` (`parent_id`), CONSTRAINT `FK_SALES_FLAT_ORDER_ADDRESS_PARENT_ID_SALES_FLAT_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Address'; /*!40101 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 */; INSERT INTO `sales_flat_order_address` VALUES (1,1,NULL,NULL,NULL,NULL,NULL,'MB','20052','Rossi','Via dei Macellai, 22','Monza','staff@tresoldi.net','123123','IT','Paolo','billing',NULL,NULL,NULL,'ACME'),(2,1,NULL,NULL,NULL,NULL,NULL,'MB','20052','Rossi','Via dei Macellai, 22','Monza','staff@tresoldi.net','123123','IT','Paolo','shipping',NULL,NULL,NULL,'ACME'),(3,2,NULL,NULL,NULL,NULL,NULL,'MB','20900','Verdi','Via Polli, 22','Mozna','staff@tresoldi.net','123','IT','Paolo','billing',NULL,NULL,NULL,'xxx'),(4,2,NULL,NULL,NULL,NULL,NULL,'MB','20900','Verdi','Via Polli, 22','Mozna','staff@tresoldi.net','123','IT','Paolo','shipping',NULL,NULL,NULL,'xxx'),(5,3,NULL,NULL,NULL,NULL,NULL,'mi','20010','Rossi','22 Higgly Str','HigglyTown','higgly@ymail.com','5675675675','IT','Mario','billing',NULL,NULL,NULL,'HigglyWorld'),(6,3,NULL,NULL,NULL,NULL,NULL,'mi','20010','Rossi','22 Higgly Str','HigglyTown','higgly@ymail.com','5675675675','IT','Mario','shipping',NULL,NULL,NULL,'HigglyWorld'),(7,4,1,NULL,NULL,1,NULL,'mb',NULL,'tresoldi','Via Confalonieri','Monza',NULL,'123123','IT','stefano','billing',NULL,NULL,NULL,NULL),(8,4,NULL,NULL,NULL,1,NULL,'mb',NULL,'tresoldi','Via Confalonieri','Monza',NULL,'123123','IT','stefano','shipping',NULL,NULL,NULL,NULL),(9,5,NULL,NULL,NULL,NULL,NULL,'mi','20010','Rossi','22 Higgly Str','HigglyTown','higgly@ymail.com','34534543','IT','Mario','billing',NULL,NULL,NULL,'HigglyWorld'),(10,5,NULL,NULL,NULL,NULL,NULL,'mi','20010','Rossi','22 Higgly Str','HigglyTown','higgly@ymail.com','34534543','IT','Mario','shipping',NULL,NULL,NULL,'HigglyWorld'),(11,6,1,NULL,NULL,1,NULL,'mb',NULL,'tresoldi','Via Confalonieri','Monza','staff@tresoldi.net','123123','IT','stefano','billing',NULL,NULL,NULL,NULL),(12,6,1,NULL,NULL,1,NULL,'mb',NULL,'tresoldi','Via Confalonieri','Monza','staff@tresoldi.net','123123','IT','stefano','shipping',NULL,NULL,NULL,NULL),(13,7,NULL,NULL,NULL,NULL,NULL,'mb',NULL,'Mariani','via tico di morte','monza','staff@tresoldi.net','123123','IT','marco ','billing',NULL,NULL,NULL,'acme'),(14,7,NULL,NULL,NULL,NULL,NULL,'mb',NULL,'Mariani','via tico di morte','monza','staff@tresoldi.net','123123','IT','marco ','shipping',NULL,NULL,NULL,'acme'),(15,8,NULL,NULL,NULL,NULL,NULL,'mialno','20063','gandini','via don gnocchi 3','cernusco sul navglio','info@stefanogandini.it','029230621','IT','stefano','billing',NULL,NULL,NULL,NULL),(16,8,NULL,NULL,NULL,NULL,NULL,'mialno','20063','gandini','via don gnocchi 3','cernusco sul navglio','info@stefanogandini.it','029230621','IT','stefano','shipping',NULL,NULL,NULL,NULL),(17,9,1,NULL,NULL,1,NULL,'mb',NULL,'tresoldi','Via Confalonieri','Monza','staff@tresoldi.net','123123','IT','stefano','billing',NULL,NULL,NULL,NULL),(18,9,1,NULL,NULL,1,NULL,'mb',NULL,'tresoldi','Via Confalonieri','Monza','staff@tresoldi.net','123123','IT','stefano','shipping',NULL,NULL,NULL,NULL); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', `gomage_deliverydate` datetime DEFAULT NULL COMMENT 'Delivery Date', 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`), CONSTRAINT `FK_SALES_FLAT_ORDER_GRID_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_ORDER_GRID_ENTITY_ID_SALES_FLAT_ORDER_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_ORDER_GRID_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Grid'; /*!40101 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 */; INSERT INTO `sales_flat_order_grid` VALUES (1,'pending',1,'Main Website\nMain Website Store\nDefault Store View',NULL,'705.0000',NULL,'705.0000',NULL,'100000001','EUR','EUR','Paolo Rossi','Paolo Rossi','2012-03-02 09:27:06','2012-03-02 09:27:07',NULL),(2,'canceled',1,'Main Website\nMain Website Store\nDefault Store View',NULL,'705.0000',NULL,'705.0000',NULL,'100000002','EUR','EUR','Paolo Verdi','Paolo Verdi','2012-03-02 09:31:32','2012-03-02 09:33:24',NULL),(3,'canceled',1,'Main Website\nMain Website Store\nDefault Store View',NULL,'105.0000',NULL,'105.0000',NULL,'100000003','EUR','EUR','Mario Rossi','Mario Rossi','2012-03-02 12:37:56','2012-03-02 12:40:33',NULL),(4,'canceled',1,'Main Website\nMain Website Store\nDefault Store View',1,'705.0000',NULL,'705.0000',NULL,'100000004','EUR','EUR','stefano tresoldi','stefano tresoldi','2012-03-02 12:47:34','2012-03-02 12:49:39',NULL),(5,'canceled',1,'Main Website\nMain Website Store\nDefault Store View',NULL,'705.0000',NULL,'705.0000',NULL,'100000005','EUR','EUR','Mario Rossi','Mario Rossi','2012-03-02 12:49:33','2012-03-02 12:51:23',NULL),(6,'processing',1,'Main Website\nMain Website Store\nDefault Store View',1,'705.0000',NULL,'705.0000',NULL,'100000006','EUR','EUR','stefano tresoldi','stefano tresoldi','2012-03-02 13:23:46','2012-03-02 13:29:52',NULL),(7,'processing',1,'Main Website\nMain Website Store\nDefault Store View',NULL,'705.0000',NULL,'705.0000',NULL,'100000007','EUR','EUR','marco Mariani','marco Mariani','2012-03-02 14:07:28','2012-03-02 14:08:48',NULL),(8,'canceled',1,'Main Website\nMain Website Store\nDefault Store View',NULL,'705.0000',NULL,'705.0000',NULL,'100000008','EUR','EUR','stefano gandini','stefano gandini','2012-03-02 15:19:13','2012-03-02 15:20:50',NULL),(9,'processing',1,'Main Website\nMain Website Store\nDefault Store View',1,'2105.0000',NULL,'2105.0000',NULL,'100000009','EUR','EUR','stefano tresoldi','stefano tresoldi','2012-03-02 21:30:44','2012-03-02 21:31:40',NULL); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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', `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', `gomage_gift_wrap` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Gift Wrap', `gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Wrap Amount', `base_gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Wrap Amount', PRIMARY KEY (`item_id`), KEY `IDX_SALES_FLAT_ORDER_ITEM_ORDER_ID` (`order_id`), KEY `IDX_SALES_FLAT_ORDER_ITEM_STORE_ID` (`store_id`), CONSTRAINT `FK_SALES_FLAT_ORDER_ITEM_ORDER_ID_SALES_FLAT_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_ORDER_ITEM_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Item'; /*!40101 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 */; INSERT INTO `sales_flat_order_item` VALUES (1,1,NULL,18,1,'2012-03-02 09:27:06','2012-03-02 09:27:06',6,'simple','a:5:{s:15:\"info_buyRequest\";a:3:{s:4:\"uenc\";s:88:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,\";s:7:\"product\";s:1:\"6\";s:3:\"qty\";i:1;}s:17:\"giftcard_lifetime\";N;s:22:\"giftcard_is_redeemable\";i:0;s:23:\"giftcard_email_template\";N;s:13:\"giftcard_type\";N;}','1.0000',0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,NULL,'0.0000','0.0000','1.0000','0.0000','0.0000',NULL,'578.5100','578.5100','700.0000','700.0000','21.0000','121.4900','121.4900','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','578.5100','578.5100','0.0000','0.0000','1.0000',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000','0.0000',0,'0.0000','0.0000'),(2,2,NULL,19,1,'2012-03-02 09:31:32','2012-03-02 09:31:32',6,'simple','a:5:{s:15:\"info_buyRequest\";a:3:{s:4:\"uenc\";s:88:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,\";s:7:\"product\";s:1:\"6\";s:3:\"qty\";i:1;}s:17:\"giftcard_lifetime\";N;s:22:\"giftcard_is_redeemable\";i:0;s:23:\"giftcard_email_template\";N;s:13:\"giftcard_type\";N;}','1.0000',0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,NULL,'0.0000','0.0000','1.0000','0.0000','0.0000',NULL,'578.5100','578.5100','700.0000','700.0000','21.0000','121.4900','121.4900','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','578.5100','578.5100','0.0000','0.0000','1.0000',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000','0.0000',0,'0.0000','0.0000'),(3,3,NULL,20,1,'2012-03-02 12:37:56','2012-03-02 12:37:56',2,'simple','a:5:{s:15:\"info_buyRequest\";a:4:{s:4:\"uenc\";s:88:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9maW5lcGl4LWF2MTAwLTIuaHRtbA,,\";s:7:\"product\";s:1:\"2\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}s:17:\"giftcard_lifetime\";N;s:22:\"giftcard_is_redeemable\";i:0;s:23:\"giftcard_email_template\";N;s:13:\"giftcard_type\";N;}','1.0000',0,'99999999','FinePix AV100 Rosso',NULL,NULL,NULL,0,0,0,NULL,'0.0000','0.0000','1.0000','0.0000','0.0000',NULL,'82.6400','82.6400','100.0000','100.0000','21.0000','17.3600','17.3600','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','82.6400','82.6400','0.0000','0.0000','1.0000',NULL,NULL,NULL,NULL,NULL,'100.0000','100.0000','100.0000','100.0000',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000','0.0000',0,'0.0000','0.0000'),(4,4,NULL,21,1,'2012-03-02 12:47:34','2012-03-02 12:47:34',6,'simple','a:5:{s:15:\"info_buyRequest\";a:4:{s:4:\"uenc\";s:104:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s\";s:7:\"product\";s:1:\"6\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}s:17:\"giftcard_lifetime\";N;s:22:\"giftcard_is_redeemable\";i:0;s:23:\"giftcard_email_template\";N;s:13:\"giftcard_type\";N;}','1.0000',0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,NULL,'0.0000','0.0000','1.0000','0.0000','0.0000',NULL,'578.5100','578.5100','700.0000','700.0000','21.0000','121.4900','121.4900','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','578.5100','578.5100','0.0000','0.0000','1.0000',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000','0.0000',0,'0.0000','0.0000'),(5,5,NULL,22,1,'2012-03-02 12:49:33','2012-03-02 12:49:33',6,'simple','a:5:{s:15:\"info_buyRequest\";a:3:{s:4:\"uenc\";s:64:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s\";s:7:\"product\";s:1:\"6\";s:3:\"qty\";i:1;}s:17:\"giftcard_lifetime\";N;s:22:\"giftcard_is_redeemable\";i:0;s:23:\"giftcard_email_template\";N;s:13:\"giftcard_type\";N;}','1.0000',0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,NULL,'0.0000','0.0000','1.0000','0.0000','0.0000',NULL,'578.5100','578.5100','700.0000','700.0000','21.0000','121.4900','121.4900','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','578.5100','578.5100','0.0000','0.0000','1.0000',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000','0.0000',0,'0.0000','0.0000'),(6,6,NULL,23,1,'2012-03-02 13:23:47','2012-03-02 13:29:52',6,'simple','a:5:{s:15:\"info_buyRequest\";a:4:{s:4:\"uenc\";s:104:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s\";s:7:\"product\";s:1:\"6\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";i:1;}s:17:\"giftcard_lifetime\";N;s:22:\"giftcard_is_redeemable\";i:0;s:23:\"giftcard_email_template\";N;s:13:\"giftcard_type\";N;}','1.0000',0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,NULL,'0.0000','0.0000','1.0000','0.0000','0.0000',NULL,'578.5100','578.5100','700.0000','700.0000','21.0000','121.4900','121.4900','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','578.5100','578.5100','0.0000','0.0000','1.0000',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000','0.0000',0,'0.0000','0.0000'),(7,7,NULL,25,1,'2012-03-02 14:07:28','2012-03-02 14:08:48',6,'simple','a:5:{s:15:\"info_buyRequest\";a:3:{s:4:\"uenc\";s:88:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,\";s:7:\"product\";s:1:\"6\";s:3:\"qty\";i:1;}s:17:\"giftcard_lifetime\";N;s:22:\"giftcard_is_redeemable\";i:0;s:23:\"giftcard_email_template\";N;s:13:\"giftcard_type\";N;}','1.0000',0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,NULL,'0.0000','0.0000','1.0000','0.0000','0.0000',NULL,'578.5100','578.5100','700.0000','700.0000','21.0000','121.4900','121.4900','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','578.5100','578.5100','0.0000','0.0000','1.0000',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000','0.0000',0,'0.0000','0.0000'),(8,8,NULL,26,1,'2012-03-02 15:19:13','2012-03-02 15:19:13',6,'simple','a:5:{s:15:\"info_buyRequest\";a:4:{s:4:\"uenc\";s:104:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s\";s:7:\"product\";s:1:\"6\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}s:17:\"giftcard_lifetime\";N;s:22:\"giftcard_is_redeemable\";i:0;s:23:\"giftcard_email_template\";N;s:13:\"giftcard_type\";N;}','1.0000',0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,NULL,'0.0000','0.0000','1.0000','0.0000','0.0000',NULL,'578.5100','578.5100','700.0000','700.0000','21.0000','121.4900','121.4900','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','578.5100','578.5100','0.0000','0.0000','1.0000',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000','0.0000',0,'0.0000','0.0000'),(9,9,NULL,24,1,'2012-03-02 21:30:44','2012-03-02 21:31:40',6,'simple','a:5:{s:15:\"info_buyRequest\";a:4:{s:4:\"uenc\";s:104:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s\";s:7:\"product\";s:1:\"6\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}s:17:\"giftcard_lifetime\";N;s:22:\"giftcard_is_redeemable\";i:0;s:23:\"giftcard_email_template\";N;s:13:\"giftcard_type\";N;}','1.0000',0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,NULL,'0.0000','0.0000','3.0000','0.0000','0.0000',NULL,'578.5100','578.5100','700.0000','700.0000','21.0000','364.4600','364.4600','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','1735.5400','1735.5400','0.0000','0.0000','3.0000',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','2100.0000','2100.0000',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000','0.0000',0,'0.0000','0.0000'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_FLAT_ORDER_PAYMENT_PARENT_ID_SALES_FLAT_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Payment'; /*!40101 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 */; INSERT INTO `sales_flat_order_payment` VALUES (1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'5.0000','5.0000',NULL,NULL,'705.0000',NULL,NULL,NULL,'705.0000',NULL,NULL,NULL,'0','0',NULL,'keyclient',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'5.0000','5.0000',NULL,NULL,'705.0000',NULL,NULL,NULL,'705.0000',NULL,NULL,NULL,'0','0',NULL,'keyclient',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'5.0000','5.0000',NULL,NULL,'105.0000',NULL,NULL,NULL,'105.0000',NULL,NULL,NULL,'0','0',NULL,'keyclient',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'5.0000','5.0000',NULL,NULL,'705.0000',NULL,NULL,NULL,'705.0000',NULL,NULL,NULL,'0','0',NULL,'keyclient',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'5.0000','5.0000',NULL,NULL,'705.0000',NULL,NULL,NULL,'705.0000',NULL,NULL,NULL,'0','0',NULL,'keyclient',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'5.0000','5.0000',NULL,NULL,'705.0000',NULL,NULL,NULL,'705.0000',NULL,NULL,NULL,'0','0',NULL,'keyclient',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'5.0000','5.0000',NULL,NULL,'705.0000',NULL,NULL,NULL,'705.0000',NULL,NULL,NULL,'0','0',NULL,'keyclient',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'5.0000','5.0000',NULL,NULL,'705.0000',NULL,NULL,NULL,'705.0000',NULL,NULL,NULL,'0','0',NULL,'keyclient',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'5.0000','5.0000',NULL,NULL,'2105.0000',NULL,NULL,NULL,'2105.0000',NULL,NULL,NULL,'0','0',NULL,'keyclient',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_CE7C71E74CB74DDACED337CEE6753D5E` FOREIGN KEY (`parent_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Status History'; /*!40101 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 */; INSERT INTO `sales_flat_order_status_history` VALUES (1,1,0,0,NULL,'pending','2012-03-02 09:27:07','order'),(2,2,0,0,NULL,'pending','2012-03-02 09:31:32','order'),(3,2,2,0,NULL,'canceled','2012-03-02 09:33:24','order'),(4,3,0,0,NULL,'pending','2012-03-02 12:37:57','order'),(5,3,2,0,NULL,'canceled','2012-03-02 12:40:35','order'),(6,4,0,0,NULL,'pending','2012-03-02 12:47:37','order'),(7,5,0,0,NULL,'pending','2012-03-02 12:49:34','order'),(8,4,2,0,NULL,'canceled','2012-03-02 12:49:39','order'),(9,5,2,0,NULL,'canceled','2012-03-02 12:51:23','order'),(10,6,0,0,NULL,'pending','2012-03-02 13:23:55','order'),(11,6,2,0,'Data del Pagamento: 2012-03-02
Ora del Pagamento: 15.29.47
Importo: 0.01
Numero Ordine Esercente: 100000006
Codice Autorizzazione Circuito: TESTOK
Circuito di Pagamento: MasterCard
Nome e Cognome dell\'intestatario della Carta: stefano luca
Indirizzo e-mail dell\'Intestatario della Carta: staff@tresoldi.net
','processing','2012-03-02 13:29:52','order'),(12,7,0,0,NULL,'pending','2012-03-02 14:07:29','order'),(13,7,2,0,'Data del Pagamento: 2012-03-02
Ora del Pagamento: 16.08.46
Importo: 0.01
Numero Ordine Esercente: 100000007
Codice Autorizzazione Circuito: TESTOK
Circuito di Pagamento: MasterCard
Nome e Cognome dell\'intestatario della Carta: stefano luca
Indirizzo e-mail dell\'Intestatario della Carta: staff@tresoldi.net
','processing','2012-03-02 14:08:49','order'),(14,8,0,0,NULL,'pending','2012-03-02 15:19:15','order'),(15,8,2,0,NULL,'canceled','2012-03-02 15:20:52','order'),(16,9,0,0,NULL,'pending','2012-03-02 21:30:45','order'),(17,9,2,0,'Data del Pagamento: 2012-03-02
Ora del Pagamento: 23.31.38
Importo: 0.01
Numero Ordine Esercente: 100000009
Codice Autorizzazione Circuito: TESTOK
Circuito di Pagamento: MasterCard
Nome e Cognome dell\'intestatario della Carta: stefano luca
Indirizzo e-mail dell\'Intestatario della Carta: staff@tresoldi.net
','processing','2012-03-02 21:31:41','order'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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', `customer_balance_amount_used` decimal(12,4) DEFAULT NULL COMMENT 'Customer Balance Amount Used', `base_customer_bal_amount_used` decimal(12,4) DEFAULT NULL COMMENT 'Base Customer Bal Amount Used', `use_customer_balance` int(11) DEFAULT NULL COMMENT 'Use Customer Balance', `gift_cards` text COMMENT 'Gift Cards', `gift_cards_amount` decimal(12,4) DEFAULT NULL COMMENT 'Gift Cards Amount', `base_gift_cards_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Gift Cards Amount', `gift_cards_amount_used` decimal(12,4) DEFAULT NULL COMMENT 'Gift Cards Amount Used', `base_gift_cards_amount_used` decimal(12,4) DEFAULT NULL COMMENT 'Base Gift Cards Amount Used', `use_reward_points` int(11) DEFAULT NULL COMMENT 'Use Reward Points', `reward_points_balance` int(11) DEFAULT NULL COMMENT 'Reward Points Balance', `base_reward_currency_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Reward Currency Amount', `reward_currency_amount` decimal(12,4) DEFAULT NULL COMMENT 'Reward Currency Amount', `gomage_checkout_customer_comment` text COMMENT 'Customer Comment', `gomage_deliverydate` datetime DEFAULT NULL COMMENT 'Delivery Date', `gomage_deliverydate_formated` varchar(128) DEFAULT NULL COMMENT 'Delivery Date Formated', 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`), CONSTRAINT `FK_SALES_FLAT_QUOTE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote'; /*!40101 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,'2012-02-16 06:37:11','2012-02-16 06:37:11',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','119.7900','119.7900',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'82.84.125.160',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'99.0000','99.0000','99.0000','99.0000',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(2,1,'2012-02-16 09:07:34','2012-02-16 09:07:34',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','119.7900','119.7900',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'81.174.26.95',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'99.0000','99.0000','99.0000','99.0000',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(3,1,'2012-02-20 15:17:54','2012-02-20 15:17:54',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','121.0000','121.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'78.12.188.214',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'100.0000','100.0000','100.0000','100.0000',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(4,1,'2012-02-21 13:22:52','2012-02-21 13:22:53',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','1550.0000','1550.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'81.174.26.95',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'1550.0000','1550.0000','1550.0000','1550.0000',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(5,1,'2012-02-22 09:28:36','2012-02-22 10:11:45',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','1550.0000','1550.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'81.174.26.95',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'1550.0000','1550.0000','1550.0000','1550.0000',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(6,1,'2012-02-22 09:28:53','2012-02-22 10:13:24',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','1550.0000','1550.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'78.12.188.214',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'1550.0000','1550.0000','1550.0000','1550.0000',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(7,1,'2012-02-22 13:30:39','2012-02-22 13:38:22',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','121.0000','121.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'82.113.203.194',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'100.0000','100.0000','100.0000','100.0000',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(8,1,'2012-02-23 07:01:51','2012-02-23 08:10:02',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','700.0000','700.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'78.12.188.214',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'578.5100','578.5100','578.5100','578.5100',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(9,1,'2012-02-23 07:01:57','2012-02-23 08:17:02',NULL,1,0,0,0,'0.0000',0,'1.0000','1.0000','EUR','EUR','EUR','0.0000','0.0000','guest',NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'93.66.84.49',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'0.0000','0.0000','0.0000','0.0000',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(10,1,'2012-02-27 15:49:30','2012-02-27 15:49:31',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','100.0000','100.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'81.174.26.95',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'82.6400','82.6400','82.6400','82.6400',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(11,1,'2012-02-27 15:49:35','2012-02-27 15:49:36',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','500.0000','500.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'78.12.152.14',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'413.2200','413.2200','413.2200','413.2200',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(12,1,'2012-03-01 06:58:04','2012-03-01 06:58:05',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','700.0000','700.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'81.174.26.95',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'578.5100','578.5100','578.5100','578.5100',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(13,1,'2012-03-02 09:24:23','2012-03-02 09:27:07',NULL,0,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','705.0000','705.0000','guest',NULL,3,0,'staff@tresoldi.net',NULL,'Paolo',NULL,'Rossi',NULL,NULL,NULL,1,1,'94.36.210.92',NULL,'100000001',NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'578.5100','578.5100','578.5100','578.5100',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(14,1,'2012-03-02 09:28:59','2012-03-02 09:31:32',NULL,0,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','705.0000','705.0000','guest',NULL,3,0,'staff@tresoldi.net',NULL,'Paolo',NULL,'Verdi',NULL,NULL,NULL,1,1,'94.36.210.92',NULL,'100000002',NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'578.5100','578.5100','578.5100','578.5100',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(15,1,'2012-03-02 12:36:43','2012-03-02 12:37:57',NULL,0,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','105.0000','105.0000','guest',NULL,3,0,'higgly@ymail.com',NULL,'Mario',NULL,'Rossi',NULL,NULL,NULL,1,1,'93.66.84.49',NULL,'100000003',NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'82.6400','82.6400','82.6400','82.6400',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(16,1,'2012-03-02 12:37:11','2012-03-02 12:47:37',NULL,0,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','705.0000','705.0000',NULL,1,3,1,'staff@tresoldi.net',NULL,'stefano',NULL,'tresoldi',NULL,NULL,NULL,1,0,'94.36.210.92',NULL,'100000004',NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'578.5100','578.5100','578.5100','578.5100',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',0,0,'0.0000','0.0000',NULL,NULL,NULL),(17,1,'2012-03-02 12:48:18','2012-03-02 12:49:40',NULL,0,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','705.0000','705.0000','guest',NULL,3,0,'higgly@ymail.com',NULL,'Mario',NULL,'Rossi',NULL,NULL,NULL,1,1,'93.66.84.49',NULL,'100000005',NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'578.5100','578.5100','578.5100','578.5100',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(18,1,'2012-03-02 13:18:44','2012-03-02 13:23:56',NULL,0,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','705.0000','705.0000',NULL,1,3,1,'staff@tresoldi.net',NULL,'stefano',NULL,'tresoldi',NULL,NULL,NULL,1,0,'94.36.210.92',NULL,'100000006',NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'578.5100','578.5100','578.5100','578.5100',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',0,0,'0.0000','0.0000',NULL,NULL,NULL),(19,1,'2012-03-02 13:53:19','2012-03-02 21:30:45',NULL,0,0,0,1,'3.0000',0,'1.0000','1.0000','EUR','EUR','EUR','2105.0000','2105.0000',NULL,1,3,1,'staff@tresoldi.net',NULL,'stefano',NULL,'tresoldi',NULL,NULL,NULL,1,0,'94.36.212.182',NULL,'100000009',NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'1735.5400','1735.5400','1735.5400','1735.5400',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',0,0,'0.0000','0.0000',NULL,NULL,NULL),(20,1,'2012-03-02 14:03:14','2012-03-02 14:07:29',NULL,0,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','705.0000','705.0000','guest',NULL,3,0,'staff@tresoldi.net',NULL,'marco ',NULL,'Mariani',NULL,NULL,NULL,1,1,'94.36.210.92',NULL,'100000007',NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'578.5100','578.5100','578.5100','578.5100',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(21,1,'2012-03-02 15:17:17','2012-03-02 15:19:16',NULL,0,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','705.0000','705.0000','guest',NULL,3,0,'info@stefanogandini.it',NULL,'stefano',NULL,'gandini',NULL,NULL,NULL,1,1,'81.174.26.95',NULL,'100000008',NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'578.5100','578.5100','578.5100','578.5100',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(23,1,'2012-03-02 21:32:30','2012-03-02 21:32:48',NULL,1,0,0,1,'1.0000',0,'1.0000','1.0000','EUR','EUR','EUR','705.0000','705.0000',NULL,1,3,1,'staff@tresoldi.net',NULL,'stefano',NULL,'tresoldi',NULL,NULL,NULL,1,0,'94.36.212.182',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'578.5100','578.5100','578.5100','578.5100',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL),(24,1,'2012-03-03 09:07:12','2012-03-03 09:08:40',NULL,1,0,0,0,'0.0000',0,'1.0000','1.0000','EUR','EUR','EUR','0.0000','0.0000',NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'94.36.212.182',NULL,NULL,NULL,NULL,'EUR','1.0000','1.0000',NULL,NULL,'0.0000','0.0000','0.0000','0.0000',1,0,NULL,NULL,0,'0.0000','0.0000',NULL,'a:0:{}','0.0000','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000',NULL,NULL,NULL); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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', `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message Id', `base_customer_balance_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Customer Balance Amount', `customer_balance_amount` decimal(12,4) DEFAULT NULL COMMENT 'Customer Balance Amount', `gift_cards_amount` decimal(12,4) DEFAULT NULL COMMENT 'Gift Cards Amount', `base_gift_cards_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Gift Cards Amount', `gift_cards` text COMMENT 'Gift Cards', `used_gift_cards` text COMMENT 'Used Gift Cards', `reward_points_balance` int(11) DEFAULT NULL COMMENT 'Reward Points Balance', `base_reward_currency_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Reward Currency Amount', `reward_currency_amount` decimal(12,4) DEFAULT NULL COMMENT 'Reward Currency Amount', `is_valid_vat` smallint(1) DEFAULT NULL COMMENT 'Is valid vat number', `buy_without_vat` smallint(1) DEFAULT NULL COMMENT 'Without vat', `gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Wrap Amount', `base_gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Wrap Amount', PRIMARY KEY (`address_id`), KEY `IDX_SALES_FLAT_QUOTE_ADDRESS_QUOTE_ID` (`quote_id`), CONSTRAINT `FK_SALES_FLAT_QUOTE_ADDRESS_QUOTE_ID_SALES_FLAT_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `sales_flat_quote` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address'; /*!40101 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 (3,1,'2012-02-16 06:37:11','2012-02-16 06:37:11',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(4,1,'2012-02-16 06:37:11','2012-02-16 06:37:11',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.0000','99.0000','99.0000','0.0000','0.0000','20.7900','20.7900','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','119.7900','119.7900',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:20.78999999999999914734871708787977695465087890625;s:11:\"base_amount\";d:20.78999999999999914734871708787977695465087890625;}}',NULL,'0.0000','0.0000','119.7900',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(7,2,'2012-02-16 09:07:34','2012-02-16 09:07:34',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(8,2,'2012-02-16 09:07:34','2012-02-16 09:07:34',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.0000','99.0000','99.0000','0.0000','0.0000','20.7900','20.7900','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','119.7900','119.7900',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:20.78999999999999914734871708787977695465087890625;s:11:\"base_amount\";d:20.78999999999999914734871708787977695465087890625;}}',NULL,'0.0000','0.0000','119.7900',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(11,3,'2012-02-20 15:17:54','2012-02-20 15:17:54',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(12,3,'2012-02-20 15:17:54','2012-02-20 15:17:54',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,'1.0000','100.0000','100.0000','0.0000','0.0000','21.0000','21.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','121.0000','121.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:21;s:11:\"base_amount\";d:21;}}',NULL,'0.0000','0.0000','121.0000',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(15,4,'2012-02-21 13:22:53','2012-02-21 13:22:53',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(16,4,'2012-02-21 13:22:53','2012-02-21 13:22:53',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,'1.0000','1550.0000','1550.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','1550.0000','1550.0000',NULL,'a:0:{}',NULL,'0.0000','0.0000','1550.0000',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(19,5,'2012-02-22 09:28:38','2012-02-22 10:11:45',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(20,5,'2012-02-22 09:28:38','2012-02-22 10:11:45',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,'1.0000','1550.0000','1550.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','1550.0000','1550.0000',NULL,'a:0:{}',NULL,'0.0000','0.0000','1550.0000',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(23,6,'2012-02-22 09:28:54','2012-02-22 10:13:24',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(24,6,'2012-02-22 09:28:54','2012-02-22 10:13:24',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,'1.0000','1550.0000','1550.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','1550.0000','1550.0000',NULL,'a:0:{}',NULL,'0.0000','0.0000','1550.0000',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(27,7,'2012-02-22 13:30:39','2012-02-22 13:38:22',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(28,7,'2012-02-22 13:30:39','2012-02-22 13:38:22',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,'1.0000','100.0000','100.0000','0.0000','0.0000','21.0000','21.0000','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','121.0000','121.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:21;s:11:\"base_amount\";d:21;}}',NULL,'0.0000','0.0000','121.0000',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(31,8,'2012-02-23 07:01:51','2012-02-23 08:10:02',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(32,8,'2012-02-23 07:01:51','2012-02-23 08:10:02',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,'1.0000','578.5100','578.5100','0.0000','0.0000','121.4900','121.4900','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','700.0000','700.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:121.4899999999999948840923025272786617279052734375;s:11:\"base_amount\";d:121.4899999999999948840923025272786617279052734375;}}',NULL,'0.0000','0.0000','700.0000',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(35,9,'2012-02-23 07:01:57','2012-02-23 08:17:02',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(36,9,'2012-02-23 07:01:57','2012-02-23 08:17:02',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(39,10,'2012-02-27 15:49:31','2012-02-27 15:49:31',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(40,10,'2012-02-27 15:49:31','2012-02-27 15:49:31',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,'1.0000','82.6400','82.6400','0.0000','0.0000','17.3600','17.3600','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','100.0000','100.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:17.3599999999999994315658113919198513031005859375;s:11:\"base_amount\";d:17.3599999999999994315658113919198513031005859375;}}',NULL,'0.0000','0.0000','100.0000',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(43,11,'2012-02-27 15:49:36','2012-02-27 15:49:36',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(44,11,'2012-02-27 15:49:36','2012-02-27 15:49:36',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,'1.0000','413.2200','413.2200','0.0000','0.0000','86.7800','86.7800','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','500.0000','500.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:86.780000000000001136868377216160297393798828125;s:11:\"base_amount\";d:86.780000000000001136868377216160297393798828125;}}',NULL,'0.0000','0.0000','500.0000',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(47,12,'2012-03-01 06:58:05','2012-03-01 06:58:05',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(48,12,'2012-03-01 06:58:05','2012-03-01 06:58:05',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,0,NULL,NULL,'1.0000','578.5100','578.5100','0.0000','0.0000','121.4900','121.4900','0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','700.0000','700.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:121.4899999999999948840923025272786617279052734375;s:11:\"base_amount\";d:121.4899999999999948840923025272786617279052734375;}}',NULL,'0.0000','0.0000','700.0000',NULL,'0.0000','0.0000','0.0000',NULL,'0.0000','0.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(51,13,'2012-03-02 09:24:24','2012-03-02 09:27:06',NULL,1,NULL,'billing','staff@tresoldi.net',NULL,'Paolo',NULL,'Rossi',NULL,'ACME','Via dei Macellai, 22','Monza','MB',NULL,'20052','IT','123123',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(52,13,'2012-03-02 09:24:24','2012-03-02 09:27:06',NULL,0,NULL,'shipping','staff@tresoldi.net',NULL,'Paolo',NULL,'Rossi',NULL,'ACME','Via dei Macellai, 22','Monza','MB',NULL,'20052','IT','123123',NULL,1,0,0,'flatrate_flatrate','Flat Rate - Fixed','1.0000','578.5100','578.5100','0.0000','0.0000','121.4900','121.4900','5.0000','5.0000','0.0000','0.0000','0.0000','0.0000','705.0000','705.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:121.4899999999999948840923025272786617279052734375;s:11:\"base_amount\";d:121.4899999999999948840923025272786617279052734375;}}',NULL,'0.0000','0.0000','700.0000',NULL,'0.0000','0.0000','0.0000',NULL,'5.0000','5.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(53,14,'2012-03-02 09:28:59','2012-03-02 09:31:32',NULL,1,NULL,'billing','staff@tresoldi.net',NULL,'Paolo',NULL,'Verdi',NULL,'xxx','Via Polli, 22','Mozna','MB',NULL,'20900','IT','123',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(54,14,'2012-03-02 09:28:59','2012-03-02 09:31:32',NULL,0,NULL,'shipping','staff@tresoldi.net',NULL,'Paolo',NULL,'Verdi',NULL,'xxx','Via Polli, 22','Mozna','MB',NULL,'20900','IT','123',NULL,1,0,0,'flatrate_flatrate','Flat Rate - Fixed','1.0000','578.5100','578.5100','0.0000','0.0000','121.4900','121.4900','5.0000','5.0000','0.0000','0.0000','0.0000','0.0000','705.0000','705.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:121.4899999999999948840923025272786617279052734375;s:11:\"base_amount\";d:121.4899999999999948840923025272786617279052734375;}}',NULL,'0.0000','0.0000','700.0000',NULL,'0.0000','0.0000','0.0000',NULL,'5.0000','5.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(57,15,'2012-03-02 12:36:44','2012-03-02 12:37:56',NULL,1,NULL,'billing','higgly@ymail.com',NULL,'Mario',NULL,'Rossi',NULL,'HigglyWorld','22 Higgly Str','HigglyTown','mi',NULL,'20010','IT','5675675675',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(58,15,'2012-03-02 12:36:44','2012-03-02 12:37:56',NULL,0,NULL,'shipping','higgly@ymail.com',NULL,'Mario',NULL,'Rossi',NULL,'HigglyWorld','22 Higgly Str','HigglyTown','mi',NULL,'20010','IT','5675675675',NULL,1,0,0,'flatrate_flatrate','Flat Rate - Fixed','1.0000','82.6400','82.6400','0.0000','0.0000','17.3600','17.3600','5.0000','5.0000','0.0000','0.0000','0.0000','0.0000','105.0000','105.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:17.3599999999999994315658113919198513031005859375;s:11:\"base_amount\";d:17.3599999999999994315658113919198513031005859375;}}',NULL,'0.0000','0.0000','100.0000',NULL,'0.0000','0.0000','0.0000',NULL,'5.0000','5.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(61,16,'2012-03-02 12:37:12','2012-03-02 12:47:34',1,1,1,'billing',NULL,NULL,'stefano',NULL,'tresoldi',NULL,NULL,'Via Confalonieri','Monza','mb',NULL,NULL,'IT','123123',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(62,16,'2012-03-02 12:37:12','2012-03-02 12:47:34',1,0,NULL,'shipping',NULL,NULL,'stefano',NULL,'tresoldi',NULL,NULL,'Via Confalonieri','Monza','mb',NULL,NULL,'IT','123123',NULL,1,0,0,'flatrate_flatrate','Flat Rate - Fixed','1.0000','578.5100','578.5100','0.0000','0.0000','121.4900','121.4900','5.0000','5.0000','0.0000','0.0000','0.0000','0.0000','705.0000','705.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:121.4899999999999948840923025272786617279052734375;s:11:\"base_amount\";d:121.4899999999999948840923025272786617279052734375;}}',NULL,'0.0000','0.0000','700.0000',NULL,'0.0000','0.0000','0.0000',NULL,'5.0000','5.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(63,17,'2012-03-02 12:48:18','2012-03-02 12:49:33',NULL,1,NULL,'billing','higgly@ymail.com',NULL,'Mario',NULL,'Rossi',NULL,'HigglyWorld','22 Higgly Str','HigglyTown','mi',NULL,'20010','IT','34534543',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(64,17,'2012-03-02 12:48:18','2012-03-02 12:49:33',NULL,0,NULL,'shipping','higgly@ymail.com',NULL,'Mario',NULL,'Rossi',NULL,'HigglyWorld','22 Higgly Str','HigglyTown','mi',NULL,'20010','IT','34534543',NULL,1,0,0,'flatrate_flatrate','Flat Rate - Fixed','1.0000','578.5100','578.5100','0.0000','0.0000','121.4900','121.4900','5.0000','5.0000','0.0000','0.0000','0.0000','0.0000','705.0000','705.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:121.4899999999999948840923025272786617279052734375;s:11:\"base_amount\";d:121.4899999999999948840923025272786617279052734375;}}',NULL,'0.0000','0.0000','700.0000',NULL,'0.0000','0.0000','0.0000',NULL,'5.0000','5.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(65,18,'2012-03-02 13:18:45','2012-03-02 13:23:46',1,0,1,'billing','staff@tresoldi.net',NULL,'stefano',NULL,'tresoldi',NULL,NULL,'Via Confalonieri','Monza','mb',NULL,NULL,'IT','123123',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(66,18,'2012-03-02 13:18:45','2012-03-02 13:23:46',1,0,1,'shipping','staff@tresoldi.net',NULL,'stefano',NULL,'tresoldi',NULL,NULL,'Via Confalonieri','Monza','mb',NULL,NULL,'IT','123123',NULL,1,0,0,'flatrate_flatrate','Flat Rate - Fixed','1.0000','578.5100','578.5100','0.0000','0.0000','121.4900','121.4900','5.0000','5.0000','0.0000','0.0000','0.0000','0.0000','705.0000','705.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:121.4899999999999948840923025272786617279052734375;s:11:\"base_amount\";d:121.4899999999999948840923025272786617279052734375;}}',NULL,'0.0000','0.0000','700.0000',NULL,'0.0000','0.0000','0.0000',NULL,'5.0000','5.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(67,19,'2012-03-02 13:53:19','2012-03-02 21:30:44',1,0,1,'billing','staff@tresoldi.net',NULL,'stefano',NULL,'tresoldi',NULL,NULL,'Via Confalonieri','Monza','mb',NULL,NULL,'IT','123123',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,0,'0.0000','0.0000'),(68,19,'2012-03-02 13:53:19','2012-03-02 21:30:44',1,0,1,'shipping','staff@tresoldi.net',NULL,'stefano',NULL,'tresoldi',NULL,NULL,'Via Confalonieri','Monza','mb',NULL,NULL,'IT','123123',NULL,1,0,0,'flatrate_flatrate','A mezzo corriere - Costo di spedizione','3.0000','1735.5400','1735.5400','0.0000','0.0000','364.4600','364.4600','5.0000','5.0000','0.0000','0.0000','0.0000','0.0000','2105.0000','2105.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:364.4599999999999226929503493010997772216796875;s:11:\"base_amount\";d:364.4599999999999226929503493010997772216796875;}}',NULL,'0.0000','0.0000','2100.0000',NULL,'0.0000','0.0000','0.0000',NULL,'5.0000','5.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,0,'0.0000','0.0000'),(71,20,'2012-03-02 14:03:16','2012-03-02 14:07:28',NULL,1,NULL,'billing','staff@tresoldi.net',NULL,'marco ',NULL,'Mariani',NULL,'acme','via tico di morte','monza','mb',NULL,NULL,'IT','123123',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(72,20,'2012-03-02 14:03:16','2012-03-02 14:07:28',NULL,0,NULL,'shipping','staff@tresoldi.net',NULL,'marco ',NULL,'Mariani',NULL,'acme','via tico di morte','monza','mb',NULL,NULL,'IT','123123',NULL,1,0,0,'flatrate_flatrate','Flat Rate - Fixed','1.0000','578.5100','578.5100','0.0000','0.0000','121.4900','121.4900','5.0000','5.0000','0.0000','0.0000','0.0000','0.0000','705.0000','705.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:121.4899999999999948840923025272786617279052734375;s:11:\"base_amount\";d:121.4899999999999948840923025272786617279052734375;}}',NULL,'0.0000','0.0000','700.0000',NULL,'0.0000','0.0000','0.0000',NULL,'5.0000','5.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(75,21,'2012-03-02 15:17:19','2012-03-02 15:19:13',NULL,1,NULL,'billing','info@stefanogandini.it',NULL,'stefano',NULL,'gandini',NULL,NULL,'via don gnocchi 3','cernusco sul navglio','mialno',NULL,'20063','IT','029230621',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,NULL,'0.0000','0.0000'),(76,21,'2012-03-02 15:17:19','2012-03-02 15:19:13',NULL,0,NULL,'shipping','info@stefanogandini.it',NULL,'stefano',NULL,'gandini',NULL,NULL,'via don gnocchi 3','cernusco sul navglio','mialno',NULL,'20063','IT','029230621',NULL,1,0,0,'flatrate_flatrate','Flat Rate - Fixed','1.0000','578.5100','578.5100','0.0000','0.0000','121.4900','121.4900','5.0000','5.0000','0.0000','0.0000','0.0000','0.0000','705.0000','705.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:121.4899999999999948840923025272786617279052734375;s:11:\"base_amount\";d:121.4899999999999948840923025272786617279052734375;}}',NULL,'0.0000','0.0000','700.0000',NULL,'0.0000','0.0000','0.0000',NULL,'5.0000','5.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,NULL,'0.0000','0.0000'),(81,23,'2012-03-02 21:32:30','2012-03-02 21:32:48',1,0,1,'billing','staff@tresoldi.net',NULL,'stefano',NULL,'tresoldi',NULL,NULL,'Via Confalonieri','Monza','mb',NULL,NULL,'IT','123123',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,0,'0.0000','0.0000'),(82,23,'2012-03-02 21:32:30','2012-03-02 21:32:48',1,0,1,'shipping','staff@tresoldi.net',NULL,'stefano',NULL,'tresoldi',NULL,NULL,'Via Confalonieri','Monza','mb',NULL,NULL,'IT','123123',NULL,1,0,0,'flatrate_flatrate','A mezzo corriere - Costo di spedizione','1.0000','578.5100','578.5100','0.0000','0.0000','121.4900','121.4900','5.0000','5.0000','0.0000','0.0000','0.0000','0.0000','705.0000','705.0000',NULL,'a:1:{s:6:\"Iva 21\";a:6:{s:5:\"rates\";a:1:{i:0;a:6:{s:4:\"code\";s:6:\"Iva 21\";s:5:\"title\";s:6:\"Iva 21\";s:7:\"percent\";d:21;s:8:\"position\";s:1:\"1\";s:8:\"priority\";s:1:\"1\";s:7:\"rule_id\";s:1:\"1\";}}s:7:\"percent\";d:21;s:2:\"id\";s:6:\"Iva 21\";s:7:\"process\";i:0;s:6:\"amount\";d:121.4899999999999948840923025272786617279052734375;s:11:\"base_amount\";d:121.4899999999999948840923025272786617279052734375;}}',NULL,'0.0000','0.0000','700.0000',NULL,'0.0000','0.0000','0.0000',NULL,'5.0000','5.0000',NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,0,'0.0000','0.0000'),(85,24,'2012-03-03 09:07:14','2012-03-03 09:08:40',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IT',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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',NULL,NULL,NULL,NULL,0,'0.0000','0.0000'),(86,24,'2012-03-03 09:07:14','2012-03-03 09:08:41',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'IT',NULL,NULL,1,0,0,'flatrate_flatrate','A mezzo corriere - Costo di spedizione','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,'0.0000','0.0000','0.0000','0.0000','a:0:{}','a:0:{}',0,'0.0000','0.0000',NULL,0,'0.0000','0.0000'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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', `gomage_gift_wrap` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Gift Wrap', `gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Wrap Amount', `base_gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Wrap Amount', 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`), CONSTRAINT `FK_2EF8E28181D666D94D4E30DC2B0F80BF` FOREIGN KEY (`quote_item_id`) REFERENCES `sales_flat_quote_item` (`item_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_A345FC758F20C314169CE27DCE53477F` FOREIGN KEY (`parent_item_id`) REFERENCES `sales_flat_quote_address_item` (`address_item_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_B521389746C00700D1B2B76EBBE53854` FOREIGN KEY (`quote_address_id`) REFERENCES `sales_flat_quote_address` (`address_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address Item'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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', `gomage_gift_wrap` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT 'Is Gift Wrap', `gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Wrap Amount', `base_gomage_gift_wrap_amount` decimal(12,4) NOT NULL DEFAULT '0.0000' COMMENT 'Base Wrap Amount', 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`), CONSTRAINT `FK_B201DEB5DE51B791AF5C5BF87053C5A7` FOREIGN KEY (`parent_item_id`) REFERENCES `sales_flat_quote_item` (`item_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_QUOTE_ITEM_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_QUOTE_ITEM_QUOTE_ID_SALES_FLAT_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `sales_flat_quote` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_QUOTE_ITEM_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item'; /*!40101 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,1,'2012-02-16 06:37:11','2012-02-16 06:37:11',1,1,NULL,0,'000000','Prodotto di Test',NULL,NULL,NULL,0,0,0,NULL,'1.0000','99.0000','99.0000',NULL,'0.0000','0.0000','0.0000','21.0000','20.7900','20.7900','99.0000','99.0000','0.0000','0.0000','simple',NULL,NULL,NULL,NULL,NULL,'119.7900','119.7900','119.7900','119.7900',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(2,2,'2012-02-16 09:07:34','2012-02-16 09:07:34',1,1,NULL,0,'16010849','FinePix AV100',NULL,NULL,NULL,0,0,0,NULL,'1.0000','99.0000','99.0000',NULL,'0.0000','0.0000','0.0000','21.0000','20.7900','20.7900','99.0000','99.0000','0.0000','0.0000','simple',NULL,NULL,NULL,NULL,NULL,'119.7900','119.7900','119.7900','119.7900',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(3,3,'2012-02-20 15:17:54','2012-02-20 15:17:54',2,1,NULL,0,'99999999','FinePix AV100 Rosso',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','100.0000','100.0000',NULL,'0.0000','0.0000','0.0000','21.0000','21.0000','21.0000','100.0000','100.0000','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'121.0000','121.0000','121.0000','121.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(4,4,'2012-02-21 13:22:52','2012-02-21 13:22:52',5,1,NULL,0,'16199229','Fujifilm X-S1',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','1550.0000','1550.0000',NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','1550.0000','1550.0000','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'1550.0000','1550.0000','1550.0000','1550.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(5,5,'2012-02-22 09:28:37','2012-02-22 09:28:37',5,1,NULL,0,'16199229','Fujifilm X-S1',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','1550.0000','1550.0000',NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','1550.0000','1550.0000','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'1550.0000','1550.0000','1550.0000','1550.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(6,6,'2012-02-22 09:28:53','2012-02-22 09:28:53',5,1,NULL,0,'16199229','Fujifilm X-S1',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','1550.0000','1550.0000',NULL,'0.0000','0.0000','0.0000','0.0000','0.0000','0.0000','1550.0000','1550.0000','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'1550.0000','1550.0000','1550.0000','1550.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(7,7,'2012-02-22 13:30:39','2012-02-22 13:30:39',2,1,NULL,0,'99999999','FinePix AV100 Rosso',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','100.0000','100.0000',NULL,'0.0000','0.0000','0.0000','21.0000','21.0000','21.0000','100.0000','100.0000','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'121.0000','121.0000','121.0000','121.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(14,8,'2012-02-23 08:09:53','2012-02-23 08:10:01',6,1,NULL,0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','578.5100','578.5100',NULL,'0.0000','0.0000','0.0000','21.0000','121.4900','121.4900','578.5100','578.5100','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(15,10,'2012-02-27 15:49:30','2012-02-27 15:49:30',2,1,NULL,0,'99999999','FinePix AV100 Rosso',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','82.6400','82.6400',NULL,'0.0000','0.0000','0.0000','21.0000','17.3600','17.3600','82.6400','82.6400','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'100.0000','100.0000','100.0000','100.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(16,11,'2012-02-27 15:49:35','2012-02-27 15:49:35',4,1,NULL,0,'16190120','FinePix X10',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','413.2200','413.2200',NULL,'0.0000','0.0000','0.0000','21.0000','86.7800','86.7800','413.2200','413.2200','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'500.0000','500.0000','500.0000','500.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(17,12,'2012-03-01 06:58:04','2012-03-01 06:58:04',6,1,NULL,0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','578.5100','578.5100',NULL,'0.0000','0.0000','0.0000','21.0000','121.4900','121.4900','578.5100','578.5100','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(18,13,'2012-03-02 09:24:23','2012-03-02 09:24:23',6,1,NULL,0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','578.5100','578.5100',NULL,'0.0000','0.0000','0.0000','21.0000','121.4900','121.4900','578.5100','578.5100','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(19,14,'2012-03-02 09:28:59','2012-03-02 09:28:59',6,1,NULL,0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','578.5100','578.5100',NULL,'0.0000','0.0000','0.0000','21.0000','121.4900','121.4900','578.5100','578.5100','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(20,15,'2012-03-02 12:36:43','2012-03-02 12:36:43',2,1,NULL,0,'99999999','FinePix AV100 Rosso',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','82.6400','82.6400',NULL,'0.0000','0.0000','0.0000','21.0000','17.3600','17.3600','82.6400','82.6400','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'100.0000','100.0000','100.0000','100.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(21,16,'2012-03-02 12:37:11','2012-03-02 12:37:11',6,1,NULL,0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','578.5100','578.5100',NULL,'0.0000','0.0000','0.0000','21.0000','121.4900','121.4900','578.5100','578.5100','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(22,17,'2012-03-02 12:48:18','2012-03-02 12:48:18',6,1,NULL,0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','578.5100','578.5100',NULL,'0.0000','0.0000','0.0000','21.0000','121.4900','121.4900','578.5100','578.5100','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(23,18,'2012-03-02 13:18:45','2012-03-02 13:18:45',6,1,NULL,0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','578.5100','578.5100',NULL,'0.0000','0.0000','0.0000','21.0000','121.4900','121.4900','578.5100','578.5100','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(24,19,'2012-03-02 13:53:19','2012-03-02 21:30:15',6,1,NULL,0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,'1.0000','3.0000','578.5100','578.5100',NULL,'0.0000','0.0000','0.0000','21.0000','364.4600','364.4600','1735.5400','1735.5400','0.0000','3.0000','simple',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','2100.0000','2100.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(25,20,'2012-03-02 14:03:14','2012-03-02 14:03:14',6,1,NULL,0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','578.5100','578.5100',NULL,'0.0000','0.0000','0.0000','21.0000','121.4900','121.4900','578.5100','578.5100','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(26,21,'2012-03-02 15:17:17','2012-03-02 15:17:17',6,1,NULL,0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','578.5100','578.5100',NULL,'0.0000','0.0000','0.0000','21.0000','121.4900','121.4900','578.5100','578.5100','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'),(29,23,'2012-03-02 21:32:30','2012-03-02 21:32:30',6,1,NULL,0,'16128335','Fujifilm X100',NULL,NULL,NULL,0,0,0,'1.0000','1.0000','578.5100','578.5100',NULL,'0.0000','0.0000','0.0000','21.0000','121.4900','121.4900','578.5100','578.5100','0.0000','1.0000','simple',NULL,NULL,NULL,NULL,NULL,'700.0000','700.0000','700.0000','700.0000',NULL,NULL,NULL,'0.0000','0.0000','0.0000','0.0000','a:0:{}','0.0000','0.0000','0.0000',NULL,0,'0.0000','0.0000'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_5F20E478CA64B6891EA8A9D6C2735739` FOREIGN KEY (`item_id`) REFERENCES `sales_flat_quote_item` (`item_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item Option'; /*!40101 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,1,'info_buyRequest','a:3:{s:7:\"product\";s:1:\"1\";s:4:\"uenc\";s:60:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvcHJvZG90dG8tZGktdGVzdC5odG1s\";s:3:\"qty\";i:1;}'),(2,2,1,'info_buyRequest','a:4:{s:4:\"uenc\";s:68:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZmluZXBpeC1hdjEwMC5odG1sP19fX1NJRD1V\";s:7:\"product\";s:1:\"1\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}'),(3,3,2,'info_buyRequest','a:4:{s:4:\"uenc\";s:100:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9maW5lcGl4LWF2MTAwLTIuaHRtbD9fX19TSUQ9VQ,,\";s:7:\"product\";s:1:\"2\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}'),(4,4,5,'info_buyRequest','a:4:{s:4:\"uenc\";s:56:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZnVqaWZpbG0teC1zMS5odG1s\";s:7:\"product\";s:1:\"5\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}'),(5,5,5,'info_buyRequest','a:4:{s:4:\"uenc\";s:56:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZnVqaWZpbG0teC1zMS5odG1s\";s:7:\"product\";s:1:\"5\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}'),(6,6,5,'info_buyRequest','a:4:{s:4:\"uenc\";s:84:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmlsbS14LXMxLmh0bWw,\";s:7:\"product\";s:1:\"5\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}'),(7,7,2,'info_buyRequest','a:3:{s:4:\"uenc\";s:64:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s\";s:7:\"product\";s:1:\"2\";s:3:\"qty\";i:1;}'),(14,14,6,'info_buyRequest','a:4:{s:4:\"uenc\";s:56:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZnVqaWZpbG0teDEwMC5odG1s\";s:7:\"product\";s:1:\"6\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}'),(15,15,2,'info_buyRequest','a:3:{s:4:\"uenc\";s:64:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s\";s:7:\"product\";s:1:\"2\";s:3:\"qty\";i:1;}'),(16,16,4,'info_buyRequest','a:3:{s:4:\"uenc\";s:64:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s\";s:7:\"product\";s:1:\"4\";s:3:\"qty\";i:1;}'),(17,17,6,'info_buyRequest','a:4:{s:4:\"uenc\";s:104:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s\";s:7:\"product\";s:1:\"6\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}'),(18,18,6,'info_buyRequest','a:3:{s:4:\"uenc\";s:88:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,\";s:7:\"product\";s:1:\"6\";s:3:\"qty\";i:1;}'),(19,19,6,'info_buyRequest','a:3:{s:4:\"uenc\";s:88:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,\";s:7:\"product\";s:1:\"6\";s:3:\"qty\";i:1;}'),(20,20,2,'info_buyRequest','a:4:{s:4:\"uenc\";s:88:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9maW5lcGl4LWF2MTAwLTIuaHRtbA,,\";s:7:\"product\";s:1:\"2\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}'),(21,21,6,'info_buyRequest','a:4:{s:4:\"uenc\";s:104:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s\";s:7:\"product\";s:1:\"6\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}'),(22,22,6,'info_buyRequest','a:3:{s:4:\"uenc\";s:64:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS5odG1s\";s:7:\"product\";s:1:\"6\";s:3:\"qty\";i:1;}'),(23,23,6,'info_buyRequest','a:4:{s:4:\"uenc\";s:104:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s\";s:7:\"product\";s:1:\"6\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";i:1;}'),(24,24,6,'info_buyRequest','a:4:{s:4:\"uenc\";s:104:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s\";s:7:\"product\";s:1:\"6\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}'),(25,25,6,'info_buyRequest','a:3:{s:4:\"uenc\";s:88:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,\";s:7:\"product\";s:1:\"6\";s:3:\"qty\";i:1;}'),(26,26,6,'info_buyRequest','a:4:{s:4:\"uenc\";s:104:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXgvZnVqaWZpbG0teDEwMC5odG1s\";s:7:\"product\";s:1:\"6\";s:15:\"related_product\";s:0:\"\";s:3:\"qty\";s:1:\"1\";}'),(29,29,6,'info_buyRequest','a:3:{s:4:\"uenc\";s:88:\"aHR0cDovL3NnZnVqaS5jb20vc2hvcDEvZm90b2NhbWVyZS1kaWdpdGFsaS9mdWppZmxtLXNlcmllLXguaHRtbA,,\";s:7:\"product\";s:1:\"6\";s:3:\"qty\";i:1;}'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_SALES_FLAT_QUOTE_PAYMENT_QUOTE_ID_SALES_FLAT_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `sales_flat_quote` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Payment'; /*!40101 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 */; INSERT INTO `sales_flat_quote_payment` VALUES (1,6,'2012-02-22 09:37:09','2012-02-22 10:13:24',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,5,'2012-02-22 10:11:45','2012-02-22 10:11:45',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,7,'2012-02-22 13:30:54','2012-02-22 13:38:22',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,8,'2012-02-23 08:01:40','2012-02-23 08:01:40',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,9,'2012-02-23 08:06:46','2012-02-23 08:06:46',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,13,'2012-03-02 09:24:49','2012-03-02 09:27:06','keyclient',NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,14,'2012-03-02 09:29:08','2012-03-02 09:31:32','keyclient',NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,15,'2012-03-02 12:36:51','2012-03-02 12:37:56','keyclient',NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,16,'2012-03-02 12:37:17','2012-03-02 12:47:34','keyclient',NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,17,'2012-03-02 12:48:27','2012-03-02 12:49:33','keyclient',NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,18,'2012-03-02 13:19:55','2012-03-02 13:23:46','keyclient',NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(12,19,'2012-03-02 13:54:15','2012-03-02 21:30:44','keyclient',NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,20,'2012-03-02 14:03:52','2012-03-02 14:07:28','keyclient',NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,21,'2012-03-02 15:17:30','2012-03-02 15:19:13','keyclient',NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16,23,'2012-03-02 21:32:33','2012-03-02 21:32:48',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17,24,'2012-03-03 09:07:16','2012-03-03 09:08:40',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_B1F177EFB73D3EDF5322BA64AC48D150` FOREIGN KEY (`address_id`) REFERENCES `sales_flat_quote_address` (`address_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Shipping Rate'; /*!40101 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 */; INSERT INTO `sales_flat_quote_shipping_rate` VALUES (3,52,'2012-03-02 09:26:54','2012-03-02 09:27:06','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,'5.0000',NULL,'Fixed'),(6,54,'2012-03-02 09:31:29','2012-03-02 09:31:32','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,'5.0000',NULL,'Fixed'),(9,58,'2012-03-02 12:37:51','2012-03-02 12:37:56','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,'5.0000',NULL,'Fixed'),(12,62,'2012-03-02 12:47:13','2012-03-02 12:47:34','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,'5.0000',NULL,'Fixed'),(15,64,'2012-03-02 12:49:03','2012-03-02 12:49:33','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,'5.0000',NULL,'Fixed'),(18,66,'2012-03-02 13:22:49','2012-03-02 13:23:46','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,'5.0000',NULL,'Fixed'),(26,72,'2012-03-02 14:07:24','2012-03-02 14:07:28','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,'5.0000',NULL,'Fixed'),(29,76,'2012-03-02 15:18:54','2012-03-02 15:19:13','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,'5.0000',NULL,'Fixed'),(83,68,'2012-03-02 21:30:43','2012-03-02 21:30:43','flatrate','A mezzo corriere','flatrate_flatrate','flatrate',NULL,'5.0000',NULL,'Costo di spedizione'),(86,82,'2012-03-02 21:32:48','2012-03-02 21:32:48','flatrate','A mezzo corriere','flatrate_flatrate','flatrate',NULL,'5.0000',NULL,'Costo di spedizione'),(90,86,'2012-03-03 09:08:41','2012-03-03 09:08:41','flatrate','A mezzo corriere','flatrate_flatrate','flatrate',NULL,'0.0000',NULL,'Costo di spedizione'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_FLAT_SHIPMENT_ORDER_ID_SALES_FLAT_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_SHIPMENT_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_C2D69CC1FB03D2B2B794B0439F6650CF` FOREIGN KEY (`parent_id`) REFERENCES `sales_flat_shipment` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Comment'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_FLAT_SHIPMENT_GRID_ENTT_ID_SALES_FLAT_SHIPMENT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `sales_flat_shipment` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_FLAT_SHIPMENT_GRID_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Grid'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_3AECE5007D18F159231B87E8306FC02A` FOREIGN KEY (`parent_id`) REFERENCES `sales_flat_shipment` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Item'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_BCD2FA28717D29F37E10A153E6F2F841` FOREIGN KEY (`parent_id`) REFERENCES `sales_flat_shipment` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Track'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_INVOICED_AGGREGATED_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_INVOICED_AGGREGATED_ORDER_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated Order'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_ORDER_AGGREGATED_CREATED_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Created'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_ORDER_AGGREGATED_UPDATED_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Updated'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table'; /*!40101 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'),('cancel_ogone','Cancelled Ogone'),('closed','Closed'),('complete','Complete'),('decline_ogone','Declined Ogone'),('fraud','Suspected Fraud'),('holded','On Hold'),('payment_review','Payment Review'),('pending','Pending'),('pending_ogone','Pending Ogone'),('pending_payment','Pending Payment'),('pending_paypal','Pending PayPal'),('processed_ogone','Processed Ogone Payment'),('processing','Processing'),('processing_ogone','Processing Ogone Payment'),('waiting_authorozation','Waiting Authorization'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_ORDER_STATUS_LABEL_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_ORDER_STATUS_LABEL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Label Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_ORDER_STATUS_STATE_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table'; /*!40101 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_ogone','pending_payment',0),('pending_payment','pending_payment',1),('processed_ogone','processing',0),('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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Table'; /*!40101 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 */; INSERT INTO `sales_order_tax` VALUES (1,1,'Iva 21','Iva 21','21.0000','121.4900',1,1,'121.4900',0,'121.4900',0),(2,2,'Iva 21','Iva 21','21.0000','121.4900',1,1,'121.4900',0,'121.4900',0),(3,3,'Iva 21','Iva 21','21.0000','17.3600',1,1,'17.3600',0,'17.3600',0),(4,4,'Iva 21','Iva 21','21.0000','121.4900',1,1,'121.4900',0,'121.4900',0),(5,5,'Iva 21','Iva 21','21.0000','121.4900',1,1,'121.4900',0,'121.4900',0),(6,6,'Iva 21','Iva 21','21.0000','121.4900',1,1,'121.4900',0,'121.4900',0),(7,7,'Iva 21','Iva 21','21.0000','121.4900',1,1,'121.4900',0,'121.4900',0),(8,8,'Iva 21','Iva 21','21.0000','121.4900',1,1,'121.4900',0,'121.4900',0),(9,9,'Iva 21','Iva 21','21.0000','364.4600',1,1,'364.4600',0,'364.4600',0); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_ORDER_TAX_ITEM_ITEM_ID_SALES_FLAT_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `sales_flat_order_item` (`item_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_ORDER_TAX_ITEM_TAX_ID_SALES_ORDER_TAX_TAX_ID` FOREIGN KEY (`tax_id`) REFERENCES `sales_order_tax` (`tax_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Item'; /*!40101 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 */; INSERT INTO `sales_order_tax_item` VALUES (1,1,1,'21.0000'),(2,2,2,'21.0000'),(3,3,3,'21.0000'),(4,4,4,'21.0000'),(5,5,5,'21.0000'),(6,6,6,'21.0000'),(7,7,7,'21.0000'),(8,8,8,'21.0000'),(9,9,9,'21.0000'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_B99FF1A06402D725EBDB0F3A7ECD47A2` FOREIGN KEY (`parent_id`) REFERENCES `sales_payment_transaction` (`transaction_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_DA51A10B2405B64A4DAEF77A64F0DAAD` FOREIGN KEY (`payment_id`) REFERENCES `sales_flat_order_payment` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALES_PAYMENT_TRANSACTION_ORDER_ID_SALES_FLAT_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Sales Payment Transaction'; /*!40101 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 */; INSERT INTO `sales_payment_transaction` VALUES (1,NULL,6,6,'TESTOK',NULL,'capture',1,'a:1:{s:16:\"raw_details_info\";a:5:{s:7:\"Importo\";d:0.01000000000000000020816681711721685132943093776702880859375;s:30:\"Codice Autorizzazione Circuito\";s:6:\"TESTOK\";s:21:\"Circuito di Pagamento\";s:10:\"MasterCard\";s:44:\"Nome e Cognome dell\'intestatario della Carta\";s:12:\"stefano luca\";s:46:\"Indirizzo e-mail dell\'Intestatario della Carta\";s:18:\"staff@tresoldi.net\";}}','2012-03-02 13:29:53'),(2,NULL,7,7,'TESTOK',NULL,'capture',1,'a:1:{s:16:\"raw_details_info\";a:5:{s:7:\"Importo\";d:0.01000000000000000020816681711721685132943093776702880859375;s:30:\"Codice Autorizzazione Circuito\";s:6:\"TESTOK\";s:21:\"Circuito di Pagamento\";s:10:\"MasterCard\";s:44:\"Nome e Cognome dell\'intestatario della Carta\";s:12:\"stefano luca\";s:46:\"Indirizzo e-mail dell\'Intestatario della Carta\";s:18:\"staff@tresoldi.net\";}}','2012-03-02 14:08:49'),(3,NULL,8,8,NULL,NULL,'void',0,'a:1:{s:16:\"raw_details_info\";a:5:{s:7:\"Importo\";d:0.01000000000000000020816681711721685132943093776702880859375;s:30:\"Codice Autorizzazione Circuito\";N;s:21:\"Circuito di Pagamento\";N;s:44:\"Nome e Cognome dell\'intestatario della Carta\";s:1:\" \";s:46:\"Indirizzo e-mail dell\'Intestatario della Carta\";N;}}','2012-03-02 15:20:54'),(4,NULL,9,9,'TESTOK',NULL,'capture',1,'a:1:{s:16:\"raw_details_info\";a:5:{s:7:\"Importo\";d:0.01000000000000000020816681711721685132943093776702880859375;s:30:\"Codice Autorizzazione Circuito\";s:6:\"TESTOK\";s:21:\"Circuito di Pagamento\";s:10:\"MasterCard\";s:44:\"Nome e Cognome dell\'intestatario della Carta\";s:12:\"stefano luca\";s:46:\"Indirizzo e-mail dell\'Intestatario della Carta\";s:18:\"staff@tresoldi.net\";}}','2012-03-02 21:31:41'); /*!40000 ALTER TABLE `sales_payment_transaction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_recurring_profile` -- DROP TABLE IF EXISTS `sales_recurring_profile`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP 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`), CONSTRAINT `FK_SALES_RECURRING_PROFILE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `FK_SALES_RECURRING_PROFILE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Recurring Profile'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_7FF85741C66DCD37A4FBE3E3255A5A01` FOREIGN KEY (`order_id`) REFERENCES `sales_flat_order` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_B8A7A5397B67455786E55461748C59F4` FOREIGN KEY (`profile_id`) REFERENCES `sales_recurring_profile` (`profile_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Recurring Profile Order'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_REFUNDED_AGGREGATED_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated Order'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_SHIPPING_AGGREGATED_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated Order'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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 COMMENT 'From Date', `to_date` date DEFAULT NULL COMMENT 'To Date', `uses_per_customer` int(11) NOT NULL DEFAULT '0' COMMENT 'Uses Per Customer', `customer_group_ids` text COMMENT 'Customer Group Ids', `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', `website_ids` text COMMENT 'Website Ids', `coupon_type` smallint(5) unsigned NOT NULL DEFAULT '1' COMMENT 'Coupon Type', PRIMARY KEY (`rule_id`), KEY `IDX_SALESRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', 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`), CONSTRAINT `FK_SALESRULE_COUPON_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALESRULE_COUPON_USAGE_COUPON_ID_SALESRULE_COUPON_COUPON_ID` FOREIGN KEY (`coupon_id`) REFERENCES `salesrule_coupon` (`coupon_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALESRULE_COUPON_USAGE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon Usage'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALESRULE_CUSTOMER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALESRULE_CUSTOMER_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Customer'; /*!40101 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_label` -- DROP TABLE IF EXISTS `salesrule_label`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALESRULE_LABEL_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_SALESRULE_LABEL_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Label'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SALESRULE_PRD_ATTR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `FK_SALESRULE_PRD_ATTR_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `FK_SALESRULE_PRD_ATTR_WS_ID_CORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE NO ACTION, CONSTRAINT `FK_SALESRULE_PRODUCT_ATTRIBUTE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Product Attribute'; /*!40101 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 `sendfriend_log` -- DROP TABLE IF EXISTS `sendfriend_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Send to friend function log storage table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Shipping Tablerate'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_SITEMAP_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Google Sitemap'; /*!40101 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 `sm_products_filter` -- DROP TABLE IF EXISTS `sm_products_filter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sm_products_filter` ( `id` int(11) NOT NULL AUTO_INCREMENT, `filter_str` varchar(255) DEFAULT NULL, `condition_str` text NOT NULL, `search_in_description` tinyint(1) unsigned NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sm_products_filter` -- LOCK TABLES `sm_products_filter` WRITE; /*!40000 ALTER TABLE `sm_products_filter` DISABLE KEYS */; /*!40000 ALTER TABLE `sm_products_filter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tag` -- DROP TABLE IF EXISTS `tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_TAG_FIRST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`first_customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL ON UPDATE NO ACTION, CONSTRAINT `FK_TAG_FIRST_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`first_store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tag` -- LOCK TABLES `tag` WRITE; /*!40000 ALTER TABLE `tag` DISABLE KEYS */; /*!40000 ALTER TABLE `tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tag_properties` -- DROP TABLE IF EXISTS `tag_properties`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_TAG_PROPERTIES_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_TAG_PROPERTIES_TAG_ID_TAG_TAG_ID` FOREIGN KEY (`tag_id`) REFERENCES `tag` (`tag_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Properties'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_TAG_RELATION_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_TAG_RELATION_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_TAG_RELATION_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_TAG_RELATION_TAG_ID_TAG_TAG_ID` FOREIGN KEY (`tag_id`) REFERENCES `tag` (`tag_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Relation'; /*!40101 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 */; /*!40000 ALTER TABLE `tag_relation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tag_summary` -- DROP TABLE IF EXISTS `tag_summary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_TAG_SUMMARY_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_TAG_SUMMARY_TAG_ID_TAG_TAG_ID` FOREIGN KEY (`tag_id`) REFERENCES `tag` (`tag_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Summary'; /*!40101 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 */; /*!40000 ALTER TABLE `tag_summary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_calculation` -- DROP TABLE IF EXISTS `tax_calculation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID_TAX_CLASS_CLASS_ID` FOREIGN KEY (`customer_tax_class_id`) REFERENCES `tax_class` (`class_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_TAX_CALCULATION_PRODUCT_TAX_CLASS_ID_TAX_CLASS_CLASS_ID` FOREIGN KEY (`product_tax_class_id`) REFERENCES `tax_class` (`class_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_TAX_CALC_TAX_CALC_RATE_ID_TAX_CALC_RATE_TAX_CALC_RATE_ID` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_TAX_CALC_TAX_CALC_RULE_ID_TAX_CALC_RULE_TAX_CALC_RULE_ID` FOREIGN KEY (`tax_calculation_rule_id`) REFERENCES `tax_calculation_rule` (`tax_calculation_rule_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation'; /*!40101 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 (7,3,1,3,2),(8,3,1,3,4); /*!40000 ALTER TABLE `tax_calculation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_calculation_rate` -- DROP TABLE IF EXISTS `tax_calculation_rate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate'; /*!40101 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 (3,'IT',0,'*','Iva 21','21.0000',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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_37FB965F786AD5897BB3AE90470C42AB` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_TAX_CALCULATION_RATE_TITLE_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate Title'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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', 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=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rule'; /*!40101 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); /*!40000 ALTER TABLE `tax_calculation_rule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tax_class` -- DROP TABLE IF EXISTS `tax_class`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Tax Class'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_TAX_ORDER_AGGREGATED_CREATED_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregation'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_TAX_ORDER_AGGREGATED_UPDATED_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregated Updated'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_WEEE_DISCOUNT_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_WEEE_DISCOUNT_ENTITY_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_WEEE_DISCOUNT_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Weee Discount'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_WEEE_TAX_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_WEEE_TAX_COUNTRY_DIRECTORY_COUNTRY_COUNTRY_ID` FOREIGN KEY (`country`) REFERENCES `directory_country` (`country_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_WEEE_TAX_ENTITY_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_WEEE_TAX_WEBSITE_ID_CORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `core_website` (`website_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Weee Tax'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB DEFAULT CHARSET=utf8 COMMENT='Preconfigured Widgets'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Instances of Widget for Package Theme'; /*!40101 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,'cms/widget_block','pro/default','globalNavigation','0','a:1:{s:8:\"block_id\";s:1:\"2\";}',0),(2,'cms/widget_block','pro/default','SliderHomeFuji','0','a:1:{s:8:\"block_id\";s:1:\"3\";}',0); /*!40000 ALTER TABLE `widget_instance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widget_instance_page` -- DROP TABLE IF EXISTS `widget_instance_page`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_WIDGET_INSTANCE_PAGE_INSTANCE_ID_WIDGET_INSTANCE_INSTANCE_ID` FOREIGN KEY (`instance_id`) REFERENCES `widget_instance` (`instance_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Instance of Widget on Page'; /*!40101 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,'all_pages','default','top.menu','all','','cms/widget/static_block/default.phtml'),(2,2,'pages','cms_index_index','content','all','','cms/widget/static_block/default.phtml'); /*!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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_0A5D06DCEC6A6845F50E5FAAC5A1C96D` FOREIGN KEY (`layout_update_id`) REFERENCES `core_layout_update` (`layout_update_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_WIDGET_INSTANCE_PAGE_LYT_PAGE_ID_WIDGET_INSTANCE_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `widget_instance_page` (`page_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout updates'; /*!40101 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,2),(2,9); /*!40000 ALTER TABLE `widget_instance_page_layout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wishlist` -- DROP TABLE IF EXISTS `wishlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_WISHLIST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist main Table'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_WISHLIST_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `FK_WISHLIST_ITEM_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE CASCADE, CONSTRAINT `FK_WISHLIST_ITEM_WISHLIST_ID_WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `wishlist` (`wishlist_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist items'; /*!40101 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`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 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`), CONSTRAINT `FK_A014B30B04B72DD0EAB3EECD779728D6` FOREIGN KEY (`wishlist_item_id`) REFERENCES `wishlist_item` (`wishlist_item_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist Item Option Table'; /*!40101 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; -- -- Table structure for table `xmlconnect_application` -- DROP TABLE IF EXISTS `xmlconnect_application`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xmlconnect_application` ( `application_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Application Id', `name` varchar(255) NOT NULL COMMENT 'Application Name', `code` varchar(32) NOT NULL COMMENT 'Application Code', `type` varchar(32) NOT NULL COMMENT 'Device Type', `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id', `active_from` date DEFAULT NULL COMMENT 'Active From', `active_to` date DEFAULT NULL COMMENT 'Active To', `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At', `status` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Status', `browsing_mode` smallint(5) unsigned DEFAULT '0' COMMENT 'Browsing Mode', PRIMARY KEY (`application_id`), UNIQUE KEY `UNQ_XMLCONNECT_APPLICATION_CODE` (`code`), KEY `FK_XMLCONNECT_APPLICATION_STORE_ID_CORE_STORE_STORE_ID` (`store_id`), CONSTRAINT `FK_XMLCONNECT_APPLICATION_STORE_ID_CORE_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `core_store` (`store_id`) ON DELETE SET NULL ON UPDATE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Xmlconnect Application'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xmlconnect_application` -- LOCK TABLES `xmlconnect_application` WRITE; /*!40000 ALTER TABLE `xmlconnect_application` DISABLE KEYS */; /*!40000 ALTER TABLE `xmlconnect_application` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xmlconnect_config_data` -- DROP TABLE IF EXISTS `xmlconnect_config_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xmlconnect_config_data` ( `application_id` smallint(5) unsigned NOT NULL COMMENT 'Application Id', `category` varchar(60) NOT NULL DEFAULT 'default' COMMENT 'Category', `path` varchar(250) NOT NULL COMMENT 'Path', `value` text NOT NULL COMMENT 'Value', UNIQUE KEY `UNQ_XMLCONNECT_CONFIG_DATA_APPLICATION_ID_CATEGORY_PATH` (`application_id`,`category`,`path`), CONSTRAINT `FK_31EE36D814216200D7C0723145AC510E` FOREIGN KEY (`application_id`) REFERENCES `xmlconnect_application` (`application_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Xmlconnect Configuration Data'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xmlconnect_config_data` -- LOCK TABLES `xmlconnect_config_data` WRITE; /*!40000 ALTER TABLE `xmlconnect_config_data` DISABLE KEYS */; /*!40000 ALTER TABLE `xmlconnect_config_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xmlconnect_history` -- DROP TABLE IF EXISTS `xmlconnect_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xmlconnect_history` ( `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'History Id', `application_id` smallint(5) unsigned NOT NULL COMMENT 'Application Id', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At', `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store Id', `params` blob COMMENT 'Params', `title` varchar(200) NOT NULL COMMENT 'Title', `activation_key` varchar(255) NOT NULL COMMENT 'Activation Key', `name` varchar(255) NOT NULL COMMENT 'Application Name', `code` varchar(32) NOT NULL COMMENT 'Application Code', PRIMARY KEY (`history_id`), KEY `FK_8F08B9513373BC19F49EE3EF8340E270` (`application_id`), CONSTRAINT `FK_8F08B9513373BC19F49EE3EF8340E270` FOREIGN KEY (`application_id`) REFERENCES `xmlconnect_application` (`application_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Xmlconnect History'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xmlconnect_history` -- LOCK TABLES `xmlconnect_history` WRITE; /*!40000 ALTER TABLE `xmlconnect_history` DISABLE KEYS */; /*!40000 ALTER TABLE `xmlconnect_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xmlconnect_notification_template` -- DROP TABLE IF EXISTS `xmlconnect_notification_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xmlconnect_notification_template` ( `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Template Id', `name` varchar(255) NOT NULL COMMENT 'Template Name', `push_title` varchar(140) NOT NULL COMMENT 'Push Notification Title', `message_title` varchar(255) NOT NULL COMMENT 'Message Title', `content` text NOT NULL COMMENT 'Message Content', `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At', `modified_at` timestamp NULL DEFAULT NULL COMMENT 'Modified At', `application_id` smallint(5) unsigned NOT NULL COMMENT 'Application Id', PRIMARY KEY (`template_id`), KEY `FK_F9927C7518A907CF5C350942FD296DC3` (`application_id`), CONSTRAINT `FK_F9927C7518A907CF5C350942FD296DC3` FOREIGN KEY (`application_id`) REFERENCES `xmlconnect_application` (`application_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Xmlconnect Notification Template'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xmlconnect_notification_template` -- LOCK TABLES `xmlconnect_notification_template` WRITE; /*!40000 ALTER TABLE `xmlconnect_notification_template` DISABLE KEYS */; /*!40000 ALTER TABLE `xmlconnect_notification_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `xmlconnect_queue` -- DROP TABLE IF EXISTS `xmlconnect_queue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `xmlconnect_queue` ( `queue_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue Id', `create_time` timestamp NULL DEFAULT NULL COMMENT 'Created At', `exec_time` timestamp NULL DEFAULT NULL COMMENT 'Scheduled Execution Time', `template_id` int(10) unsigned NOT NULL COMMENT 'Template Id', `push_title` varchar(140) NOT NULL COMMENT 'Push Notification Title', `message_title` varchar(255) DEFAULT '' COMMENT 'Message Title', `content` text COMMENT 'Message Content', `status` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Status', `type` varchar(12) NOT NULL COMMENT 'Type of Notification', PRIMARY KEY (`queue_id`), KEY `FK_2019AEC5FC55A516965583447CA26B14` (`template_id`), CONSTRAINT `FK_2019AEC5FC55A516965583447CA26B14` FOREIGN KEY (`template_id`) REFERENCES `xmlconnect_notification_template` (`template_id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Xmlconnect Notification Queue'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `xmlconnect_queue` -- LOCK TABLES `xmlconnect_queue` WRITE; /*!40000 ALTER TABLE `xmlconnect_queue` DISABLE KEYS */; /*!40000 ALTER TABLE `xmlconnect_queue` ENABLE KEYS */; UNLOCK TABLES; /*!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 2012-03-05 4:16:08