-- 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
\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
\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
\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
\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
\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
\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
\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
\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
\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,'
\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
\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
\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','
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!
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.
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.
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
\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
\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,'