Your IP : 216.73.216.189


Current Path : /var/www/magento.test.indacotrentino.com/www/scripts/dump/
Upload File :
Current File : /var/www/magento.test.indacotrentino.com/www/scripts/dump/20220916_magento_test_indaco_store.sql

-- MySQL dump 10.19  Distrib 10.3.34-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost    Database: magento_indaco
-- ------------------------------------------------------
-- Server version	10.3.34-MariaDB-0ubuntu0.20.04.1

/*!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 utf8mb4 */;
/*!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_adobe_ims_webapi`
--

DROP TABLE IF EXISTS `admin_adobe_ims_webapi`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_adobe_ims_webapi` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `admin_user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Admin User Id',
  `access_token_hash` varchar(255) DEFAULT NULL COMMENT 'Access Token Hash',
  `access_token` text DEFAULT NULL COMMENT 'Access Token',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `last_check_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Last check time',
  `access_token_expires_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Access Token Expires At',
  PRIMARY KEY (`id`),
  UNIQUE KEY `ADMIN_ADOBE_IMS_WEBAPI_ACCESS_TOKEN_HASH` (`access_token_hash`),
  KEY `ADMIN_ADOBE_IMS_WEBAPI_ADMIN_USER_ID` (`admin_user_id`),
  CONSTRAINT `ADMIN_ADOBE_IMS_WEBAPI_ADMIN_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Adobe IMS Webapi';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_adobe_ims_webapi`
--

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

--
-- Table structure for table `admin_analytics_usage_version_log`
--

DROP TABLE IF EXISTS `admin_analytics_usage_version_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_analytics_usage_version_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `last_viewed_in_version` varchar(50) NOT NULL COMMENT 'Viewer last viewed on product version',
  PRIMARY KEY (`id`),
  UNIQUE KEY `ADMIN_ANALYTICS_USAGE_VERSION_LOG_LAST_VIEWED_IN_VERSION` (`last_viewed_in_version`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Admin Notification Viewer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_analytics_usage_version_log`
--

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

--
-- Table structure for table `admin_passwords`
--

DROP TABLE IF EXISTS `admin_passwords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_passwords` (
  `password_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Password ID',
  `user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'User ID',
  `password_hash` varchar(255) DEFAULT NULL COMMENT 'Password Hash',
  `expires` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Deprecated',
  `last_updated` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Last Updated',
  PRIMARY KEY (`password_id`),
  KEY `ADMIN_PASSWORDS_USER_ID` (`user_id`),
  CONSTRAINT `ADMIN_PASSWORDS_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Admin Passwords';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_passwords`
--

LOCK TABLES `admin_passwords` WRITE;
/*!40000 ALTER TABLE `admin_passwords` DISABLE KEYS */;
INSERT INTO `admin_passwords` VALUES (1,1,'403bc73c73e706575734bc4e54cf193194a2a3a863067fcfa47acabbd1092485:A1Jwz2PMLnQLlvt3hxCwhT3I6xqNYSQd:3_32_2_67108864',0,1659260864),(2,2,'fc7675c2005ff67d5333a8069287e748d1028a3a2a52b29fb93b8cd0758ebf21:Fz05KZcdlL7GDUgiJWEj8VONYFysMTbd:3_32_2_67108864',0,1659620639),(3,3,'a8d917b8975ad1edade24feb10c6c40505882514917555d6012508b384234812:3EEJ5wiys0f5fUnIR0CHh5z9srIEFvyB:3_32_2_67108864',0,1659692601);
/*!40000 ALTER TABLE `admin_passwords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_system_messages`
--

DROP TABLE IF EXISTS `admin_system_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_system_messages` (
  `identity` varchar(100) NOT NULL COMMENT 'Message ID',
  `severity` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Problem type',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Create date',
  PRIMARY KEY (`identity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin System Messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_system_messages`
--

LOCK TABLES `admin_system_messages` WRITE;
/*!40000 ALTER TABLE `admin_system_messages` DISABLE KEYS */;
INSERT INTO `admin_system_messages` VALUES ('48020c8a4512db709593af61d3b577a84b656d7785d9319e146c128646167e2d',2,'2022-09-09 08:03:25');
/*!40000 ALTER TABLE `admin_system_messages` 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(255) NOT NULL COMMENT 'User Password',
  `created` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'User Created Time',
  `modified` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() 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 DEFAULT NULL COMMENT 'User Extra Data',
  `rp_token` text DEFAULT NULL COMMENT 'Reset Password Link Token',
  `rp_token_created_at` timestamp NULL DEFAULT NULL COMMENT 'Reset Password Link Token Creation Date',
  `interface_locale` varchar(16) NOT NULL DEFAULT 'en_US' COMMENT 'Backend interface locale',
  `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 `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,'admin','indaco','roberto@torresani.eu','admin','403bc73c73e706575734bc4e54cf193194a2a3a863067fcfa47acabbd1092485:A1Jwz2PMLnQLlvt3hxCwhT3I6xqNYSQd:3_32_2_67108864','2022-07-31 09:47:44','2022-09-16 13:58:17','2022-09-16 13:58:17',293,0,1,'{\"configState\":{\"general_locale\":\"1\",\"general_store_information\":\"1\",\"general_region\":\"1\",\"general_country\":\"1\",\"general_single_store_mode\":\"0\",\"smtp_general\":\"1\",\"smtp_configuration_option\":\"1\",\"smtp_module\":\"1\",\"smtp_developer\":\"1\",\"mageplaza_general\":\"1\",\"buybutton_general_settings\":\"1\",\"oauth_consumer\":\"1\",\"oauth_access_token_lifetime\":\"0\",\"oauth_cleanup\":\"0\",\"oauth_authentication_lock\":\"0\",\"pr_gdpr_addon_general\":\"1\",\"pr_gdpr_addon_dashboard\":\"1\",\"plumbase_notifications\":\"1\",\"plumbase_menu\":\"1\",\"plumbase_system\":\"1\",\"plumbase_developer\":\"1\",\"plumbase_installed_extensions\":\"1\",\"prgdpr_dashboard\":\"1\",\"prgdpr_removal_settings\":\"1\",\"prgdpr_email\":\"1\",\"prgdpr_general\":\"1\",\"pr_cookie_main_settings\":\"1\",\"pr_cookie_cookie_notice\":\"1\",\"pr_cookie_settings_bar\":\"1\",\"pr_cookie_settings_link\":\"1\",\"pr_cookie_gtm\":\"1\",\"pr_cookie_general\":\"1\",\"web_cookie\":\"1\",\"web_url\":\"0\",\"web_seo\":\"0\",\"web_unsecure\":\"0\",\"web_secure\":\"0\",\"web_default\":\"0\",\"web_default_layouts\":\"0\",\"web_session\":\"0\",\"web_browser_capabilities\":\"0\",\"sales_pdf_invoice\":\"1\",\"sales_dashboard\":\"1\",\"sales_msrp\":\"1\",\"tax_classes\":\"1\",\"catalog_placeholder\":\"1\",\"catalog_search\":\"1\",\"system_upload_configuration\":\"1\",\"system_media_gallery\":\"1\",\"system_media_gallery_renditions\":\"1\",\"wishlist_general\":\"1\",\"wishlist_email\":\"1\",\"wishlist_wishlist_link\":\"1\",\"cataloginventory_options\":\"0\",\"cataloginventory_item_options\":\"0\",\"cataloginventory_bulk_operations\":\"0\",\"cataloginventory_indexer\":\"0\",\"cataloginventory_source_selection_distance_based\":\"0\",\"cataloginventory_source_selection_distance_based_google\":\"0\",\"catalog_review\":\"1\",\"catalog_fields_masks\":\"0\",\"catalog_frontend\":\"0\",\"catalog_productalert\":\"0\",\"catalog_productalert_cron\":\"0\",\"catalog_recently_products\":\"0\",\"catalog_product_video\":\"0\",\"catalog_price\":\"0\",\"catalog_layered_navigation\":\"0\",\"catalog_seo\":\"0\",\"catalog_navigation\":\"0\",\"catalog_downloadable\":\"0\",\"catalog_custom_options\":\"0\",\"blog_module\":\"1\",\"blog_general\":\"1\",\"blog_product_post\":\"0\",\"blog_sidebar\":\"0\",\"blog_monthly_archive\":\"0\",\"blog_comment\":\"0\",\"blog_seo\":\"0\",\"blog_share\":\"0\",\"multishipping_options\":\"1\"}}',NULL,NULL,'en_GB',0,NULL,NULL),(2,'Daniele','Dellagiacoma','daniele.dellagiacoma@deltainformatica.eu','ddellagiacoma','fc7675c2005ff67d5333a8069287e748d1028a3a2a52b29fb93b8cd0758ebf21:Fz05KZcdlL7GDUgiJWEj8VONYFysMTbd:3_32_2_67108864','2022-08-04 13:43:59','2022-09-09 08:15:39','2022-09-09 08:15:39',267,0,1,'{\"configState\":{\"oauth_consumer\":\"1\",\"oauth_access_token_lifetime\":\"0\",\"oauth_cleanup\":\"0\",\"oauth_authentication_lock\":\"0\"}}',NULL,NULL,'it_IT',0,NULL,NULL),(3,'Andrea','Gottardi','andrea.gottardi@deltainformatica.eu','agottardi','a8d917b8975ad1edade24feb10c6c40505882514917555d6012508b384234812:3EEJ5wiys0f5fUnIR0CHh5z9srIEFvyB:3_32_2_67108864','2022-08-05 09:43:21','2022-09-13 07:56:25',NULL,0,0,1,'null','0:3:UYAWg+sxXBB1YtqYObpLlAHGJTjJ/JWZCOjC7GBgz2cMxGkEd0MSXX9B56InkXMWUgZN9I+djhQkWDkO','2022-08-05 13:16:18','en_US',1,'2022-09-13 07:56:25',NULL);
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_user_expiration`
--

DROP TABLE IF EXISTS `admin_user_expiration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_user_expiration` (
  `user_id` int(10) unsigned NOT NULL COMMENT 'User ID',
  `expires_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'User Expiration Date',
  PRIMARY KEY (`user_id`),
  CONSTRAINT `ADMIN_USER_EXPIRATION_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin User expiration dates table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_user_expiration`
--

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

--
-- Table structure for table `admin_user_session`
--

DROP TABLE IF EXISTS `admin_user_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_user_session` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `session_id` varchar(1) DEFAULT NULL COMMENT 'Deprecated: Session ID value no longer used',
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'Admin User ID',
  `status` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Current Session status',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created Time',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Update Time',
  `ip` varchar(15) NOT NULL COMMENT 'Remote user IP',
  PRIMARY KEY (`id`),
  KEY `ADMIN_USER_SESSION_SESSION_ID` (`session_id`),
  KEY `ADMIN_USER_SESSION_USER_ID` (`user_id`),
  CONSTRAINT `ADMIN_USER_SESSION_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=122 DEFAULT CHARSET=utf8 COMMENT='Admin User sessions table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_user_session`
--

LOCK TABLES `admin_user_session` WRITE;
/*!40000 ALTER TABLE `admin_user_session` DISABLE KEYS */;
INSERT INTO `admin_user_session` VALUES (108,NULL,1,1,'2022-09-15 05:18:52','2022-09-15 05:30:10','217.171.64.89'),(109,NULL,1,1,'2022-09-15 06:32:17','2022-09-15 06:38:06','217.171.64.89'),(110,NULL,1,1,'2022-09-15 07:02:13','2022-09-15 07:02:13','93.40.240.77'),(111,NULL,1,1,'2022-09-15 08:34:28','2022-09-15 09:20:24','93.40.240.77'),(112,NULL,1,1,'2022-09-15 09:40:33','2022-09-15 09:40:33','93.40.240.77'),(113,NULL,1,1,'2022-09-15 12:11:31','2022-09-15 12:13:37','95.131.43.130'),(114,NULL,1,1,'2022-09-15 13:32:53','2022-09-15 13:43:02','93.40.240.77'),(115,NULL,1,1,'2022-09-15 14:00:52','2022-09-15 14:00:52','93.40.240.77'),(116,NULL,1,1,'2022-09-15 15:45:34','2022-09-15 16:02:03','93.40.240.77'),(117,NULL,1,2,'2022-09-16 10:14:30','2022-09-16 10:28:12','213.21.147.71'),(118,NULL,1,1,'2022-09-16 10:28:12','2022-09-16 10:30:26','213.21.147.71'),(119,NULL,1,1,'2022-09-16 10:49:55','2022-09-16 11:14:49','213.21.147.71'),(120,NULL,1,1,'2022-09-16 12:32:48','2022-09-16 12:35:12','213.21.147.71'),(121,NULL,1,1,'2022-09-16 13:58:17','2022-09-16 13:59:53','213.21.147.71');
/*!40000 ALTER TABLE `admin_user_session` 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() COMMENT 'Create date',
  `title` varchar(255) NOT NULL COMMENT 'Title',
  `description` text DEFAULT NULL 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 `ADMINNOTIFICATION_INBOX_SEVERITY` (`severity`),
  KEY `ADMINNOTIFICATION_INBOX_IS_READ` (`is_read`),
  KEY `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,'2022-07-31 09:47:43','Disable Notice','To improve performance, collecting statistics for the Magento Report module is disabled by default. \nYou can enable it in System Config.','',1,0);
/*!40000 ALTER TABLE `adminnotification_inbox` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `adobe_stock_asset`
--

DROP TABLE IF EXISTS `adobe_stock_asset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `adobe_stock_asset` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `media_gallery_id` int(10) unsigned DEFAULT NULL COMMENT 'Media gallery ID',
  `category_id` int(10) unsigned DEFAULT NULL COMMENT 'Category ID',
  `creator_id` int(10) unsigned DEFAULT NULL COMMENT 'Creator ID',
  `is_licensed` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Licensed',
  `creation_date` varchar(255) DEFAULT NULL COMMENT 'Creation Date',
  PRIMARY KEY (`id`),
  KEY `ADOBE_STOCK_ASSET_MEDIA_GALLERY_ID_MEDIA_GALLERY_ASSET_ID` (`media_gallery_id`),
  KEY `ADOBE_STOCK_ASSET_ID` (`id`),
  KEY `ADOBE_STOCK_ASSET_CATEGORY_ID` (`category_id`),
  KEY `ADOBE_STOCK_ASSET_CREATOR_ID` (`creator_id`),
  CONSTRAINT `ADOBE_STOCK_ASSET_CATEGORY_ID_ADOBE_STOCK_CATEGORY_ID` FOREIGN KEY (`category_id`) REFERENCES `adobe_stock_category` (`id`) ON DELETE SET NULL,
  CONSTRAINT `ADOBE_STOCK_ASSET_CREATOR_ID_ADOBE_STOCK_CREATOR_ID` FOREIGN KEY (`creator_id`) REFERENCES `adobe_stock_creator` (`id`) ON DELETE SET NULL,
  CONSTRAINT `ADOBE_STOCK_ASSET_MEDIA_GALLERY_ID_MEDIA_GALLERY_ASSET_ID` FOREIGN KEY (`media_gallery_id`) REFERENCES `media_gallery_asset` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Adobe Stock Asset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adobe_stock_asset`
--

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

--
-- Table structure for table `adobe_stock_category`
--

DROP TABLE IF EXISTS `adobe_stock_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `adobe_stock_category` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  PRIMARY KEY (`id`),
  KEY `ADOBE_STOCK_CATEGORY_ID` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Adobe Stock Category';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adobe_stock_category`
--

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

--
-- Table structure for table `adobe_stock_creator`
--

DROP TABLE IF EXISTS `adobe_stock_creator`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `adobe_stock_creator` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Asset creator''s name',
  PRIMARY KEY (`id`),
  KEY `ADOBE_STOCK_CREATOR_ID` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Adobe Stock Creator';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adobe_stock_creator`
--

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

--
-- Table structure for table `adobe_user_profile`
--

DROP TABLE IF EXISTS `adobe_user_profile`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `adobe_user_profile` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `admin_user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Admin User Id',
  `name` varchar(255) NOT NULL COMMENT 'Display Name',
  `email` varchar(255) NOT NULL COMMENT 'user profile email',
  `image` varchar(255) NOT NULL COMMENT 'user profile avatar',
  `account_type` varchar(255) DEFAULT NULL COMMENT 'Account Type',
  `access_token` text DEFAULT NULL COMMENT 'Access Token',
  `refresh_token` text DEFAULT NULL COMMENT 'Refresh Token',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `access_token_expires_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Access Token Expires At',
  PRIMARY KEY (`id`),
  KEY `ADOBE_USER_PROFILE_ADMIN_USER_ID_ADMIN_USER_USER_ID` (`admin_user_id`),
  KEY `ADOBE_USER_PROFILE_ID` (`id`),
  KEY `ADOBE_USER_PROFILE_ADMIN_USER_ID` (`admin_user_id`),
  CONSTRAINT `ADOBE_USER_PROFILE_ADMIN_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Adobe IMS User Profile';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `adobe_user_profile`
--

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

--
-- Table structure for table `authorization_role`
--

DROP TABLE IF EXISTS `authorization_role`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `authorization_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',
  `user_type` varchar(16) DEFAULT NULL COMMENT 'User Type',
  `role_name` varchar(50) DEFAULT NULL COMMENT 'Role Name',
  PRIMARY KEY (`role_id`),
  KEY `AUTHORIZATION_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`),
  KEY `AUTHORIZATION_ROLE_TREE_LEVEL` (`tree_level`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COMMENT='Admin Role Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `authorization_role`
--

LOCK TABLES `authorization_role` WRITE;
/*!40000 ALTER TABLE `authorization_role` DISABLE KEYS */;
INSERT INTO `authorization_role` VALUES (1,0,1,1,'G',0,'2','Administrators'),(4,1,2,0,'U',1,'2','admin'),(5,1,2,0,'U',2,'2','Daniele'),(6,0,1,0,'U',2,'1','12'),(7,1,2,0,'U',3,'2','Andrea'),(8,0,1,0,'U',3,'1','13'),(9,0,1,0,'U',4,'1','14');
/*!40000 ALTER TABLE `authorization_role` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `authorization_rule`
--

DROP TABLE IF EXISTS `authorization_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `authorization_rule` (
  `rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule ID',
  `role_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Role ID',
  `resource_id` varchar(255) DEFAULT NULL COMMENT 'Resource ID',
  `privileges` varchar(20) DEFAULT NULL COMMENT 'Privileges',
  `permission` varchar(10) DEFAULT NULL COMMENT 'Permission',
  PRIMARY KEY (`rule_id`),
  KEY `AUTHORIZATION_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`),
  KEY `AUTHORIZATION_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`),
  CONSTRAINT `AUTHORIZATION_RULE_ROLE_ID_AUTHORIZATION_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `authorization_role` (`role_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=7929 DEFAULT CHARSET=utf8 COMMENT='Admin Rule Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `authorization_rule`
--

LOCK TABLES `authorization_rule` WRITE;
/*!40000 ALTER TABLE `authorization_rule` DISABLE KEYS */;
INSERT INTO `authorization_rule` VALUES (5,1,'Magento_Backend::all',NULL,'allow'),(7,8,'Magento_Backend::all',NULL,'allow'),(8,6,'Magento_Backend::all',NULL,'deny'),(9,6,'Magento_Backend::admin',NULL,'allow'),(10,6,'Magento_Backend::dashboard',NULL,'allow'),(11,6,'Magento_Analytics::analytics',NULL,'allow'),(12,6,'Magento_Analytics::analytics_api',NULL,'allow'),(13,6,'Webkul_BuyButton::buybutton',NULL,'allow'),(14,6,'Webkul_BuyButton::select',NULL,'allow'),(15,6,'Magento_Sales::sales',NULL,'allow'),(16,6,'Magento_Sales::sales_operation',NULL,'allow'),(17,6,'Magento_Sales::sales_order',NULL,'allow'),(18,6,'Magento_Sales::actions',NULL,'allow'),(19,6,'Magento_Sales::create',NULL,'allow'),(20,6,'Magento_Sales::actions_view',NULL,'allow'),(21,6,'Magento_Sales::email',NULL,'allow'),(22,6,'Magento_Sales::reorder',NULL,'allow'),(23,6,'Magento_Sales::actions_edit',NULL,'allow'),(24,6,'Magento_Sales::cancel',NULL,'allow'),(25,6,'Magento_Sales::review_payment',NULL,'allow'),(26,6,'Magento_Sales::capture',NULL,'allow'),(27,6,'Magento_Sales::invoice',NULL,'allow'),(28,6,'Magento_Sales::creditmemo',NULL,'allow'),(29,6,'Magento_Sales::hold',NULL,'allow'),(30,6,'Magento_Sales::unhold',NULL,'allow'),(31,6,'Magento_Sales::ship',NULL,'allow'),(32,6,'Magento_Sales::comment',NULL,'allow'),(33,6,'Magento_Sales::emails',NULL,'allow'),(34,6,'Magento_Paypal::authorization',NULL,'allow'),(35,6,'Magento_Sales::sales_invoice',NULL,'allow'),(36,6,'Magento_Sales::shipment',NULL,'allow'),(37,6,'Magento_Sales::sales_creditmemo',NULL,'allow'),(38,6,'Magento_Paypal::billing_agreement',NULL,'allow'),(39,6,'Magento_Paypal::billing_agreement_actions',NULL,'allow'),(40,6,'Magento_Paypal::billing_agreement_actions_view',NULL,'allow'),(41,6,'Magento_Paypal::actions_manage',NULL,'allow'),(42,6,'Magento_Paypal::use',NULL,'allow'),(43,6,'Magento_Sales::transactions',NULL,'allow'),(44,6,'Magento_Sales::transactions_fetch',NULL,'allow'),(45,6,'Magento_Catalog::catalog',NULL,'allow'),(46,6,'Magento_Catalog::catalog_inventory',NULL,'allow'),(47,6,'Magento_Catalog::products',NULL,'allow'),(48,6,'Magento_Catalog::update_attributes',NULL,'allow'),(49,6,'Magento_Catalog::edit_product_design',NULL,'allow'),(50,6,'Magento_Catalog::categories',NULL,'allow'),(51,6,'Magento_Catalog::edit_category_design',NULL,'allow'),(52,6,'Magento_Customer::customer',NULL,'allow'),(53,6,'Magento_Customer::manage',NULL,'allow'),(54,6,'Magento_Customer::actions',NULL,'allow'),(55,6,'Magento_Customer::delete',NULL,'allow'),(56,6,'Magento_Customer::reset_password',NULL,'allow'),(57,6,'Magento_Customer::invalidate_tokens',NULL,'allow'),(58,6,'Magento_LoginAsCustomer::allow_shopping_assistance',NULL,'allow'),(59,6,'Magento_Customer::online',NULL,'allow'),(60,6,'Magento_Customer::group',NULL,'allow'),(61,6,'Magento_LoginAsCustomer::login',NULL,'allow'),(62,6,'Magento_LoginAsCustomerLog::login_log',NULL,'allow'),(63,6,'Magento_Cart::cart',NULL,'allow'),(64,6,'Magento_Cart::manage',NULL,'allow'),(65,6,'Magento_Backend::myaccount',NULL,'allow'),(66,6,'Magento_Backend::marketing',NULL,'allow'),(67,6,'Magento_CatalogRule::promo',NULL,'allow'),(68,6,'Magento_CatalogRule::promo_catalog',NULL,'allow'),(69,6,'Magento_SalesRule::quote',NULL,'allow'),(70,6,'Mageplaza_Smtp::email_marketing_menu',NULL,'allow'),(71,6,'Magento_Backend::marketing_communications',NULL,'allow'),(72,6,'Magento_Email::template',NULL,'allow'),(73,6,'Magento_Newsletter::template',NULL,'allow'),(74,6,'Magento_Newsletter::queue',NULL,'allow'),(75,6,'Magento_Newsletter::subscriber',NULL,'allow'),(76,6,'Magento_Backend::marketing_seo',NULL,'allow'),(77,6,'Magento_Search::search',NULL,'allow'),(78,6,'Magento_Search::synonyms',NULL,'allow'),(79,6,'Magento_UrlRewrite::urlrewrite',NULL,'allow'),(80,6,'Magento_Sitemap::sitemap',NULL,'allow'),(81,6,'Magento_Backend::marketing_user_content',NULL,'allow'),(82,6,'Magento_Review::reviews_all',NULL,'allow'),(83,6,'Magento_Review::pending',NULL,'allow'),(84,6,'Mageplaza_Core::menu',NULL,'allow'),(85,6,'Mageplaza_Smtp::smtp',NULL,'allow'),(86,6,'Mageplaza_Smtp::log',NULL,'allow'),(87,6,'Mageplaza_Smtp::abandoned_cart',NULL,'allow'),(88,6,'Mageplaza_Core::documentation',NULL,'allow'),(89,6,'Mageplaza_Core::userguide',NULL,'allow'),(90,6,'Mageplaza_Core::activate',NULL,'allow'),(91,6,'Magento_Backend::content',NULL,'allow'),(92,6,'Magento_Backend::content_elements',NULL,'allow'),(93,6,'Magento_Cms::page',NULL,'allow'),(94,6,'Magento_Cms::save',NULL,'allow'),(95,6,'Magento_Cms::save_design',NULL,'allow'),(96,6,'Magento_Cms::page_delete',NULL,'allow'),(97,6,'Magento_Cms::block',NULL,'allow'),(98,6,'Magento_Widget::widget_instance',NULL,'allow'),(99,6,'Magento_Cms::media_gallery',NULL,'allow'),(100,6,'Magento_MediaGalleryUiApi::insert_assets',NULL,'allow'),(101,6,'Magento_MediaGalleryUiApi::upload_assets',NULL,'allow'),(102,6,'Magento_MediaGalleryUiApi::edit_assets',NULL,'allow'),(103,6,'Magento_AdobeStockImageAdminUi::media_gallery',NULL,'allow'),(104,6,'Magento_AdobeStockImageAdminUi::save_preview_images',NULL,'allow'),(105,6,'Magento_AdobeStockImageAdminUi::license_images',NULL,'allow'),(106,6,'Magento_MediaGalleryUiApi::delete_assets',NULL,'allow'),(107,6,'Magento_MediaGalleryUiApi::create_folder',NULL,'allow'),(108,6,'Magento_MediaGalleryUiApi::delete_folder',NULL,'allow'),(109,6,'Magento_PageBuilder::templates',NULL,'allow'),(110,6,'Magento_PageBuilder::template_save',NULL,'allow'),(111,6,'Magento_PageBuilder::template_apply',NULL,'allow'),(112,6,'Magento_PageBuilder::template_delete',NULL,'allow'),(113,6,'Magento_Backend::design',NULL,'allow'),(114,6,'Magento_Theme::theme',NULL,'allow'),(115,6,'Magento_Backend::schedule',NULL,'allow'),(116,6,'Magento_Backend::content_translation',NULL,'allow'),(117,6,'Magento_Reports::report',NULL,'allow'),(118,6,'Magento_Reports::report_marketing',NULL,'allow'),(119,6,'Magento_Reports::shopcart',NULL,'allow'),(120,6,'Magento_Reports::product',NULL,'allow'),(121,6,'Magento_Reports::abandoned',NULL,'allow'),(122,6,'Magento_Reports::report_search',NULL,'allow'),(123,6,'Magento_Newsletter::problem',NULL,'allow'),(124,6,'Magento_Reports::review',NULL,'allow'),(125,6,'Magento_Reports::review_customer',NULL,'allow'),(126,6,'Magento_Reports::review_product',NULL,'allow'),(127,6,'Magento_Reports::salesroot',NULL,'allow'),(128,6,'Magento_Reports::salesroot_sales',NULL,'allow'),(129,6,'Magento_Reports::tax',NULL,'allow'),(130,6,'Magento_Reports::invoiced',NULL,'allow'),(131,6,'Magento_Reports::shipping',NULL,'allow'),(132,6,'Magento_Reports::refunded',NULL,'allow'),(133,6,'Magento_Reports::coupons',NULL,'allow'),(134,6,'Magento_Paypal::paypal_settlement_reports',NULL,'allow'),(135,6,'Magento_Paypal::paypal_settlement_reports_view',NULL,'allow'),(136,6,'Magento_Paypal::fetch',NULL,'allow'),(137,6,'PayPal_Braintree::settlement_report',NULL,'allow'),(138,6,'Magento_Reports::customers',NULL,'allow'),(139,6,'Magento_Reports::totals',NULL,'allow'),(140,6,'Magento_Reports::customers_orders',NULL,'allow'),(141,6,'Magento_Reports::accounts',NULL,'allow'),(142,6,'Magento_Reports::report_products',NULL,'allow'),(143,6,'Magento_Reports::viewed',NULL,'allow'),(144,6,'Magento_Reports::bestsellers',NULL,'allow'),(145,6,'Magento_Reports::lowstock',NULL,'allow'),(146,6,'Magento_Reports::sold',NULL,'allow'),(147,6,'Magento_Reports::downloads',NULL,'allow'),(148,6,'Magento_Reports::statistics',NULL,'allow'),(149,6,'Magento_Reports::statistics_refresh',NULL,'allow'),(150,6,'Magento_Analytics::business_intelligence',NULL,'allow'),(151,6,'Magento_Analytics::advanced_reporting',NULL,'allow'),(152,6,'Magento_Analytics::bi_essentials',NULL,'allow'),(153,6,'Magento_Backend::stores',NULL,'allow'),(154,6,'Magento_Backend::stores_settings',NULL,'allow'),(155,6,'Magento_Backend::store',NULL,'allow'),(156,6,'Magento_Config::config',NULL,'allow'),(157,6,'Magento_Cms::config_cms',NULL,'allow'),(158,6,'Magento_Catalog::config_catalog',NULL,'allow'),(159,6,'Magento_CatalogSearch::config_catalog_search',NULL,'allow'),(160,6,'Magento_CatalogInventory::cataloginventory',NULL,'allow'),(161,6,'Magento_Payment::payment',NULL,'allow'),(162,6,'Magento_Payment::payment_services',NULL,'allow'),(163,6,'Magento_Contact::contact',NULL,'allow'),(164,6,'Magento_Downloadable::downloadable',NULL,'allow'),(165,6,'Magento_GoogleAnalytics::google',NULL,'allow'),(166,6,'Magento_LoginAsCustomer::config_section',NULL,'allow'),(167,6,'Magento_Newsletter::newsletter',NULL,'allow'),(168,6,'Mageplaza_Smtp::configuration',NULL,'allow'),(169,6,'Mageplaza_Smtp::email_marketing',NULL,'allow'),(170,6,'Magento_Shipping::carriers',NULL,'allow'),(171,6,'Magento_InventoryInStorePickupApi::inStorePickup',NULL,'allow'),(172,6,'Magento_InventoryInStorePickupApi::notify_orders_are_ready_for_pickup',NULL,'allow'),(173,6,'Magento_Shipping::config_shipping',NULL,'allow'),(174,6,'Magento_Shipping::shipping_policy',NULL,'allow'),(175,6,'Magento_Multishipping::config_multishipping',NULL,'allow'),(176,6,'Magento_ReCaptchaUi::config',NULL,'allow'),(177,6,'Magento_Securitytxt::config',NULL,'allow'),(178,6,'Mageplaza_Core::configuration',NULL,'allow'),(179,6,'Mageplaza_Core::marketplace',NULL,'allow'),(180,6,'Magento_Config::config_general',NULL,'allow'),(181,6,'Magento_Config::web',NULL,'allow'),(182,6,'Magento_Config::config_design',NULL,'allow'),(183,6,'Magento_Customer::config_customer',NULL,'allow'),(184,6,'Magento_Paypal::paypal',NULL,'allow'),(185,6,'Webkul_BuyButton::auth',NULL,'allow'),(186,6,'Magento_Tax::config_tax',NULL,'allow'),(187,6,'Magento_Checkout::checkout',NULL,'allow'),(188,6,'Magento_Sales::config_sales',NULL,'allow'),(189,6,'Magento_Persistent::persistent',NULL,'allow'),(190,6,'Magento_Sales::sales_email',NULL,'allow'),(191,6,'Magento_Sales::sales_pdf',NULL,'allow'),(192,6,'Magento_Reports::reports',NULL,'allow'),(193,6,'Magento_Sitemap::config_sitemap',NULL,'allow'),(194,6,'Magento_Config::config_system',NULL,'allow'),(195,6,'Magento_Wishlist::config_wishlist',NULL,'allow'),(196,6,'Magento_SalesRule::config_promo',NULL,'allow'),(197,6,'Magento_Config::config_admin',NULL,'allow'),(198,6,'Magento_Config::trans_email',NULL,'allow'),(199,6,'Magento_Config::dev',NULL,'allow'),(200,6,'Magento_Config::currency',NULL,'allow'),(201,6,'Magento_Rss::rss',NULL,'allow'),(202,6,'Magento_Config::sendfriend',NULL,'allow'),(203,6,'Magento_Analytics::analytics_settings',NULL,'allow'),(204,6,'Magento_NewRelicReporting::config_newrelicreporting',NULL,'allow'),(205,6,'Magento_CheckoutAgreements::checkoutagreement',NULL,'allow'),(206,6,'Magento_Sales::order_statuses',NULL,'allow'),(207,6,'Magento_InventoryApi::inventory',NULL,'allow'),(208,6,'Magento_InventoryApi::source',NULL,'allow'),(209,6,'Magento_InventoryApi::source_edit',NULL,'allow'),(210,6,'Magento_InventoryApi::stock',NULL,'allow'),(211,6,'Magento_InventoryApi::stock_edit',NULL,'allow'),(212,6,'Magento_InventoryApi::stock_delete',NULL,'allow'),(213,6,'Magento_InventoryApi::stock_source_link',NULL,'allow'),(214,6,'Magento_InventorySalesApi::stock',NULL,'allow'),(215,6,'Magento_Tax::manage_tax',NULL,'allow'),(216,6,'Magento_CurrencySymbol::system_currency',NULL,'allow'),(217,6,'Magento_CurrencySymbol::currency_rates',NULL,'allow'),(218,6,'Magento_CurrencySymbol::symbols',NULL,'allow'),(219,6,'Magento_Backend::stores_attributes',NULL,'allow'),(220,6,'Magento_Catalog::attributes_attributes',NULL,'allow'),(221,6,'Magento_Catalog::sets',NULL,'allow'),(222,6,'Magento_Review::ratings',NULL,'allow'),(223,6,'Magento_Swatches::iframe',NULL,'allow'),(224,6,'Magento_Backend::stores_other_settings',NULL,'allow'),(225,6,'Magento_Backend::system',NULL,'allow'),(226,6,'Magento_AdobeIms::adobe_ims',NULL,'allow'),(227,6,'Magento_AdobeIms::actions',NULL,'allow'),(228,6,'Magento_AdobeIms::login',NULL,'allow'),(229,6,'Magento_AdobeIms::logout',NULL,'allow'),(230,6,'Magento_AdobeStockAsset::adobe_stock_asset',NULL,'allow'),(231,6,'Magento_AdobeStockAsset::actions',NULL,'allow'),(232,6,'Magento_AdobeStockAsset::actions_delete',NULL,'allow'),(233,6,'Magento_AdobeStockAsset::actions_save',NULL,'allow'),(234,6,'Magento_AdobeStockAsset::actions_view',NULL,'allow'),(235,6,'Magento_AdobeStockAsset::actions_get',NULL,'allow'),(236,6,'Magento_Backend::convert',NULL,'allow'),(237,6,'Magento_ImportExport::import',NULL,'allow'),(238,6,'Magento_ImportExport::export',NULL,'allow'),(239,6,'Magento_TaxImportExport::import_export',NULL,'allow'),(240,6,'Magento_ImportExport::history',NULL,'allow'),(241,6,'Magento_Backend::extensions',NULL,'allow'),(242,6,'Magento_Backend::local',NULL,'allow'),(243,6,'Magento_Backend::custom',NULL,'allow'),(244,6,'Magento_Integration::extensions',NULL,'allow'),(245,6,'Magento_Integration::integrations',NULL,'allow'),(246,6,'Magento_Backend::tools',NULL,'allow'),(247,6,'Magento_Backend::cache',NULL,'allow'),(248,6,'Magento_Backend::main_actions',NULL,'allow'),(249,6,'Magento_Backend::flush_cache_storage',NULL,'allow'),(250,6,'Magento_Backend::flush_magento_cache',NULL,'allow'),(251,6,'Magento_Backend::mass_actions',NULL,'allow'),(252,6,'Magento_Backend::toggling_cache_type',NULL,'allow'),(253,6,'Magento_Backend::refresh_cache_type',NULL,'allow'),(254,6,'Magento_Backend::additional_cache_management',NULL,'allow'),(255,6,'Magento_Backend::flush_catalog_images',NULL,'allow'),(256,6,'Magento_Backend::flush_js_css',NULL,'allow'),(257,6,'Magento_Backend::flush_static_files',NULL,'allow'),(258,6,'Magento_Backup::backup',NULL,'allow'),(259,6,'Magento_Backup::rollback',NULL,'allow'),(260,6,'Magento_Indexer::index',NULL,'allow'),(261,6,'Magento_Indexer::changeMode',NULL,'allow'),(262,6,'Magento_Indexer::invalidate',NULL,'allow'),(263,6,'Magento_User::acl',NULL,'allow'),(264,6,'Magento_User::acl_users',NULL,'allow'),(265,6,'Magento_User::locks',NULL,'allow'),(266,6,'Magento_User::acl_roles',NULL,'allow'),(267,6,'Magento_Logging::magento_logging',NULL,'allow'),(268,6,'Magento_Logging::magento_logging_events',NULL,'allow'),(269,6,'Magento_Logging::system_magento_logging_bulk_operations',NULL,'allow'),(270,6,'Magento_Backend::system_other_settings',NULL,'allow'),(271,6,'Magento_AdminNotification::adminnotification',NULL,'allow'),(272,6,'Magento_AdminNotification::show_toolbar',NULL,'allow'),(273,6,'Magento_AdminNotification::show_list',NULL,'allow'),(274,6,'Magento_AdminNotification::mark_as_read',NULL,'allow'),(275,6,'Magento_AdminNotification::adminnotification_remove',NULL,'allow'),(276,6,'Magento_Variable::variable',NULL,'allow'),(277,6,'Magento_EncryptionKey::crypt_key',NULL,'allow'),(278,6,'Magento_Backend::global_search',NULL,'allow'),(7623,9,'Magento_Backend::all',NULL,'deny'),(7624,9,'Magento_Backend::admin',NULL,'allow'),(7625,9,'Magento_Backend::dashboard',NULL,'deny'),(7626,9,'Magento_Analytics::analytics',NULL,'allow'),(7627,9,'Magento_Analytics::analytics_api',NULL,'allow'),(7628,9,'Webkul_BuyButton::buybutton',NULL,'deny'),(7629,9,'Webkul_BuyButton::select',NULL,'deny'),(7630,9,'Magento_Sales::sales',NULL,'deny'),(7631,9,'Magento_Sales::sales_operation',NULL,'deny'),(7632,9,'Magento_Sales::sales_order',NULL,'deny'),(7633,9,'Magento_Sales::actions',NULL,'deny'),(7634,9,'Magento_Sales::create',NULL,'deny'),(7635,9,'Magento_Sales::actions_view',NULL,'deny'),(7636,9,'Magento_Sales::email',NULL,'deny'),(7637,9,'Magento_Sales::reorder',NULL,'deny'),(7638,9,'Magento_Sales::actions_edit',NULL,'deny'),(7639,9,'Magento_Sales::cancel',NULL,'deny'),(7640,9,'Magento_Sales::review_payment',NULL,'deny'),(7641,9,'Magento_Sales::capture',NULL,'deny'),(7642,9,'Magento_Sales::invoice',NULL,'deny'),(7643,9,'Magento_Sales::creditmemo',NULL,'deny'),(7644,9,'Magento_Sales::hold',NULL,'deny'),(7645,9,'Magento_Sales::unhold',NULL,'deny'),(7646,9,'Magento_Sales::ship',NULL,'deny'),(7647,9,'Magento_Sales::comment',NULL,'deny'),(7648,9,'Magento_Sales::emails',NULL,'deny'),(7649,9,'Magento_Paypal::authorization',NULL,'deny'),(7650,9,'Magento_Sales::sales_invoice',NULL,'deny'),(7651,9,'Magento_Sales::shipment',NULL,'deny'),(7652,9,'Magento_Sales::sales_creditmemo',NULL,'deny'),(7653,9,'Magento_Paypal::billing_agreement',NULL,'deny'),(7654,9,'Magento_Paypal::billing_agreement_actions',NULL,'deny'),(7655,9,'Magento_Paypal::billing_agreement_actions_view',NULL,'deny'),(7656,9,'Magento_Paypal::actions_manage',NULL,'deny'),(7657,9,'Magento_Paypal::use',NULL,'deny'),(7658,9,'Magento_Sales::transactions',NULL,'deny'),(7659,9,'Magento_Sales::transactions_fetch',NULL,'deny'),(7660,9,'Magento_Catalog::catalog',NULL,'deny'),(7661,9,'Magento_Catalog::catalog_inventory',NULL,'deny'),(7662,9,'Magento_Catalog::products',NULL,'deny'),(7663,9,'Magento_Catalog::update_attributes',NULL,'deny'),(7664,9,'Magento_Catalog::edit_product_design',NULL,'deny'),(7665,9,'Magento_Catalog::categories',NULL,'deny'),(7666,9,'Magento_Catalog::edit_category_design',NULL,'deny'),(7667,9,'Magento_Customer::customer',NULL,'deny'),(7668,9,'Magento_Customer::manage',NULL,'deny'),(7669,9,'Magento_Customer::actions',NULL,'deny'),(7670,9,'Magento_Customer::delete',NULL,'deny'),(7671,9,'Magento_Customer::reset_password',NULL,'deny'),(7672,9,'Magento_Customer::invalidate_tokens',NULL,'deny'),(7673,9,'Magento_LoginAsCustomer::allow_shopping_assistance',NULL,'deny'),(7674,9,'Magento_Customer::online',NULL,'deny'),(7675,9,'Magento_Customer::group',NULL,'deny'),(7676,9,'Magento_LoginAsCustomer::login',NULL,'deny'),(7677,9,'Magento_LoginAsCustomerLog::login_log',NULL,'deny'),(7678,9,'Magento_Cart::cart',NULL,'deny'),(7679,9,'Magento_Cart::manage',NULL,'deny'),(7680,9,'Magento_Backend::myaccount',NULL,'deny'),(7681,9,'Magento_Backend::marketing',NULL,'deny'),(7682,9,'Magento_CatalogRule::promo',NULL,'deny'),(7683,9,'Magento_CatalogRule::promo_catalog',NULL,'deny'),(7684,9,'Magento_SalesRule::quote',NULL,'deny'),(7685,9,'Mageplaza_Smtp::email_marketing_menu',NULL,'deny'),(7686,9,'Magento_Backend::marketing_communications',NULL,'deny'),(7687,9,'Magento_Email::template',NULL,'deny'),(7688,9,'Magento_Newsletter::template',NULL,'deny'),(7689,9,'Magento_Newsletter::queue',NULL,'deny'),(7690,9,'Magento_Newsletter::subscriber',NULL,'deny'),(7691,9,'Magento_Backend::marketing_seo',NULL,'deny'),(7692,9,'Magento_Search::search',NULL,'deny'),(7693,9,'Magento_Search::synonyms',NULL,'deny'),(7694,9,'Magento_UrlRewrite::urlrewrite',NULL,'deny'),(7695,9,'Magento_Sitemap::sitemap',NULL,'deny'),(7696,9,'Magento_Backend::marketing_user_content',NULL,'deny'),(7697,9,'Magento_Review::reviews_all',NULL,'deny'),(7698,9,'Magento_Review::pending',NULL,'deny'),(7699,9,'Mageplaza_Core::menu',NULL,'deny'),(7700,9,'Mageplaza_Smtp::smtp',NULL,'deny'),(7701,9,'Mageplaza_Smtp::log',NULL,'deny'),(7702,9,'Mageplaza_Smtp::abandoned_cart',NULL,'deny'),(7703,9,'Mageplaza_Core::documentation',NULL,'deny'),(7704,9,'Mageplaza_Core::userguide',NULL,'deny'),(7705,9,'Mageplaza_Core::activate',NULL,'deny'),(7706,9,'Plumrocket_Base::elements',NULL,'deny'),(7707,9,'Plumrocket_CookieConsent::pr_menu',NULL,'deny'),(7708,9,'Plumrocket_CookieConsent::cookie_categories',NULL,'deny'),(7709,9,'Plumrocket_CookieConsent::cookies',NULL,'deny'),(7710,9,'Plumrocket_CookieConsent::consent_log',NULL,'deny'),(7711,9,'Plumrocket_GDPR::prgdpr',NULL,'deny'),(7712,9,'Plumrocket_GDPR::consentslog',NULL,'deny'),(7713,9,'Plumrocket_GDPR::downloadslog',NULL,'deny'),(7714,9,'Plumrocket_GDPR::removalrequests',NULL,'deny'),(7715,9,'Plumrocket_GDPR::consent_location',NULL,'deny'),(7716,9,'Plumrocket_GDPR::consent_checkbox',NULL,'deny'),(7717,9,'Plumrocket_GDPR::removalrequests_cancel',NULL,'deny'),(7718,9,'Plumrocket_GdprAddon::pr_gdpr',NULL,'deny'),(7719,9,'Plumrocket_GeoIPLookup::prgeoiplookup',NULL,'deny'),(7720,9,'Magento_Backend::content',NULL,'deny'),(7721,9,'Magento_Backend::content_elements',NULL,'deny'),(7722,9,'Magento_Cms::page',NULL,'deny'),(7723,9,'Magento_Cms::save',NULL,'deny'),(7724,9,'Magento_Cms::save_design',NULL,'deny'),(7725,9,'Magento_Cms::page_delete',NULL,'deny'),(7726,9,'Magento_Cms::block',NULL,'deny'),(7727,9,'Magento_Widget::widget_instance',NULL,'deny'),(7728,9,'Magento_Cms::media_gallery',NULL,'deny'),(7729,9,'Magento_MediaGalleryUiApi::insert_assets',NULL,'deny'),(7730,9,'Magento_MediaGalleryUiApi::upload_assets',NULL,'deny'),(7731,9,'Magento_MediaGalleryUiApi::edit_assets',NULL,'deny'),(7732,9,'Magento_AdobeStockImageAdminUi::media_gallery',NULL,'deny'),(7733,9,'Magento_AdobeStockImageAdminUi::save_preview_images',NULL,'deny'),(7734,9,'Magento_AdobeStockImageAdminUi::license_images',NULL,'deny'),(7735,9,'Magento_MediaGalleryUiApi::delete_assets',NULL,'deny'),(7736,9,'Magento_MediaGalleryUiApi::create_folder',NULL,'deny'),(7737,9,'Magento_MediaGalleryUiApi::delete_folder',NULL,'deny'),(7738,9,'Magento_PageBuilder::templates',NULL,'deny'),(7739,9,'Magento_PageBuilder::template_save',NULL,'deny'),(7740,9,'Magento_PageBuilder::template_apply',NULL,'deny'),(7741,9,'Magento_PageBuilder::template_delete',NULL,'deny'),(7742,9,'Magento_Backend::design',NULL,'deny'),(7743,9,'Magento_Theme::theme',NULL,'deny'),(7744,9,'Magento_Backend::schedule',NULL,'deny'),(7745,9,'Mageplaza_Blog::blog',NULL,'deny'),(7746,9,'Mageplaza_Blog::post',NULL,'deny'),(7747,9,'Mageplaza_Blog::tag',NULL,'deny'),(7748,9,'Mageplaza_Blog::topic',NULL,'deny'),(7749,9,'Mageplaza_Blog::category',NULL,'deny'),(7750,9,'Mageplaza_Blog::author',NULL,'deny'),(7751,9,'Mageplaza_Blog::comment',NULL,'deny'),(7752,9,'Mageplaza_Blog::import',NULL,'deny'),(7753,9,'Magento_Backend::content_translation',NULL,'deny'),(7754,9,'Magento_Reports::report',NULL,'deny'),(7755,9,'Magento_Reports::report_marketing',NULL,'deny'),(7756,9,'Magento_Reports::shopcart',NULL,'deny'),(7757,9,'Magento_Reports::product',NULL,'deny'),(7758,9,'Magento_Reports::abandoned',NULL,'deny'),(7759,9,'Magento_Reports::report_search',NULL,'deny'),(7760,9,'Magento_Newsletter::problem',NULL,'deny'),(7761,9,'Magento_Reports::review',NULL,'deny'),(7762,9,'Magento_Reports::review_customer',NULL,'deny'),(7763,9,'Magento_Reports::review_product',NULL,'deny'),(7764,9,'Magento_Reports::salesroot',NULL,'deny'),(7765,9,'Magento_Reports::salesroot_sales',NULL,'deny'),(7766,9,'Magento_Reports::tax',NULL,'deny'),(7767,9,'Magento_Reports::invoiced',NULL,'deny'),(7768,9,'Magento_Reports::shipping',NULL,'deny'),(7769,9,'Magento_Reports::refunded',NULL,'deny'),(7770,9,'Magento_Reports::coupons',NULL,'deny'),(7771,9,'Magento_Paypal::paypal_settlement_reports',NULL,'deny'),(7772,9,'Magento_Paypal::paypal_settlement_reports_view',NULL,'deny'),(7773,9,'Magento_Paypal::fetch',NULL,'deny'),(7774,9,'PayPal_Braintree::settlement_report',NULL,'deny'),(7775,9,'Magento_Reports::customers',NULL,'deny'),(7776,9,'Magento_Reports::totals',NULL,'deny'),(7777,9,'Magento_Reports::customers_orders',NULL,'deny'),(7778,9,'Magento_Reports::accounts',NULL,'deny'),(7779,9,'Magento_Reports::report_products',NULL,'deny'),(7780,9,'Magento_Reports::viewed',NULL,'deny'),(7781,9,'Magento_Reports::bestsellers',NULL,'deny'),(7782,9,'Magento_Reports::lowstock',NULL,'deny'),(7783,9,'Magento_Reports::sold',NULL,'deny'),(7784,9,'Magento_Reports::downloads',NULL,'deny'),(7785,9,'Magento_Reports::statistics',NULL,'deny'),(7786,9,'Magento_Reports::statistics_refresh',NULL,'deny'),(7787,9,'Magento_Analytics::business_intelligence',NULL,'deny'),(7788,9,'Magento_Analytics::advanced_reporting',NULL,'deny'),(7789,9,'Magento_Analytics::bi_essentials',NULL,'deny'),(7790,9,'Magento_Backend::stores',NULL,'deny'),(7791,9,'Magento_Backend::stores_settings',NULL,'deny'),(7792,9,'Magento_Backend::store',NULL,'deny'),(7793,9,'Magento_Config::config',NULL,'deny'),(7794,9,'Magento_Cms::config_cms',NULL,'deny'),(7795,9,'Magento_Catalog::config_catalog',NULL,'deny'),(7796,9,'Magento_CatalogSearch::config_catalog_search',NULL,'deny'),(7797,9,'Magento_CatalogInventory::cataloginventory',NULL,'deny'),(7798,9,'Magento_Payment::payment',NULL,'deny'),(7799,9,'Magento_Payment::payment_services',NULL,'deny'),(7800,9,'Magento_Contact::contact',NULL,'deny'),(7801,9,'Magento_Downloadable::downloadable',NULL,'deny'),(7802,9,'Magento_GoogleAnalytics::google',NULL,'deny'),(7803,9,'Magento_LoginAsCustomer::config_section',NULL,'deny'),(7804,9,'Magento_Newsletter::newsletter',NULL,'deny'),(7805,9,'Mageplaza_Blog::configuration',NULL,'deny'),(7806,9,'Mageplaza_Smtp::configuration',NULL,'deny'),(7807,9,'Mageplaza_Smtp::email_marketing',NULL,'deny'),(7808,9,'Plumrocket_Base::config',NULL,'deny'),(7809,9,'Plumrocket_CookieConsent::configuration',NULL,'deny'),(7810,9,'Plumrocket_GDPR::configuration',NULL,'deny'),(7811,9,'Plumrocket_GeoIPLookup::configuration',NULL,'deny'),(7812,9,'Plumrocket_GdprAddon::configuration',NULL,'deny'),(7813,9,'Magento_Shipping::carriers',NULL,'deny'),(7814,9,'Magento_InventoryInStorePickupApi::inStorePickup',NULL,'deny'),(7815,9,'Magento_InventoryInStorePickupApi::notify_orders_are_ready_for_pickup',NULL,'deny'),(7816,9,'Magento_Shipping::config_shipping',NULL,'deny'),(7817,9,'Magento_Shipping::shipping_policy',NULL,'deny'),(7818,9,'Magento_Multishipping::config_multishipping',NULL,'deny'),(7819,9,'Magento_ReCaptchaUi::config',NULL,'deny'),(7820,9,'Magento_Securitytxt::config',NULL,'deny'),(7821,9,'Mageplaza_Core::configuration',NULL,'deny'),(7822,9,'Mageplaza_Core::marketplace',NULL,'deny'),(7823,9,'Magento_Config::config_general',NULL,'deny'),(7824,9,'Magento_Config::web',NULL,'deny'),(7825,9,'Magento_Config::config_design',NULL,'deny'),(7826,9,'Magento_Customer::config_customer',NULL,'deny'),(7827,9,'Magento_Paypal::paypal',NULL,'deny'),(7828,9,'Webkul_BuyButton::auth',NULL,'deny'),(7829,9,'Magento_Tax::config_tax',NULL,'deny'),(7830,9,'Magento_Checkout::checkout',NULL,'deny'),(7831,9,'Magento_Sales::config_sales',NULL,'deny'),(7832,9,'Magento_Persistent::persistent',NULL,'deny'),(7833,9,'Magento_Sales::sales_email',NULL,'deny'),(7834,9,'Magento_Sales::sales_pdf',NULL,'deny'),(7835,9,'Magento_Reports::reports',NULL,'deny'),(7836,9,'Magento_Sitemap::config_sitemap',NULL,'deny'),(7837,9,'Magento_Config::config_system',NULL,'deny'),(7838,9,'Magento_Wishlist::config_wishlist',NULL,'deny'),(7839,9,'Magento_SalesRule::config_promo',NULL,'deny'),(7840,9,'Magento_Config::config_admin',NULL,'deny'),(7841,9,'Magento_Config::trans_email',NULL,'deny'),(7842,9,'Magento_Config::dev',NULL,'deny'),(7843,9,'Magento_Config::currency',NULL,'deny'),(7844,9,'Magento_Rss::rss',NULL,'deny'),(7845,9,'Magento_Config::sendfriend',NULL,'deny'),(7846,9,'Magento_Analytics::analytics_settings',NULL,'deny'),(7847,9,'Magento_NewRelicReporting::config_newrelicreporting',NULL,'deny'),(7848,9,'Magento_CheckoutAgreements::checkoutagreement',NULL,'deny'),(7849,9,'Magento_Sales::order_statuses',NULL,'deny'),(7850,9,'Magento_InventoryApi::inventory',NULL,'deny'),(7851,9,'Magento_InventoryApi::source',NULL,'deny'),(7852,9,'Magento_InventoryApi::source_edit',NULL,'deny'),(7853,9,'Magento_InventoryApi::ship_source_selection',NULL,'deny'),(7854,9,'Magento_InventorySourceSelectionApi::source_selection_algorithm',NULL,'deny'),(7855,9,'Magento_InventorySourceSelectionApi::source_selection_algorithm_post',NULL,'deny'),(7856,9,'Magento_InventoryApi::stock',NULL,'deny'),(7857,9,'Magento_InventoryApi::stock_edit',NULL,'deny'),(7858,9,'Magento_InventoryApi::stock_delete',NULL,'deny'),(7859,9,'Magento_InventoryLowQuantityNotificationApi::low_quantity_notification',NULL,'deny'),(7860,9,'Magento_InventoryLowQuantityNotificationApi::stock_create_low_quantity_notification',NULL,'deny'),(7861,9,'Magento_InventoryLowQuantityNotificationApi::stock_delete_low_quantity_notification',NULL,'deny'),(7862,9,'Magento_InventoryApi::stock_source_link',NULL,'deny'),(7863,9,'Magento_InventoryApi::stock_source_item_assign',NULL,'deny'),(7864,9,'Magento_InventorySalesApi::stock',NULL,'deny'),(7865,9,'Magento_Tax::manage_tax',NULL,'deny'),(7866,9,'Magento_CurrencySymbol::system_currency',NULL,'deny'),(7867,9,'Magento_CurrencySymbol::currency_rates',NULL,'deny'),(7868,9,'Magento_CurrencySymbol::symbols',NULL,'deny'),(7869,9,'Magento_Backend::stores_attributes',NULL,'deny'),(7870,9,'Magento_Catalog::attributes_attributes',NULL,'deny'),(7871,9,'Magento_Catalog::sets',NULL,'deny'),(7872,9,'Magento_Review::ratings',NULL,'deny'),(7873,9,'Magento_Swatches::iframe',NULL,'deny'),(7874,9,'Magento_Backend::stores_other_settings',NULL,'deny'),(7875,9,'Magento_Backend::system',NULL,'deny'),(7876,9,'Magento_AdobeIms::adobe_ims',NULL,'deny'),(7877,9,'Magento_AdobeIms::actions',NULL,'deny'),(7878,9,'Magento_AdobeIms::login',NULL,'deny'),(7879,9,'Magento_AdobeIms::logout',NULL,'deny'),(7880,9,'Magento_AdobeStockAsset::adobe_stock_asset',NULL,'deny'),(7881,9,'Magento_AdobeStockAsset::actions',NULL,'deny'),(7882,9,'Magento_AdobeStockAsset::actions_delete',NULL,'deny'),(7883,9,'Magento_AdobeStockAsset::actions_save',NULL,'deny'),(7884,9,'Magento_AdobeStockAsset::actions_view',NULL,'deny'),(7885,9,'Magento_AdobeStockAsset::actions_get',NULL,'deny'),(7886,9,'Magento_Backend::convert',NULL,'deny'),(7887,9,'Magento_ImportExport::import',NULL,'deny'),(7888,9,'Magento_ImportExport::export',NULL,'deny'),(7889,9,'Magento_TaxImportExport::import_export',NULL,'deny'),(7890,9,'Magento_ImportExport::history',NULL,'deny'),(7891,9,'Magento_Backend::extensions',NULL,'deny'),(7892,9,'Magento_Backend::local',NULL,'deny'),(7893,9,'Magento_Backend::custom',NULL,'deny'),(7894,9,'Magento_Integration::extensions',NULL,'deny'),(7895,9,'Magento_Integration::integrations',NULL,'deny'),(7896,9,'Magento_Backend::tools',NULL,'deny'),(7897,9,'Magento_Backend::cache',NULL,'deny'),(7898,9,'Magento_Backend::main_actions',NULL,'deny'),(7899,9,'Magento_Backend::flush_cache_storage',NULL,'deny'),(7900,9,'Magento_Backend::flush_magento_cache',NULL,'deny'),(7901,9,'Magento_Backend::mass_actions',NULL,'deny'),(7902,9,'Magento_Backend::toggling_cache_type',NULL,'deny'),(7903,9,'Magento_Backend::refresh_cache_type',NULL,'deny'),(7904,9,'Magento_Backend::additional_cache_management',NULL,'deny'),(7905,9,'Magento_Backend::flush_catalog_images',NULL,'deny'),(7906,9,'Magento_Backend::flush_js_css',NULL,'deny'),(7907,9,'Magento_Backend::flush_static_files',NULL,'deny'),(7908,9,'Magento_Backup::backup',NULL,'deny'),(7909,9,'Magento_Backup::rollback',NULL,'deny'),(7910,9,'Magento_Indexer::index',NULL,'deny'),(7911,9,'Magento_Indexer::changeMode',NULL,'deny'),(7912,9,'Magento_Indexer::invalidate',NULL,'deny'),(7913,9,'Magento_User::acl',NULL,'deny'),(7914,9,'Magento_User::acl_users',NULL,'deny'),(7915,9,'Magento_User::locks',NULL,'deny'),(7916,9,'Magento_User::acl_roles',NULL,'deny'),(7917,9,'Magento_Logging::magento_logging',NULL,'deny'),(7918,9,'Magento_Logging::magento_logging_events',NULL,'deny'),(7919,9,'Magento_Logging::system_magento_logging_bulk_operations',NULL,'deny'),(7920,9,'Magento_Backend::system_other_settings',NULL,'deny'),(7921,9,'Magento_AdminNotification::adminnotification',NULL,'deny'),(7922,9,'Magento_AdminNotification::show_toolbar',NULL,'deny'),(7923,9,'Magento_AdminNotification::show_list',NULL,'deny'),(7924,9,'Magento_AdminNotification::mark_as_read',NULL,'deny'),(7925,9,'Magento_AdminNotification::adminnotification_remove',NULL,'deny'),(7926,9,'Magento_Variable::variable',NULL,'deny'),(7927,9,'Magento_EncryptionKey::crypt_key',NULL,'deny'),(7928,9,'Magento_Backend::global_search',NULL,'deny');
/*!40000 ALTER TABLE `authorization_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `braintree_credit_prices`
--

DROP TABLE IF EXISTS `braintree_credit_prices`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `braintree_credit_prices` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Row ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
  `term` int(11) NOT NULL COMMENT 'Credit Term',
  `monthly_payment` decimal(12,2) NOT NULL COMMENT 'Monthly Payment',
  `instalment_rate` decimal(12,2) NOT NULL COMMENT 'Instalment Rate',
  `cost_of_purchase` decimal(12,2) NOT NULL COMMENT 'Cost of purchase',
  `total_inc_interest` decimal(12,2) NOT NULL COMMENT 'Total Inc Interest',
  PRIMARY KEY (`id`),
  UNIQUE KEY `BRAINTREE_CREDIT_PRICES_PRODUCT_ID_TERM` (`product_id`,`term`),
  KEY `BRAINTREE_CREDIT_PRICES_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Braintree credit rates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `braintree_credit_prices`
--

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

--
-- Table structure for table `braintree_transaction_details`
--

DROP TABLE IF EXISTS `braintree_transaction_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `braintree_transaction_details` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
  `transaction_source` varchar(12) DEFAULT NULL COMMENT 'Transaction Source',
  PRIMARY KEY (`entity_id`),
  KEY `BRAINTREE_TRANSACTION_DETAILS_ORDER_ID` (`order_id`),
  CONSTRAINT `BRAINTREE_TRANSACTION_DETAILS_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Braintree transaction details table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `braintree_transaction_details`
--

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

--
-- Table structure for table `cache`
--

DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache` (
  `id` varchar(200) NOT NULL COMMENT 'Cache Id',
  `data` mediumblob DEFAULT NULL COMMENT 'Cache Data',
  `create_time` int(11) DEFAULT NULL COMMENT 'Cache Creation Time',
  `update_time` int(11) DEFAULT NULL COMMENT 'Time of Cache Updating',
  `expire_time` int(11) DEFAULT NULL COMMENT 'Cache Expiration Time',
  PRIMARY KEY (`id`),
  KEY `CACHE_EXPIRE_TIME` (`expire_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Caches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache`
--

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

--
-- Table structure for table `cache_tag`
--

DROP TABLE IF EXISTS `cache_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_tag` (
  `tag` varchar(100) NOT NULL COMMENT 'Tag',
  `cache_id` varchar(200) NOT NULL COMMENT 'Cache Id',
  PRIMARY KEY (`tag`,`cache_id`),
  KEY `CACHE_TAG_CACHE_ID` (`cache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Caches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cache_tag`
--

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

--
-- Table structure for table `captcha_log`
--

DROP TABLE IF EXISTS `captcha_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `captcha_log` (
  `type` varchar(32) NOT NULL COMMENT 'Type',
  `value` varchar(255) NOT NULL COMMENT 'Value',
  `count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Count',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
  PRIMARY KEY (`type`,`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Count Login Attempts';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `captcha_log`
--

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

--
-- Table structure for table `catalog_category_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',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Set ID',
  `parent_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Parent Category ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() 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 `CATALOG_CATEGORY_ENTITY_LEVEL` (`level`),
  KEY `CATALOG_CATEGORY_ENTITY_PATH` (`path`)
) ENGINE=InnoDB AUTO_INCREMENT=92 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,'2022-07-31 09:47:40','2022-09-16 12:35:33','1',0,0,90),(2,3,1,'2022-07-31 09:47:41','2022-09-16 12:35:33','1/2',1,1,89),(3,3,2,'2022-07-31 12:59:01','2022-09-15 05:26:10','1/2/3',1,2,55),(4,3,3,'2022-07-31 12:59:02','2022-07-31 12:59:05','1/2/3/4',1,3,6),(5,3,4,'2022-07-31 12:59:03','2022-07-31 12:59:03','1/2/3/4/5',1,4,0),(6,3,4,'2022-07-31 12:59:03','2022-07-31 12:59:03','1/2/3/4/6',2,4,0),(7,3,4,'2022-07-31 12:59:04','2022-07-31 12:59:04','1/2/3/4/7',3,4,0),(8,3,4,'2022-07-31 12:59:04','2022-07-31 12:59:04','1/2/3/4/8',4,4,0),(9,3,4,'2022-07-31 12:59:04','2022-07-31 12:59:04','1/2/3/4/9',5,4,0),(10,3,4,'2022-07-31 12:59:05','2022-07-31 12:59:05','1/2/3/4/10',6,4,0),(11,3,3,'2022-07-31 12:59:05','2022-07-31 12:59:08','1/2/3/11',2,3,5),(12,3,11,'2022-07-31 12:59:05','2022-07-31 12:59:05','1/2/3/11/12',1,4,0),(13,3,11,'2022-07-31 12:59:06','2022-07-31 12:59:08','1/2/3/11/13',2,4,3),(14,3,13,'2022-07-31 12:59:07','2022-07-31 12:59:07','1/2/3/11/13/14',1,5,0),(15,3,13,'2022-07-31 12:59:07','2022-07-31 12:59:07','1/2/3/11/13/15',2,5,0),(16,3,13,'2022-07-31 12:59:08','2022-07-31 12:59:08','1/2/3/11/13/16',3,5,0),(17,3,3,'2022-07-31 12:59:08','2022-07-31 12:59:10','1/2/3/17',3,3,6),(18,3,17,'2022-07-31 12:59:08','2022-07-31 12:59:08','1/2/3/17/18',1,4,0),(19,3,17,'2022-07-31 12:59:09','2022-07-31 12:59:10','1/2/3/17/19',2,4,4),(20,3,19,'2022-07-31 12:59:09','2022-07-31 12:59:09','1/2/3/17/19/20',1,5,0),(21,3,19,'2022-07-31 12:59:09','2022-07-31 12:59:09','1/2/3/17/19/21',2,5,0),(22,3,19,'2022-07-31 12:59:10','2022-07-31 12:59:10','1/2/3/17/19/22',3,5,0),(23,3,19,'2022-07-31 12:59:10','2022-07-31 12:59:10','1/2/3/17/19/23',4,5,0),(24,3,3,'2022-07-31 12:59:11','2022-07-31 12:59:11','1/2/3/24',4,3,2),(25,3,24,'2022-07-31 12:59:11','2022-07-31 12:59:11','1/2/3/24/25',1,4,0),(26,3,24,'2022-07-31 12:59:11','2022-07-31 12:59:11','1/2/3/24/26',2,4,0),(27,3,3,'2022-07-31 12:59:12','2022-07-31 12:59:12','1/2/3/27',5,3,2),(28,3,27,'2022-07-31 12:59:12','2022-07-31 12:59:12','1/2/3/27/28',1,4,0),(29,3,27,'2022-07-31 12:59:12','2022-07-31 12:59:12','1/2/3/27/29',2,4,0),(30,3,3,'2022-07-31 12:59:13','2022-07-31 12:59:14','1/2/3/30',6,3,3),(31,3,30,'2022-07-31 12:59:13','2022-07-31 12:59:13','1/2/3/30/31',1,4,0),(32,3,30,'2022-07-31 12:59:14','2022-07-31 12:59:14','1/2/3/30/32',2,4,0),(33,3,30,'2022-07-31 12:59:14','2022-07-31 12:59:14','1/2/3/30/33',3,4,0),(34,3,3,'2022-07-31 12:59:14','2022-07-31 12:59:15','1/2/3/34',7,3,2),(35,3,34,'2022-07-31 12:59:15','2022-07-31 12:59:15','1/2/3/34/35',1,4,0),(36,3,34,'2022-07-31 12:59:15','2022-07-31 12:59:15','1/2/3/34/36',2,4,0),(37,3,3,'2022-07-31 12:59:15','2022-07-31 12:59:16','1/2/3/37',8,3,3),(38,3,37,'2022-07-31 12:59:16','2022-07-31 12:59:16','1/2/3/37/38',1,4,0),(39,3,37,'2022-07-31 12:59:16','2022-07-31 12:59:16','1/2/3/37/39',2,4,0),(40,3,37,'2022-07-31 12:59:16','2022-07-31 12:59:16','1/2/3/37/40',3,4,0),(41,3,3,'2022-07-31 12:59:17','2022-07-31 12:59:18','1/2/3/41',9,3,3),(42,3,41,'2022-07-31 12:59:17','2022-07-31 12:59:17','1/2/3/41/42',1,4,0),(43,3,41,'2022-07-31 12:59:18','2022-07-31 12:59:18','1/2/3/41/43',2,4,0),(44,3,41,'2022-07-31 12:59:18','2022-07-31 12:59:18','1/2/3/41/44',3,4,0),(45,3,3,'2022-07-31 12:59:18','2022-07-31 12:59:20','1/2/3/45',10,3,4),(46,3,45,'2022-07-31 12:59:19','2022-07-31 12:59:19','1/2/3/45/46',1,4,0),(47,3,45,'2022-07-31 12:59:19','2022-07-31 12:59:19','1/2/3/45/47',2,4,0),(48,3,45,'2022-07-31 12:59:19','2022-07-31 12:59:19','1/2/3/45/48',3,4,0),(49,3,45,'2022-07-31 12:59:20','2022-08-12 14:15:03','1/2/3/45/49',4,4,0),(50,3,3,'2022-07-31 12:59:20','2022-07-31 12:59:22','1/2/3/50',11,3,5),(51,3,50,'2022-07-31 12:59:21','2022-07-31 12:59:21','1/2/3/50/51',1,4,0),(52,3,50,'2022-07-31 12:59:21','2022-07-31 12:59:21','1/2/3/50/52',2,4,0),(53,3,50,'2022-07-31 12:59:21','2022-07-31 12:59:21','1/2/3/50/53',3,4,0),(54,3,50,'2022-07-31 12:59:22','2022-07-31 12:59:22','1/2/3/50/54',4,4,0),(55,3,50,'2022-07-31 12:59:22','2022-07-31 12:59:22','1/2/3/50/55',5,4,0),(56,3,3,'2022-07-31 12:59:22','2022-07-31 12:59:23','1/2/3/56',12,3,2),(57,3,56,'2022-07-31 12:59:23','2022-07-31 12:59:23','1/2/3/56/57',1,4,0),(58,3,56,'2022-07-31 12:59:23','2022-07-31 12:59:23','1/2/3/56/58',2,4,0),(59,3,2,'2022-07-31 12:59:24','2022-09-15 05:26:10','1/2/59',3,2,14),(60,3,59,'2022-07-31 12:59:24','2022-09-15 05:26:10','1/2/59/60',1,3,0),(61,3,59,'2022-07-31 12:59:25','2022-09-15 05:26:10','1/2/59/61',2,3,0),(62,3,59,'2022-07-31 12:59:25','2022-09-15 05:26:10','1/2/59/62',3,3,0),(63,3,59,'2022-07-31 12:59:25','2022-09-15 05:26:10','1/2/59/63',4,3,0),(64,3,59,'2022-07-31 12:59:26','2022-09-15 05:26:10','1/2/59/64',5,3,0),(65,3,59,'2022-07-31 12:59:26','2022-09-15 05:26:10','1/2/59/65',6,3,0),(66,3,59,'2022-07-31 12:59:26','2022-09-15 05:26:10','1/2/59/66',7,3,0),(67,3,59,'2022-07-31 12:59:27','2022-09-15 05:26:10','1/2/59/67',8,3,0),(68,3,59,'2022-07-31 12:59:27','2022-09-15 05:26:10','1/2/59/68',9,3,0),(69,3,59,'2022-07-31 12:59:27','2022-09-15 05:26:10','1/2/59/69',10,3,0),(70,3,59,'2022-07-31 12:59:28','2022-09-15 05:26:10','1/2/59/70',11,3,0),(71,3,59,'2022-07-31 12:59:28','2022-09-15 05:26:10','1/2/59/71',12,3,0),(72,3,59,'2022-07-31 12:59:28','2022-09-15 05:26:10','1/2/59/72',13,3,0),(73,3,59,'2022-07-31 12:59:29','2022-09-15 05:26:10','1/2/59/73',14,3,0),(74,3,2,'2022-07-31 12:59:29','2022-07-31 12:59:31','1/2/74',2,2,5),(75,3,74,'2022-07-31 12:59:29','2022-07-31 12:59:29','1/2/74/75',1,3,0),(76,3,74,'2022-07-31 12:59:30','2022-07-31 12:59:30','1/2/74/76',2,3,0),(77,3,74,'2022-07-31 12:59:30','2022-07-31 12:59:30','1/2/74/77',3,3,0),(78,3,74,'2022-07-31 12:59:30','2022-07-31 12:59:30','1/2/74/78',4,3,0),(79,3,74,'2022-07-31 12:59:31','2022-07-31 12:59:31','1/2/74/79',5,3,0),(80,3,2,'2022-09-16 10:15:06','2022-09-16 12:33:15','1/2/80',5,2,5),(81,3,80,'2022-09-16 10:50:18','2022-09-16 11:02:08','1/2/80/81',4,3,0),(82,3,80,'2022-09-16 10:50:38','2022-09-16 11:01:58','1/2/80/82',2,3,0),(83,3,80,'2022-09-16 10:51:10','2022-09-16 11:01:52','1/2/80/83',1,3,0),(84,3,80,'2022-09-16 10:51:30','2022-09-16 11:02:03','1/2/80/84',3,3,0),(85,3,80,'2022-09-16 10:52:46','2022-09-16 10:52:57','1/2/80/85',5,3,0),(86,3,2,'2022-09-16 12:33:09','2022-09-16 12:35:33','1/2/86',4,2,5),(87,3,86,'2022-09-16 12:33:52','2022-09-16 12:33:52','1/2/86/87',1,3,0),(88,3,86,'2022-09-16 12:34:13','2022-09-16 12:34:13','1/2/86/88',2,3,0),(89,3,86,'2022-09-16 12:34:51','2022-09-16 12:34:51','1/2/86/89',3,3,0),(90,3,86,'2022-09-16 12:35:17','2022-09-16 12:35:17','1/2/86/90',4,3,0),(91,3,86,'2022-09-16 12:35:33','2022-09-16 12:35:33','1/2/86/91',5,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',
  `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 `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DTIME_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=17 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,61,0,49,NULL),(2,62,0,49,NULL),(3,61,0,2,NULL),(4,62,0,2,NULL),(5,61,0,85,NULL),(6,62,0,85,NULL),(7,61,0,80,NULL),(8,62,0,80,NULL),(9,61,0,83,NULL),(10,62,0,83,NULL),(11,61,0,82,NULL),(12,62,0,82,NULL),(13,61,0,84,NULL),(14,62,0,84,NULL),(15,61,0,81,NULL),(16,62,0,81,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',
  `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(20,6) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_DEC_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE 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',
  `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 `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_INT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=308 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,69,0,1,1),(2,69,0,2,1),(3,46,0,2,1),(4,46,0,3,1),(5,54,0,3,1),(6,69,0,3,1),(7,46,0,4,1),(8,54,0,4,1),(9,69,0,4,1),(10,46,0,5,1),(11,54,0,5,1),(12,69,0,5,1),(13,46,0,6,1),(14,54,0,6,1),(15,69,0,6,1),(16,46,0,7,1),(17,54,0,7,1),(18,69,0,7,1),(19,46,0,8,1),(20,54,0,8,1),(21,69,0,8,1),(22,46,0,9,1),(23,54,0,9,1),(24,69,0,9,1),(25,46,0,10,1),(26,54,0,10,1),(27,69,0,10,1),(28,46,0,11,1),(29,54,0,11,1),(30,69,0,11,1),(31,46,0,12,1),(32,54,0,12,1),(33,69,0,12,1),(34,46,0,13,1),(35,54,0,13,1),(36,69,0,13,1),(37,46,0,14,1),(38,54,0,14,1),(39,69,0,14,1),(40,46,0,15,1),(41,54,0,15,1),(42,69,0,15,1),(43,46,0,16,1),(44,54,0,16,1),(45,69,0,16,1),(46,46,0,17,1),(47,54,0,17,1),(48,69,0,17,1),(49,46,0,18,1),(50,54,0,18,1),(51,69,0,18,1),(52,46,0,19,1),(53,54,0,19,1),(54,69,0,19,1),(55,46,0,20,1),(56,54,0,20,1),(57,69,0,20,1),(58,46,0,21,1),(59,54,0,21,1),(60,69,0,21,1),(61,46,0,22,1),(62,54,0,22,1),(63,69,0,22,1),(64,46,0,23,1),(65,54,0,23,1),(66,69,0,23,1),(67,46,0,24,1),(68,54,0,24,1),(69,69,0,24,1),(70,46,0,25,1),(71,54,0,25,1),(72,69,0,25,1),(73,46,0,26,1),(74,54,0,26,1),(75,69,0,26,1),(76,46,0,27,1),(77,54,0,27,1),(78,69,0,27,1),(79,46,0,28,1),(80,54,0,28,1),(81,69,0,28,1),(82,46,0,29,1),(83,54,0,29,1),(84,69,0,29,1),(85,46,0,30,1),(86,54,0,30,1),(87,69,0,30,1),(88,46,0,31,1),(89,54,0,31,1),(90,69,0,31,1),(91,46,0,32,1),(92,54,0,32,1),(93,69,0,32,1),(94,46,0,33,1),(95,54,0,33,1),(96,69,0,33,1),(97,46,0,34,1),(98,54,0,34,1),(99,69,0,34,1),(100,46,0,35,1),(101,54,0,35,1),(102,69,0,35,1),(103,46,0,36,1),(104,54,0,36,1),(105,69,0,36,1),(106,46,0,37,1),(107,54,0,37,1),(108,69,0,37,1),(109,46,0,38,1),(110,54,0,38,1),(111,69,0,38,1),(112,46,0,39,1),(113,54,0,39,1),(114,69,0,39,1),(115,46,0,40,1),(116,54,0,40,1),(117,69,0,40,1),(118,46,0,41,1),(119,54,0,41,1),(120,69,0,41,1),(121,46,0,42,1),(122,54,0,42,1),(123,69,0,42,1),(124,46,0,43,1),(125,54,0,43,1),(126,69,0,43,1),(127,46,0,44,1),(128,54,0,44,1),(129,69,0,44,1),(130,46,0,45,1),(131,54,0,45,1),(132,69,0,45,1),(133,46,0,46,1),(134,54,0,46,1),(135,69,0,46,1),(136,46,0,47,1),(137,54,0,47,1),(138,69,0,47,1),(139,46,0,48,1),(140,54,0,48,1),(141,69,0,48,1),(142,46,0,49,1),(143,54,0,49,1),(144,69,0,49,1),(145,46,0,50,1),(146,54,0,50,1),(147,69,0,50,1),(148,46,0,51,1),(149,54,0,51,1),(150,69,0,51,1),(151,46,0,52,1),(152,54,0,52,1),(153,69,0,52,1),(154,46,0,53,1),(155,54,0,53,1),(156,69,0,53,1),(157,46,0,54,1),(158,54,0,54,1),(159,69,0,54,1),(160,46,0,55,1),(161,54,0,55,1),(162,69,0,55,1),(163,46,0,56,1),(164,54,0,56,1),(165,69,0,56,1),(166,46,0,57,1),(167,54,0,57,1),(168,69,0,57,1),(169,46,0,58,1),(170,54,0,58,1),(171,69,0,58,1),(172,46,0,59,1),(173,54,0,59,1),(174,69,0,59,1),(175,46,0,60,1),(176,54,0,60,1),(177,69,0,60,1),(178,46,0,61,1),(179,54,0,61,1),(180,69,0,61,1),(181,46,0,62,1),(182,54,0,62,1),(183,69,0,62,1),(184,46,0,63,1),(185,54,0,63,1),(186,69,0,63,1),(187,46,0,64,1),(188,54,0,64,1),(189,69,0,64,1),(190,46,0,65,1),(191,54,0,65,1),(192,69,0,65,1),(193,46,0,66,1),(194,54,0,66,1),(195,69,0,66,1),(196,46,0,67,1),(197,54,0,67,1),(198,69,0,67,1),(199,46,0,68,1),(200,54,0,68,1),(201,69,0,68,1),(202,46,0,69,1),(203,54,0,69,1),(204,69,0,69,1),(205,46,0,70,1),(206,54,0,70,1),(207,69,0,70,1),(208,46,0,71,1),(209,54,0,71,1),(210,69,0,71,1),(211,46,0,72,1),(212,54,0,72,1),(213,69,0,72,1),(214,46,0,73,1),(215,54,0,73,1),(216,69,0,73,1),(217,46,0,74,1),(218,54,0,74,1),(219,69,0,74,1),(220,46,0,75,1),(221,54,0,75,1),(222,69,0,75,1),(223,46,0,76,1),(224,54,0,76,1),(225,69,0,76,1),(226,46,0,77,1),(227,54,0,77,1),(228,69,0,77,1),(229,46,0,78,1),(230,54,0,78,1),(231,69,0,78,1),(232,46,0,79,1),(233,54,0,79,1),(234,69,0,79,1),(235,53,0,49,NULL),(236,70,0,49,0),(237,71,0,49,0),(238,53,0,2,NULL),(239,54,0,2,1),(240,70,0,2,0),(241,71,0,2,0),(242,46,0,80,1),(243,54,0,80,0),(244,69,0,80,1),(245,70,0,80,0),(246,71,0,80,0),(247,46,0,81,1),(248,54,0,81,1),(249,69,0,81,0),(250,70,0,81,0),(251,71,0,81,0),(252,46,0,82,1),(253,54,0,82,1),(254,69,0,82,0),(255,70,0,82,0),(256,71,0,82,0),(257,46,0,83,1),(258,54,0,83,1),(259,69,0,83,0),(260,70,0,83,0),(261,71,0,83,0),(262,46,0,84,1),(263,54,0,84,1),(264,69,0,84,0),(265,70,0,84,0),(266,71,0,84,0),(267,46,0,85,1),(268,54,0,85,1),(269,69,0,85,0),(270,70,0,85,0),(271,71,0,85,0),(272,53,0,85,NULL),(273,53,0,80,NULL),(274,53,0,83,NULL),(275,53,0,82,NULL),(276,53,0,84,NULL),(277,53,0,81,NULL),(278,46,0,86,1),(279,54,0,86,1),(280,69,0,86,1),(281,70,0,86,0),(282,71,0,86,0),(283,46,0,87,1),(284,54,0,87,1),(285,69,0,87,1),(286,70,0,87,0),(287,71,0,87,0),(288,46,0,88,1),(289,54,0,88,1),(290,69,0,88,1),(291,70,0,88,0),(292,71,0,88,0),(293,46,0,89,1),(294,54,0,89,1),(295,69,0,89,1),(296,70,0,89,0),(297,71,0,89,0),(298,46,0,90,1),(299,54,0,90,1),(300,69,0,90,1),(301,70,0,90,0),(302,71,0,90,0),(303,46,0,91,1),(304,54,0,91,1),(305,69,0,91,1),(306,70,0,91,0),(307,71,0,91,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',
  `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` mediumtext DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_TEXT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=25 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,47,0,49,NULL),(2,50,0,49,NULL),(3,51,0,49,NULL),(4,47,0,2,NULL),(5,50,0,2,NULL),(6,51,0,2,NULL),(7,47,0,85,NULL),(8,50,0,85,NULL),(9,51,0,85,NULL),(10,47,0,80,'<style>#html-body [data-pb-style=TFJHQP9]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"TFJHQP9\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: center;\"><strong>Scopri la selezione di prodotti tipici del Trentino</strong></p>\r\n<p style=\"text-align: center;\">Il meglio dell’enogastronomia trentina a portata di click.</p>\r\n<p style=\"text-align: center;\">#inTrentino seleziona i migliori prodotti tipici trentini direttamente dai produttori per offrirti un’esperienza d’acquisto autentica e garantire un giusto compenso al lavoro di ogni persona.</p>\r\n<p style=\"text-align: center;\">Quasi tutto ciò che troverai su #inTrentino proviene dal mondo della cooperazione agroalimentare trentina, una grande famiglia di 88 imprese e 18 mila soci che ogni giorno lavorano con fatica e passione per offrire prodotti di altissima qualità, nel rispetto dell’ambiente, delle materie prime e della tradizione.</p></div></div></div>'),(11,50,0,80,NULL),(12,51,0,80,NULL),(13,47,0,83,NULL),(14,50,0,83,NULL),(15,51,0,83,NULL),(16,47,0,82,NULL),(17,50,0,82,NULL),(18,51,0,82,NULL),(19,47,0,84,NULL),(20,50,0,84,NULL),(21,51,0,84,NULL),(22,47,0,81,NULL),(23,50,0,81,NULL),(24,51,0,81,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',
  `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 `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_ENTT_VCHR_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=372 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,45,0,1,'Root Catalog'),(2,52,0,2,'PRODUCTS'),(3,45,0,2,'INDACO'),(4,45,0,3,'Alimentari'),(5,121,0,3,'alimentari'),(6,122,0,3,'alimentari'),(7,45,0,4,'Consigli e promozioni'),(8,121,0,4,'consigli-e-promozioni'),(9,122,0,4,'alimentari/consigli-e-promozioni'),(10,45,0,5,'Best sellers'),(11,121,0,5,'best-sellers'),(12,122,0,5,'alimentari/consigli-e-promozioni/best-sellers'),(13,45,0,6,'Marchio Trentino'),(14,121,0,6,'marchio-trentino'),(15,122,0,6,'alimentari/consigli-e-promozioni/marchio-trentino'),(16,45,0,7,'Promozioni'),(17,121,0,7,'promozioni'),(18,122,0,7,'alimentari/consigli-e-promozioni/promozioni'),(19,45,0,8,'Selezioni del mese'),(20,121,0,8,'selezioni-del-mese'),(21,122,0,8,'alimentari/consigli-e-promozioni/selezioni-del-mese'),(22,45,0,9,'Altre selezioni'),(23,121,0,9,'altre-selezioni'),(24,122,0,9,'alimentari/consigli-e-promozioni/altre-selezioni'),(25,45,0,10,'Ricette'),(26,121,0,10,'ricette'),(27,122,0,10,'alimentari/consigli-e-promozioni/ricette'),(28,45,0,11,'Formaggi e lattici'),(29,121,0,11,'formaggi-e-lattici'),(30,122,0,11,'alimentari/formaggi-e-lattici'),(31,45,0,12,'Formaggi'),(32,121,0,12,'formaggi'),(33,122,0,12,'alimentari/formaggi-e-lattici/formaggi'),(34,45,0,13,'Lattici, Yogurt'),(35,121,0,13,'lattici-yogurt'),(36,122,0,13,'alimentari/formaggi-e-lattici/lattici-yogurt'),(37,45,0,14,'Latte'),(38,121,0,14,'latte'),(39,122,0,14,'alimentari/formaggi-e-lattici/lattici-yogurt/latte'),(40,45,0,15,'Mozzarelle'),(41,121,0,15,'mozzarelle'),(42,122,0,15,'alimentari/formaggi-e-lattici/lattici-yogurt/mozzarelle'),(43,45,0,16,'Yogurt'),(44,121,0,16,'yogurt'),(45,122,0,16,'alimentari/formaggi-e-lattici/lattici-yogurt/yogurt'),(46,45,0,17,'Carni e salumi'),(47,121,0,17,'carni-e-salumi'),(48,122,0,17,'alimentari/carni-e-salumi'),(49,45,0,18,'Salumi'),(50,121,0,18,'salumi'),(51,122,0,18,'alimentari/carni-e-salumi/salumi'),(52,45,0,19,'Carni'),(53,121,0,19,'carni'),(54,122,0,19,'alimentari/carni-e-salumi/carni'),(55,45,0,20,'Carne Salada'),(56,121,0,20,'carne-salada'),(57,122,0,20,'alimentari/carni-e-salumi/carni/carne-salada'),(58,45,0,21,'Carne Fumada'),(59,121,0,21,'carne-fumada'),(60,122,0,21,'alimentari/carni-e-salumi/carni/carne-fumada'),(61,45,0,22,'Carne Salmistrata'),(62,121,0,22,'carne-salmistrata'),(63,122,0,22,'alimentari/carni-e-salumi/carni/carne-salmistrata'),(64,45,0,23,'Tagli di carne'),(65,121,0,23,'tagli-di-carne'),(66,122,0,23,'alimentari/carni-e-salumi/carni/tagli-di-carne'),(67,45,0,24,'Frutta e verdura'),(68,121,0,24,'frutta-e-verdura'),(69,122,0,24,'alimentari/frutta-e-verdura'),(70,45,0,25,'Frutta'),(71,121,0,25,'frutta'),(72,122,0,25,'alimentari/frutta-e-verdura/frutta'),(73,45,0,26,'Verdura'),(74,121,0,26,'verdura'),(75,122,0,26,'alimentari/frutta-e-verdura/verdura'),(76,45,0,27,'Pesce'),(77,121,0,27,'pesce'),(78,122,0,27,'alimentari/pesce'),(79,45,0,28,'Trota'),(80,121,0,28,'trota'),(81,122,0,28,'alimentari/pesce/trota'),(82,45,0,29,'Salmerino'),(83,121,0,29,'salmerino'),(84,122,0,29,'alimentari/pesce/salmerino'),(85,45,0,30,'Pane, pasta, farine'),(86,121,0,30,'pane-pasta-farine'),(87,122,0,30,'alimentari/pane-pasta-farine'),(88,45,0,31,'Farine'),(89,121,0,31,'farine'),(90,122,0,31,'alimentari/pane-pasta-farine/farine'),(91,45,0,32,'Pasta'),(92,121,0,32,'pasta'),(93,122,0,32,'alimentari/pane-pasta-farine/pasta'),(94,45,0,33,'Pane e derivati'),(95,121,0,33,'pane-e-derivati'),(96,122,0,33,'alimentari/pane-pasta-farine/pane-e-derivati'),(97,45,0,34,'Dispensa'),(98,121,0,34,'dispensa'),(99,122,0,34,'alimentari/dispensa'),(100,45,0,35,'Olio, Aceto, Spezie'),(101,121,0,35,'olio-aceto-spezie'),(102,122,0,35,'alimentari/dispensa/olio-aceto-spezie'),(103,45,0,36,'Passate, Sughi conserve e salse'),(104,121,0,36,'passate-sughi-conserve-e-salse'),(105,122,0,36,'alimentari/dispensa/passate-sughi-conserve-e-salse'),(106,45,0,37,'Dolci e snack'),(107,121,0,37,'dolci-e-snack'),(108,122,0,37,'alimentari/dolci-e-snack'),(109,45,0,38,'Marmellate'),(110,121,0,38,'marmellate'),(111,122,0,38,'alimentari/dolci-e-snack/marmellate'),(112,45,0,39,'Pasticceria e biscotti'),(113,121,0,39,'pasticceria-e-biscotti'),(114,122,0,39,'alimentari/dolci-e-snack/pasticceria-e-biscotti'),(115,45,0,40,'snack'),(116,121,0,40,'snack'),(117,122,0,40,'alimentari/dolci-e-snack/snack'),(118,45,0,41,'Miele e tisane'),(119,121,0,41,'miele-e-tisane'),(120,122,0,41,'alimentari/miele-e-tisane'),(121,45,0,42,'Marmellate'),(122,121,0,42,'marmellate'),(123,122,0,42,'alimentari/miele-e-tisane/marmellate'),(124,45,0,43,'Tisane'),(125,121,0,43,'tisane'),(126,122,0,43,'alimentari/miele-e-tisane/tisane'),(127,45,0,44,'Caffè'),(128,121,0,44,'caffe'),(129,122,0,44,'alimentari/miele-e-tisane/caffe'),(130,45,0,45,'Vino'),(131,121,0,45,'vino'),(132,122,0,45,'alimentari/vino'),(133,45,0,46,'Vino Rosso e Rosato'),(134,121,0,46,'vino-rosso-e-rosato'),(135,122,0,46,'alimentari/vino/vino-rosso-e-rosato'),(136,45,0,47,'Vino Bianco'),(137,121,0,47,'vino-bianco'),(138,122,0,47,'alimentari/vino/vino-bianco'),(139,45,0,48,'Bollicine'),(140,121,0,48,'bollicine'),(141,122,0,48,'alimentari/vino/bollicine'),(142,45,0,49,'Vini Dolci e Liquorosi'),(143,121,0,49,'vini-dolci-e-liquorosi'),(144,122,0,49,'alimentari/vino/vini-dolci-e-liquorosi'),(145,45,0,50,'Birra, sidro e bevande'),(146,121,0,50,'birra-sidro-e-bevande'),(147,122,0,50,'alimentari/birra-sidro-e-bevande'),(148,45,0,51,'Birra Chiara'),(149,121,0,51,'birra-chiara'),(150,122,0,51,'alimentari/birra-sidro-e-bevande/birra-chiara'),(151,45,0,52,'Birra Ambrata'),(152,121,0,52,'birra-ambrata'),(153,122,0,52,'alimentari/birra-sidro-e-bevande/birra-ambrata'),(154,45,0,53,'Birra Scura'),(155,121,0,53,'birra-scura'),(156,122,0,53,'alimentari/birra-sidro-e-bevande/birra-scura'),(157,45,0,54,'Sidro'),(158,121,0,54,'sidro'),(159,122,0,54,'alimentari/birra-sidro-e-bevande/sidro'),(160,45,0,55,'Succhi'),(161,121,0,55,'succhi'),(162,122,0,55,'alimentari/birra-sidro-e-bevande/succhi'),(163,45,0,56,'Liquori e distillati'),(164,121,0,56,'liquori-e-distillati'),(165,122,0,56,'alimentari/liquori-e-distillati'),(166,45,0,57,'Grappa'),(167,121,0,57,'grappa'),(168,122,0,57,'alimentari/liquori-e-distillati/grappa'),(169,45,0,58,'Liquori'),(170,121,0,58,'liquori'),(171,122,0,58,'alimentari/liquori-e-distillati/liquori'),(172,45,0,59,'Prodotti e territori'),(173,121,0,59,'prodotti-e-territori'),(174,122,0,59,'prodotti-e-territori'),(175,45,0,60,'Val di Sole'),(176,121,0,60,'val-di-sole'),(177,122,0,60,'prodotti-e-territori/val-di-sole'),(178,45,0,61,'Val di Non'),(179,121,0,61,'val-di-non'),(180,122,0,61,'prodotti-e-territori/val-di-non'),(181,45,0,62,'Val di Fiemme'),(182,121,0,62,'val-di-fiemme'),(183,122,0,62,'prodotti-e-territori/val-di-fiemme'),(184,45,0,63,'Val di Fassa'),(185,121,0,63,'val-di-fassa'),(186,122,0,63,'prodotti-e-territori/val-di-fassa'),(187,45,0,64,'Garda Trentino e Valle di Ledro'),(188,121,0,64,'garda-trentino-e-valle-di-ledro'),(189,122,0,64,'prodotti-e-territori/garda-trentino-e-valle-di-ledro'),(190,45,0,65,'Rovereto e Vallagarina'),(191,121,0,65,'rovereto-e-vallagarina'),(192,122,0,65,'prodotti-e-territori/rovereto-e-vallagarina'),(193,45,0,66,'Trento e Monte Bondone'),(194,121,0,66,'trento-e-monte-bondone'),(195,122,0,66,'prodotti-e-territori/trento-e-monte-bondone'),(196,45,0,67,'Rotaliana e Paganella'),(197,121,0,67,'rotaliana-e-paganella'),(198,122,0,67,'prodotti-e-territori/rotaliana-e-paganella'),(199,45,0,68,'Valsugana'),(200,121,0,68,'valsugana'),(201,122,0,68,'prodotti-e-territori/valsugana'),(202,45,0,69,'Primiero'),(203,121,0,69,'primiero'),(204,122,0,69,'prodotti-e-territori/primiero'),(205,45,0,70,'Altopiano di Pinè e Valle di Cembra'),(206,121,0,70,'altopiano-di-pine-e-valle-di-cembra'),(207,122,0,70,'prodotti-e-territori/altopiano-di-pine-e-valle-di-cembra'),(208,45,0,71,'Giudicarie e Rendena'),(209,121,0,71,'giudicarie-e-rendena'),(210,122,0,71,'prodotti-e-territori/giudicarie-e-rendena'),(211,45,0,72,'Altipiani cimbri'),(212,121,0,72,'altipiani-cimbri'),(213,122,0,72,'prodotti-e-territori/altipiani-cimbri'),(214,45,0,73,'Valle dei Laghi'),(215,121,0,73,'valle-dei-laghi'),(216,122,0,73,'prodotti-e-territori/valle-dei-laghi'),(217,45,0,74,'Prodotti del territorio'),(218,121,0,74,'prodotti-del-territorio'),(219,122,0,74,'prodotti-del-territorio'),(220,45,0,75,'Arredamento'),(221,121,0,75,'arredamento'),(222,122,0,75,'prodotti-del-territorio/arredamento'),(223,45,0,76,'Prodotti Termali'),(224,121,0,76,'prodotti-termali'),(225,122,0,76,'prodotti-del-territorio/prodotti-termali'),(226,45,0,77,'Abbigliamento'),(227,121,0,77,'abbigliamento'),(228,122,0,77,'prodotti-del-territorio/abbigliamento'),(229,45,0,78,'Sport'),(230,121,0,78,'sport'),(231,122,0,78,'prodotti-del-territorio/sport'),(232,45,0,79,'Artigianato Artistico'),(233,121,0,79,'artigianato-artistico'),(234,122,0,79,'prodotti-del-territorio/artigianato-artistico'),(236,48,0,49,NULL),(237,49,0,49,NULL),(238,52,0,49,'PRODUCTS'),(239,60,0,49,NULL),(240,63,0,49,NULL),(242,48,0,2,NULL),(243,49,0,2,NULL),(244,60,0,2,NULL),(245,63,0,2,NULL),(246,121,0,2,'indaco'),(247,122,0,2,NULL),(278,45,0,80,'inTrentino'),(279,52,0,80,'PRODUCTS'),(280,63,0,80,'category-full-width'),(281,121,0,80,'intrentino'),(282,122,0,80,'intrentino'),(283,45,0,81,'Dispensa dolce'),(284,52,0,81,'PRODUCTS'),(285,63,0,81,'category-full-width'),(286,121,0,81,'dispensa-dolce'),(287,122,0,81,'intrentino/dispensa-dolce'),(288,45,0,82,'Pesce'),(289,52,0,82,'PRODUCTS'),(290,63,0,82,'category-full-width'),(291,121,0,82,'pesce'),(292,122,0,82,'intrentino/pesce'),(293,45,0,83,'Formaggi e latticini'),(294,52,0,83,'PRODUCTS'),(295,63,0,83,'category-full-width'),(296,121,0,83,'formaggi-e-latticini'),(297,122,0,83,'intrentino/formaggi-e-latticini'),(298,45,0,84,'Vino e bevande'),(299,52,0,84,'PRODUCTS'),(300,63,0,84,'category-full-width'),(301,121,0,84,'vino-e-bevande'),(302,122,0,84,'intrentino/vino-e-bevande'),(307,45,0,85,'Dispensa salata'),(308,52,0,85,'PRODUCTS'),(309,63,0,85,'category-full-width'),(310,121,0,85,'dispensa-salata'),(311,122,0,85,'intrentino/dispensa-salata'),(313,48,0,85,NULL),(314,49,0,85,NULL),(315,60,0,85,NULL),(317,48,0,80,'/media/catalog/category/bannerInTrentino_1.png'),(318,49,0,80,NULL),(319,60,0,80,NULL),(321,48,0,83,NULL),(322,49,0,83,NULL),(323,60,0,83,NULL),(325,48,0,82,NULL),(326,49,0,82,NULL),(327,60,0,82,NULL),(329,48,0,84,NULL),(330,49,0,84,NULL),(331,60,0,84,NULL),(333,48,0,81,NULL),(334,49,0,81,NULL),(335,60,0,81,NULL),(340,45,0,86,'Produttori'),(341,52,0,86,'PRODUCTS'),(342,63,0,86,'category-full-width'),(343,121,0,86,'produttori'),(344,122,0,86,'produttori'),(347,45,0,87,'Astro'),(348,52,0,87,'PRODUCTS'),(349,63,0,87,'category-full-width'),(350,121,0,87,'astro'),(351,122,0,87,'produttori/astro'),(352,45,0,88,'Cantina d\'Isera'),(353,52,0,88,'PRODUCTS'),(354,63,0,88,'category-full-width'),(355,121,0,88,'cantina-d-isera'),(356,122,0,88,'produttori/cantina-d-isera'),(357,45,0,89,'CONSORZIO TRENTINGRANA - Gruppo Formaggi del Trentino'),(358,52,0,89,'PRODUCTS'),(359,63,0,89,'category-full-width'),(360,121,0,89,'consorzio-trentingrana-gruppo-formaggi-del-trentino'),(361,122,0,89,'produttori/consorzio-trentingrana-gruppo-formaggi-del-trentino'),(362,45,0,90,'Melinda'),(363,52,0,90,'PRODUCTS'),(364,63,0,90,'category-full-width'),(365,121,0,90,'melinda'),(366,122,0,90,'produttori/melinda'),(367,45,0,91,'Sant\'Orsola'),(368,52,0,91,'PRODUCTS'),(369,63,0,91,'category-full-width'),(370,121,0,91,'sant-orsola'),(371,122,0,91,'produttori/sant-orsola');
/*!40000 ALTER TABLE `catalog_category_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product`
--

DROP TABLE IF EXISTS `catalog_category_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product` (
  `entity_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `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 (`entity_id`,`category_id`,`product_id`),
  UNIQUE KEY `CATALOG_CATEGORY_PRODUCT_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`),
  KEY `CATALOG_CATEGORY_PRODUCT_PRODUCT_ID` (`product_id`),
  CONSTRAINT `CAT_CTGR_PRD_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_CTGR_PRD_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=690 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 (1,3,1,0),(2,45,2,0),(3,41,3,0),(4,17,4,0),(5,74,5,0),(7,45,6,0),(8,61,6,1),(9,37,7,1),(10,61,7,3),(11,3,8,0),(12,74,8,1),(13,3,9,0),(14,37,9,1),(15,40,9,2),(16,61,9,3),(17,3,10,0),(18,37,10,1),(19,40,10,2),(20,61,10,3),(21,3,7,0),(22,40,7,2),(25,3,11,0),(26,34,11,1),(27,35,11,2),(28,61,11,3),(29,3,12,0),(30,34,12,1),(31,35,12,2),(32,61,12,3),(33,3,13,0),(34,37,13,1),(35,40,13,2),(36,61,13,3),(37,3,14,0),(38,37,14,1),(39,40,14,2),(40,61,14,3),(144,3,49,0),(145,11,49,1),(146,12,49,2),(151,3,51,0),(152,11,51,1),(153,12,51,2),(154,3,52,0),(155,11,52,1),(156,12,52,2),(157,3,53,0),(158,11,53,1),(159,12,53,3),(160,63,53,2),(161,3,54,0),(162,11,54,1),(163,12,54,3),(164,65,54,2),(165,3,55,0),(166,11,55,1),(167,12,55,3),(168,62,55,2),(169,3,56,0),(170,11,56,1),(171,12,56,3),(172,69,56,2),(173,3,57,0),(174,11,57,1),(175,12,57,3),(176,65,57,2),(177,3,58,0),(178,11,58,1),(179,12,58,3),(180,63,58,2),(181,3,59,0),(182,11,59,1),(183,12,59,3),(184,69,59,2),(185,3,60,0),(186,11,60,1),(187,12,60,3),(188,60,60,2),(189,3,61,0),(190,11,61,1),(191,12,61,3),(192,62,61,2),(389,3,111,0),(390,37,111,1),(391,38,111,2),(392,68,111,3),(393,3,112,0),(394,37,112,1),(395,38,112,2),(396,68,112,3),(397,3,113,0),(398,37,113,1),(399,38,113,2),(400,68,113,3),(401,3,114,0),(402,37,114,1),(403,38,114,2),(404,68,114,3),(405,3,115,0),(406,37,115,1),(407,38,115,2),(408,68,115,3),(409,3,116,0),(410,37,116,1),(411,38,116,2),(412,68,116,3),(413,3,117,0),(414,37,117,1),(415,38,117,2),(416,68,117,3),(417,3,118,0),(418,37,118,1),(419,38,118,2),(420,68,118,3),(421,3,119,0),(422,37,119,1),(423,38,119,2),(424,68,119,3),(425,3,120,0),(426,37,120,1),(427,38,120,2),(428,68,120,3),(429,3,121,0),(430,37,121,1),(431,38,121,2),(432,68,121,3),(433,3,122,0),(434,37,122,1),(435,38,122,2),(436,68,122,3),(437,3,123,0),(438,37,123,1),(439,38,123,2),(440,68,123,3),(441,3,124,0),(442,37,124,1),(443,55,124,2),(444,68,124,3),(445,3,125,0),(446,37,125,1),(447,55,125,2),(448,68,125,3),(449,3,126,0),(450,37,126,1),(451,55,126,2),(452,68,126,3),(453,3,127,0),(454,34,127,1),(455,36,127,2),(456,68,127,3),(457,3,128,0),(458,34,128,1),(459,36,128,2),(460,68,128,3),(461,3,129,0),(462,34,129,1),(463,36,129,2),(464,68,129,3),(465,3,130,0),(466,34,130,1),(467,36,130,2),(468,68,130,3),(469,3,131,0),(470,34,131,1),(471,36,131,2),(472,68,131,3),(473,3,132,0),(474,34,132,1),(475,36,132,2),(476,68,132,3),(477,3,133,0),(478,37,133,1),(479,55,133,2),(480,68,133,3),(481,3,134,0),(482,37,134,1),(483,55,134,2),(484,68,134,3),(494,3,138,0),(495,37,138,1),(496,38,138,2),(497,68,138,3),(601,3,173,0),(602,27,173,1),(603,29,173,2),(604,3,174,0),(605,27,174,1),(606,28,174,2),(607,3,175,0),(608,27,175,1),(609,28,175,2),(610,3,176,0),(611,27,176,1),(612,28,176,2),(613,3,177,0),(614,27,177,1),(615,28,177,2),(616,3,178,0),(617,27,178,1),(618,28,178,2),(619,3,179,0),(620,27,179,1),(621,28,179,2),(622,3,180,0),(623,27,180,1),(624,28,180,2),(625,3,181,0),(626,27,181,1),(627,28,181,2),(628,3,182,0),(629,27,182,1),(630,29,182,2),(631,3,183,0),(632,27,183,1),(633,28,183,2),(664,3,194,0),(665,45,194,1),(666,46,194,3),(667,65,194,2),(668,3,195,0),(669,45,195,1),(670,48,195,3),(671,65,195,2),(672,81,1,0),(673,84,1,0),(674,85,1,0),(675,80,1,0),(676,3,196,0),(677,37,196,1),(678,38,196,2),(679,68,196,3),(680,3,197,0),(681,37,197,1),(682,38,197,2),(683,68,197,3),(684,3,198,0),(685,74,198,1),(686,3,199,0),(687,74,199,1),(688,2,200,0),(689,3,200,1);
/*!40000 ALTER TABLE `catalog_category_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index`
--

DROP TABLE IF EXISTS `catalog_category_product_index`;
/*!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 `CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `CAT_CTGR_PRD_IDX_STORE_ID_CTGR_ID_VISIBILITY_IS_PARENT_POSITION` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) 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 */;
/*!40000 ALTER TABLE `catalog_category_product_index` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index_replica`
--

DROP TABLE IF EXISTS `catalog_category_product_index_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_replica` (
  `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 `CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `CAT_CTGR_PRD_IDX_STORE_ID_CTGR_ID_VISIBILITY_IS_PARENT_POSITION` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) 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_replica`
--

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

--
-- Table structure for table `catalog_category_product_index_store1`
--

DROP TABLE IF EXISTS `catalog_category_product_index_store1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_store1` (
  `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 `CAT_CTGR_PRD_IDX_STORE1_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_216E521C8AD125E066D2B0BAB4A08412` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index Store1';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_product_index_store1`
--

LOCK TABLES `catalog_category_product_index_store1` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_store1` DISABLE KEYS */;
INSERT INTO `catalog_category_product_index_store1` VALUES (2,200,0,0,1,4),(2,1,10000,0,1,4),(2,2,10000,0,1,4),(2,4,10000,0,1,4),(2,5,10000,0,1,4),(2,6,10000,0,1,4),(2,7,10000,0,1,4),(2,8,10000,0,1,4),(2,9,10000,0,1,4),(2,10,10000,0,1,4),(2,11,10000,0,1,4),(2,12,10000,0,1,4),(2,13,10000,0,1,4),(2,14,10000,0,1,4),(2,49,10000,0,1,4),(2,51,10000,0,1,4),(2,52,10000,0,1,4),(2,53,10000,0,1,4),(2,54,10000,0,1,4),(2,55,10000,0,1,4),(2,56,10000,0,1,4),(2,57,10000,0,1,4),(2,58,10000,0,1,4),(2,59,10000,0,1,4),(2,60,10000,0,1,4),(2,61,10000,0,1,4),(2,111,10000,0,1,4),(2,112,10000,0,1,4),(2,113,10000,0,1,4),(2,114,10000,0,1,4),(2,115,10000,0,1,4),(2,116,10000,0,1,4),(2,117,10000,0,1,4),(2,118,10000,0,1,4),(2,119,10000,0,1,4),(2,120,10000,0,1,4),(2,121,10000,0,1,4),(2,122,10000,0,1,4),(2,123,10000,0,1,4),(2,124,10000,0,1,4),(2,125,10000,0,1,4),(2,126,10000,0,1,4),(2,127,10000,0,1,4),(2,128,10000,0,1,4),(2,129,10000,0,1,4),(2,130,10000,0,1,4),(2,131,10000,0,1,4),(2,132,10000,0,1,4),(2,133,10000,0,1,4),(2,134,10000,0,1,4),(2,173,10000,0,1,4),(2,174,10000,0,1,4),(2,175,10000,0,1,4),(2,176,10000,0,1,4),(2,177,10000,0,1,4),(2,178,10000,0,1,4),(2,179,10000,0,1,4),(2,180,10000,0,1,4),(2,181,10000,0,1,4),(2,182,10000,0,1,4),(2,183,10000,0,1,4),(2,194,10000,0,1,4),(2,195,10000,0,1,4),(2,196,10000,0,1,4),(2,197,10000,0,1,4),(2,198,10000,0,1,4),(2,199,10000,0,1,4),(3,2,10000,0,1,4),(3,4,10000,0,1,4),(3,6,10000,0,1,4),(3,1,0,1,1,4),(3,7,0,1,1,4),(3,8,0,1,1,4),(3,9,0,1,1,4),(3,10,0,1,1,4),(3,11,0,1,1,4),(3,12,0,1,1,4),(3,13,0,1,1,4),(3,14,0,1,1,4),(3,49,0,1,1,4),(3,51,0,1,1,4),(3,52,0,1,1,4),(3,53,0,1,1,4),(3,54,0,1,1,4),(3,55,0,1,1,4),(3,56,0,1,1,4),(3,57,0,1,1,4),(3,58,0,1,1,4),(3,59,0,1,1,4),(3,60,0,1,1,4),(3,61,0,1,1,4),(3,111,0,1,1,4),(3,112,0,1,1,4),(3,113,0,1,1,4),(3,114,0,1,1,4),(3,115,0,1,1,4),(3,116,0,1,1,4),(3,117,0,1,1,4),(3,118,0,1,1,4),(3,119,0,1,1,4),(3,120,0,1,1,4),(3,121,0,1,1,4),(3,122,0,1,1,4),(3,123,0,1,1,4),(3,124,0,1,1,4),(3,125,0,1,1,4),(3,126,0,1,1,4),(3,127,0,1,1,4),(3,128,0,1,1,4),(3,129,0,1,1,4),(3,130,0,1,1,4),(3,131,0,1,1,4),(3,132,0,1,1,4),(3,133,0,1,1,4),(3,134,0,1,1,4),(3,173,0,1,1,4),(3,174,0,1,1,4),(3,175,0,1,1,4),(3,176,0,1,1,4),(3,177,0,1,1,4),(3,178,0,1,1,4),(3,179,0,1,1,4),(3,180,0,1,1,4),(3,181,0,1,1,4),(3,182,0,1,1,4),(3,183,0,1,1,4),(3,194,0,1,1,4),(3,195,0,1,1,4),(3,196,0,1,1,4),(3,197,0,1,1,4),(3,198,0,1,1,4),(3,199,0,1,1,4),(3,200,1,1,1,4),(11,49,1,1,1,4),(11,51,1,1,1,4),(11,52,1,1,1,4),(11,53,1,1,1,4),(11,54,1,1,1,4),(11,55,1,1,1,4),(11,56,1,1,1,4),(11,57,1,1,1,4),(11,58,1,1,1,4),(11,59,1,1,1,4),(11,60,1,1,1,4),(11,61,1,1,1,4),(12,49,2,1,1,4),(12,51,2,1,1,4),(12,52,2,1,1,4),(12,53,3,1,1,4),(12,54,3,1,1,4),(12,55,3,1,1,4),(12,56,3,1,1,4),(12,57,3,1,1,4),(12,58,3,1,1,4),(12,59,3,1,1,4),(12,60,3,1,1,4),(12,61,3,1,1,4),(17,4,0,1,1,4),(27,173,1,1,1,4),(27,174,1,1,1,4),(27,175,1,1,1,4),(27,176,1,1,1,4),(27,177,1,1,1,4),(27,178,1,1,1,4),(27,179,1,1,1,4),(27,180,1,1,1,4),(27,181,1,1,1,4),(27,182,1,1,1,4),(27,183,1,1,1,4),(28,174,2,1,1,4),(28,175,2,1,1,4),(28,176,2,1,1,4),(28,177,2,1,1,4),(28,178,2,1,1,4),(28,179,2,1,1,4),(28,180,2,1,1,4),(28,181,2,1,1,4),(28,183,2,1,1,4),(29,173,2,1,1,4),(29,182,2,1,1,4),(34,11,1,1,1,4),(34,12,1,1,1,4),(34,127,1,1,1,4),(34,128,1,1,1,4),(34,129,1,1,1,4),(34,130,1,1,1,4),(34,131,1,1,1,4),(34,132,1,1,1,4),(35,11,2,1,1,4),(35,12,2,1,1,4),(36,127,2,1,1,4),(36,128,2,1,1,4),(36,129,2,1,1,4),(36,130,2,1,1,4),(36,131,2,1,1,4),(36,132,2,1,1,4),(37,7,1,1,1,4),(37,9,1,1,1,4),(37,10,1,1,1,4),(37,13,1,1,1,4),(37,14,1,1,1,4),(37,111,1,1,1,4),(37,112,1,1,1,4),(37,113,1,1,1,4),(37,114,1,1,1,4),(37,115,1,1,1,4),(37,116,1,1,1,4),(37,117,1,1,1,4),(37,118,1,1,1,4),(37,119,1,1,1,4),(37,120,1,1,1,4),(37,121,1,1,1,4),(37,122,1,1,1,4),(37,123,1,1,1,4),(37,124,1,1,1,4),(37,125,1,1,1,4),(37,126,1,1,1,4),(37,133,1,1,1,4),(37,134,1,1,1,4),(37,196,1,1,1,4),(37,197,1,1,1,4),(38,111,2,1,1,4),(38,112,2,1,1,4),(38,113,2,1,1,4),(38,114,2,1,1,4),(38,115,2,1,1,4),(38,116,2,1,1,4),(38,117,2,1,1,4),(38,118,2,1,1,4),(38,119,2,1,1,4),(38,120,2,1,1,4),(38,121,2,1,1,4),(38,122,2,1,1,4),(38,123,2,1,1,4),(38,196,2,1,1,4),(38,197,2,1,1,4),(40,7,2,1,1,4),(40,9,2,1,1,4),(40,10,2,1,1,4),(40,13,2,1,1,4),(40,14,2,1,1,4),(45,2,0,1,1,4),(45,6,0,1,1,4),(45,194,1,1,1,4),(45,195,1,1,1,4),(46,194,3,1,1,4),(48,195,3,1,1,4),(50,124,10002,0,1,4),(50,125,10002,0,1,4),(50,126,10002,0,1,4),(50,133,10002,0,1,4),(50,134,10002,0,1,4),(55,124,2,1,1,4),(55,125,2,1,1,4),(55,126,2,1,1,4),(55,133,2,1,1,4),(55,134,2,1,1,4),(59,6,10001,0,1,4),(59,53,10002,0,1,4),(59,54,10002,0,1,4),(59,55,10002,0,1,4),(59,56,10002,0,1,4),(59,57,10002,0,1,4),(59,58,10002,0,1,4),(59,59,10002,0,1,4),(59,60,10002,0,1,4),(59,61,10002,0,1,4),(59,194,10002,0,1,4),(59,195,10002,0,1,4),(59,7,10003,0,1,4),(59,9,10003,0,1,4),(59,10,10003,0,1,4),(59,11,10003,0,1,4),(59,12,10003,0,1,4),(59,13,10003,0,1,4),(59,14,10003,0,1,4),(59,111,10003,0,1,4),(59,112,10003,0,1,4),(59,113,10003,0,1,4),(59,114,10003,0,1,4),(59,115,10003,0,1,4),(59,116,10003,0,1,4),(59,117,10003,0,1,4),(59,118,10003,0,1,4),(59,119,10003,0,1,4),(59,120,10003,0,1,4),(59,121,10003,0,1,4),(59,122,10003,0,1,4),(59,123,10003,0,1,4),(59,124,10003,0,1,4),(59,125,10003,0,1,4),(59,126,10003,0,1,4),(59,127,10003,0,1,4),(59,128,10003,0,1,4),(59,129,10003,0,1,4),(59,130,10003,0,1,4),(59,131,10003,0,1,4),(59,132,10003,0,1,4),(59,133,10003,0,1,4),(59,134,10003,0,1,4),(59,196,10003,0,1,4),(59,197,10003,0,1,4),(60,60,2,1,1,4),(61,6,1,1,1,4),(61,7,3,1,1,4),(61,9,3,1,1,4),(61,10,3,1,1,4),(61,11,3,1,1,4),(61,12,3,1,1,4),(61,13,3,1,1,4),(61,14,3,1,1,4),(62,55,2,1,1,4),(62,61,2,1,1,4),(63,53,2,1,1,4),(63,58,2,1,1,4),(65,54,2,1,1,4),(65,57,2,1,1,4),(65,194,2,1,1,4),(65,195,2,1,1,4),(68,111,3,1,1,4),(68,112,3,1,1,4),(68,113,3,1,1,4),(68,114,3,1,1,4),(68,115,3,1,1,4),(68,116,3,1,1,4),(68,117,3,1,1,4),(68,118,3,1,1,4),(68,119,3,1,1,4),(68,120,3,1,1,4),(68,121,3,1,1,4),(68,122,3,1,1,4),(68,123,3,1,1,4),(68,124,3,1,1,4),(68,125,3,1,1,4),(68,126,3,1,1,4),(68,127,3,1,1,4),(68,128,3,1,1,4),(68,129,3,1,1,4),(68,130,3,1,1,4),(68,131,3,1,1,4),(68,132,3,1,1,4),(68,133,3,1,1,4),(68,134,3,1,1,4),(68,196,3,1,1,4),(68,197,3,1,1,4),(69,56,2,1,1,4),(69,59,2,1,1,4),(74,5,0,1,1,4),(74,8,1,1,1,4),(74,198,1,1,1,4),(74,199,1,1,1,4),(80,1,0,1,1,4),(81,1,0,1,1,4),(84,1,0,1,1,4),(85,1,0,1,1,4);
/*!40000 ALTER TABLE `catalog_category_product_index_store1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_category_product_index_store1_replica`
--

DROP TABLE IF EXISTS `catalog_category_product_index_store1_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_store1_replica` (
  `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_4B965DC45C352D6E4C9DC0FF50B1FCF5` (`product_id`,`store_id`,`category_id`,`visibility`),
  KEY `IDX_47AB760CD6A893ACEA69A9C2E0112C60` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Index Store1 Replica';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_category_product_index_store1_replica`
--

LOCK TABLES `catalog_category_product_index_store1_replica` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_store1_replica` DISABLE KEYS */;
INSERT INTO `catalog_category_product_index_store1_replica` VALUES (2,1,10000,0,1,4),(2,2,10000,0,1,4),(2,4,10000,0,1,4),(2,5,10000,0,1,4),(2,6,10000,0,1,4),(2,7,10000,0,1,4),(2,8,10000,0,1,4),(2,9,10000,0,1,4),(2,10,10000,0,1,4),(2,11,10000,0,1,4),(2,12,10000,0,1,4),(2,13,10000,0,1,4),(2,14,10000,0,1,4),(2,49,10000,0,1,4),(2,51,10000,0,1,4),(2,52,10000,0,1,4),(2,53,10000,0,1,4),(2,54,10000,0,1,4),(2,55,10000,0,1,4),(2,56,10000,0,1,4),(2,57,10000,0,1,4),(2,58,10000,0,1,4),(2,59,10000,0,1,4),(2,60,10000,0,1,4),(2,61,10000,0,1,4),(2,111,10000,0,1,4),(2,112,10000,0,1,4),(2,113,10000,0,1,4),(2,114,10000,0,1,4),(2,115,10000,0,1,4),(2,116,10000,0,1,4),(2,117,10000,0,1,4),(2,118,10000,0,1,4),(2,119,10000,0,1,4),(2,120,10000,0,1,4),(2,121,10000,0,1,4),(2,122,10000,0,1,4),(2,123,10000,0,1,4),(2,124,10000,0,1,4),(2,125,10000,0,1,4),(2,126,10000,0,1,4),(2,127,10000,0,1,4),(2,128,10000,0,1,4),(2,129,10000,0,1,4),(2,130,10000,0,1,4),(2,131,10000,0,1,4),(2,132,10000,0,1,4),(2,133,10000,0,1,4),(2,134,10000,0,1,4),(2,173,10000,0,1,4),(2,174,10000,0,1,4),(2,175,10000,0,1,4),(2,176,10000,0,1,4),(2,177,10000,0,1,4),(2,178,10000,0,1,4),(2,179,10000,0,1,4),(2,180,10000,0,1,4),(2,181,10000,0,1,4),(2,182,10000,0,1,4),(2,183,10000,0,1,4),(2,194,10000,0,1,4),(2,195,10000,0,1,4),(3,2,10000,0,1,4),(3,4,10000,0,1,4),(3,6,10000,0,1,4),(3,1,0,1,1,4),(3,7,0,1,1,4),(3,8,0,1,1,4),(3,9,0,1,1,4),(3,10,0,1,1,4),(3,11,0,1,1,4),(3,12,0,1,1,4),(3,13,0,1,1,4),(3,14,0,1,1,4),(3,49,0,1,1,4),(3,51,0,1,1,4),(3,52,0,1,1,4),(3,53,0,1,1,4),(3,54,0,1,1,4),(3,55,0,1,1,4),(3,56,0,1,1,4),(3,57,0,1,1,4),(3,58,0,1,1,4),(3,59,0,1,1,4),(3,60,0,1,1,4),(3,61,0,1,1,4),(3,111,0,1,1,4),(3,112,0,1,1,4),(3,113,0,1,1,4),(3,114,0,1,1,4),(3,115,0,1,1,4),(3,116,0,1,1,4),(3,117,0,1,1,4),(3,118,0,1,1,4),(3,119,0,1,1,4),(3,120,0,1,1,4),(3,121,0,1,1,4),(3,122,0,1,1,4),(3,123,0,1,1,4),(3,124,0,1,1,4),(3,125,0,1,1,4),(3,126,0,1,1,4),(3,127,0,1,1,4),(3,128,0,1,1,4),(3,129,0,1,1,4),(3,130,0,1,1,4),(3,131,0,1,1,4),(3,132,0,1,1,4),(3,133,0,1,1,4),(3,134,0,1,1,4),(3,173,0,1,1,4),(3,174,0,1,1,4),(3,175,0,1,1,4),(3,176,0,1,1,4),(3,177,0,1,1,4),(3,178,0,1,1,4),(3,179,0,1,1,4),(3,180,0,1,1,4),(3,181,0,1,1,4),(3,182,0,1,1,4),(3,183,0,1,1,4),(3,194,0,1,1,4),(3,195,0,1,1,4),(11,49,1,1,1,4),(11,51,1,1,1,4),(11,52,1,1,1,4),(11,53,1,1,1,4),(11,54,1,1,1,4),(11,55,1,1,1,4),(11,56,1,1,1,4),(11,57,1,1,1,4),(11,58,1,1,1,4),(11,59,1,1,1,4),(11,60,1,1,1,4),(11,61,1,1,1,4),(12,49,2,1,1,4),(12,51,2,1,1,4),(12,52,2,1,1,4),(12,53,3,1,1,4),(12,54,3,1,1,4),(12,55,3,1,1,4),(12,56,3,1,1,4),(12,57,3,1,1,4),(12,58,3,1,1,4),(12,59,3,1,1,4),(12,60,3,1,1,4),(12,61,3,1,1,4),(17,4,0,1,1,4),(27,173,1,1,1,4),(27,174,1,1,1,4),(27,175,1,1,1,4),(27,176,1,1,1,4),(27,177,1,1,1,4),(27,178,1,1,1,4),(27,179,1,1,1,4),(27,180,1,1,1,4),(27,181,1,1,1,4),(27,182,1,1,1,4),(27,183,1,1,1,4),(28,174,2,1,1,4),(28,175,2,1,1,4),(28,176,2,1,1,4),(28,177,2,1,1,4),(28,178,2,1,1,4),(28,179,2,1,1,4),(28,180,2,1,1,4),(28,181,2,1,1,4),(28,183,2,1,1,4),(29,173,2,1,1,4),(29,182,2,1,1,4),(34,11,1,1,1,4),(34,12,1,1,1,4),(34,127,1,1,1,4),(34,128,1,1,1,4),(34,129,1,1,1,4),(34,130,1,1,1,4),(34,131,1,1,1,4),(34,132,1,1,1,4),(35,11,2,1,1,4),(35,12,2,1,1,4),(36,127,2,1,1,4),(36,128,2,1,1,4),(36,129,2,1,1,4),(36,130,2,1,1,4),(36,131,2,1,1,4),(36,132,2,1,1,4),(37,7,1,1,1,4),(37,9,1,1,1,4),(37,10,1,1,1,4),(37,13,1,1,1,4),(37,14,1,1,1,4),(37,111,1,1,1,4),(37,112,1,1,1,4),(37,113,1,1,1,4),(37,114,1,1,1,4),(37,115,1,1,1,4),(37,116,1,1,1,4),(37,117,1,1,1,4),(37,118,1,1,1,4),(37,119,1,1,1,4),(37,120,1,1,1,4),(37,121,1,1,1,4),(37,122,1,1,1,4),(37,123,1,1,1,4),(37,124,1,1,1,4),(37,125,1,1,1,4),(37,126,1,1,1,4),(37,133,1,1,1,4),(37,134,1,1,1,4),(38,111,2,1,1,4),(38,112,2,1,1,4),(38,113,2,1,1,4),(38,114,2,1,1,4),(38,115,2,1,1,4),(38,116,2,1,1,4),(38,117,2,1,1,4),(38,118,2,1,1,4),(38,119,2,1,1,4),(38,120,2,1,1,4),(38,121,2,1,1,4),(38,122,2,1,1,4),(38,123,2,1,1,4),(40,7,2,1,1,4),(40,9,2,1,1,4),(40,10,2,1,1,4),(40,13,2,1,1,4),(40,14,2,1,1,4),(45,2,0,1,1,4),(45,6,0,1,1,4),(45,194,1,1,1,4),(45,195,1,1,1,4),(46,194,3,1,1,4),(48,195,3,1,1,4),(50,124,10002,0,1,4),(50,125,10002,0,1,4),(50,126,10002,0,1,4),(50,133,10002,0,1,4),(50,134,10002,0,1,4),(55,124,2,1,1,4),(55,125,2,1,1,4),(55,126,2,1,1,4),(55,133,2,1,1,4),(55,134,2,1,1,4),(59,6,10001,0,1,4),(59,53,10002,0,1,4),(59,54,10002,0,1,4),(59,55,10002,0,1,4),(59,56,10002,0,1,4),(59,57,10002,0,1,4),(59,58,10002,0,1,4),(59,59,10002,0,1,4),(59,60,10002,0,1,4),(59,61,10002,0,1,4),(59,194,10002,0,1,4),(59,195,10002,0,1,4),(59,7,10003,0,1,4),(59,9,10003,0,1,4),(59,10,10003,0,1,4),(59,11,10003,0,1,4),(59,12,10003,0,1,4),(59,13,10003,0,1,4),(59,14,10003,0,1,4),(59,111,10003,0,1,4),(59,112,10003,0,1,4),(59,113,10003,0,1,4),(59,114,10003,0,1,4),(59,115,10003,0,1,4),(59,116,10003,0,1,4),(59,117,10003,0,1,4),(59,118,10003,0,1,4),(59,119,10003,0,1,4),(59,120,10003,0,1,4),(59,121,10003,0,1,4),(59,122,10003,0,1,4),(59,123,10003,0,1,4),(59,124,10003,0,1,4),(59,125,10003,0,1,4),(59,126,10003,0,1,4),(59,127,10003,0,1,4),(59,128,10003,0,1,4),(59,129,10003,0,1,4),(59,130,10003,0,1,4),(59,131,10003,0,1,4),(59,132,10003,0,1,4),(59,133,10003,0,1,4),(59,134,10003,0,1,4),(60,60,2,1,1,4),(61,6,1,1,1,4),(61,7,3,1,1,4),(61,9,3,1,1,4),(61,10,3,1,1,4),(61,11,3,1,1,4),(61,12,3,1,1,4),(61,13,3,1,1,4),(61,14,3,1,1,4),(62,55,2,1,1,4),(62,61,2,1,1,4),(63,53,2,1,1,4),(63,58,2,1,1,4),(65,54,2,1,1,4),(65,57,2,1,1,4),(65,194,2,1,1,4),(65,195,2,1,1,4),(68,111,3,1,1,4),(68,112,3,1,1,4),(68,113,3,1,1,4),(68,114,3,1,1,4),(68,115,3,1,1,4),(68,116,3,1,1,4),(68,117,3,1,1,4),(68,118,3,1,1,4),(68,119,3,1,1,4),(68,120,3,1,1,4),(68,121,3,1,1,4),(68,122,3,1,1,4),(68,123,3,1,1,4),(68,124,3,1,1,4),(68,125,3,1,1,4),(68,126,3,1,1,4),(68,127,3,1,1,4),(68,128,3,1,1,4),(68,129,3,1,1,4),(68,130,3,1,1,4),(68,131,3,1,1,4),(68,132,3,1,1,4),(68,133,3,1,1,4),(68,134,3,1,1,4),(69,56,2,1,1,4),(69,59,2,1,1,4),(74,5,0,1,1,4),(74,8,1,1,1,4),(80,1,10000,0,1,4),(81,1,0,1,1,4),(84,1,0,1,1,4),(85,1,0,1,1,4);
/*!40000 ALTER TABLE `catalog_category_product_index_store1_replica` 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',
  PRIMARY KEY (`category_id`,`product_id`,`store_id`),
  KEY `CAT_CTGR_PRD_IDX_TMP_PRD_ID_CTGR_ID_STORE_ID` (`product_id`,`category_id`,`store_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Category Product Indexer temporary 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',
  `list_id` int(10) unsigned DEFAULT NULL COMMENT 'List ID',
  PRIMARY KEY (`catalog_compare_item_id`),
  KEY `CATALOG_COMPARE_ITEM_LIST_ID_CATALOG_COMPARE_LIST_LIST_ID` (`list_id`),
  KEY `CATALOG_COMPARE_ITEM_PRODUCT_ID` (`product_id`),
  KEY `CATALOG_COMPARE_ITEM_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  KEY `CATALOG_COMPARE_ITEM_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `CATALOG_COMPARE_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_COMPARE_ITEM_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOG_COMPARE_ITEM_LIST_ID_CATALOG_COMPARE_LIST_LIST_ID` FOREIGN KEY (`list_id`) REFERENCES `catalog_compare_list` (`list_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOG_COMPARE_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOG_COMPARE_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB 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 */;
/*!40000 ALTER TABLE `catalog_compare_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_compare_list`
--

DROP TABLE IF EXISTS `catalog_compare_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_compare_list` (
  `list_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Compare List ID',
  `list_id_mask` varchar(32) DEFAULT NULL COMMENT 'Masked ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  PRIMARY KEY (`list_id`),
  UNIQUE KEY `CATALOG_COMPARE_LIST_CUSTOMER_ID` (`customer_id`),
  KEY `CATALOG_COMPARE_LIST_LIST_ID_MASK` (`list_id_mask`),
  CONSTRAINT `CATALOG_COMPARE_LIST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Compare List with hash Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_compare_list`
--

LOCK TABLES `catalog_compare_list` WRITE;
/*!40000 ALTER TABLE `catalog_compare_list` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_compare_list` 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',
  `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',
  `is_required_in_admin_store` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Required In Admin Store',
  `is_used_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Used in Grid',
  `is_visible_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible in Grid',
  `is_filterable_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Filterable in Grid',
  `search_weight` float NOT NULL DEFAULT 1 COMMENT 'Search Weight',
  `is_pagebuilder_enabled` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Is PageBuilder Enabled',
  `additional_data` text DEFAULT NULL COMMENT 'Additional swatch attributes data',
  PRIMARY KEY (`attribute_id`),
  KEY `CATALOG_EAV_ATTRIBUTE_USED_FOR_SORT_BY` (`used_for_sort_by`),
  KEY `CATALOG_EAV_ATTRIBUTE_USED_IN_PRODUCT_LISTING` (`used_in_product_listing`),
  CONSTRAINT `CATALOG_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE 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 (45,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(46,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(47,NULL,0,1,0,0,0,0,1,0,0,0,0,NULL,0,0,1,0,0,0,0,0,1,0,NULL),(48,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(49,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(50,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(51,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(52,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(53,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(54,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(55,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(56,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(57,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(58,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(59,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(60,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(61,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(62,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(63,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(64,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(65,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(66,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(67,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Sortby\\Available',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(68,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Sortby\\DefaultSortby',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(69,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(70,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(71,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(72,'Magento\\Catalog\\Block\\Adminhtml\\Category\\Helper\\Pricestep',0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(73,NULL,0,1,1,0,0,0,0,0,0,1,1,NULL,1,0,0,0,0,0,0,0,5,0,NULL),(74,NULL,1,1,1,0,1,0,0,0,0,0,0,NULL,1,0,0,0,0,0,0,0,6,0,NULL),(75,NULL,0,1,1,0,1,0,1,0,0,0,0,NULL,1,0,1,0,0,0,0,0,1,1,NULL),(76,NULL,0,1,1,0,1,0,1,0,0,1,0,NULL,1,0,1,0,0,1,0,0,1,0,NULL),(77,NULL,1,1,1,0,0,0,0,0,0,1,1,'simple,virtual,downloadable,bundle,configurable',1,0,0,0,0,0,0,0,1,0,NULL),(78,NULL,1,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(79,NULL,2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,1,0,0,1,0,NULL),(80,NULL,2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,1,0,0,1,0,NULL),(81,NULL,1,1,0,0,0,0,0,0,0,0,0,'simple,virtual,downloadable',0,0,0,0,0,1,0,1,1,0,NULL),(82,'Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Weight',1,1,0,0,0,0,0,0,0,0,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(83,NULL,1,1,1,1,1,0,0,0,0,0,0,'simple,configurable',1,0,0,0,0,1,0,1,1,0,NULL),(84,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(85,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(86,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(87,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(88,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(89,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(90,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(91,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(92,NULL,2,1,0,0,0,0,0,0,0,0,0,'simple,virtual,downloadable,bundle',0,0,0,0,0,0,0,0,1,0,NULL),(93,NULL,1,1,1,1,1,0,0,0,0,0,0,'simple,virtual,configurable',1,0,0,0,0,1,0,1,1,0,NULL),(94,NULL,2,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(95,NULL,2,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(96,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(97,'Magento\\Framework\\Data\\Form\\Element\\Hidden',2,1,1,0,0,0,0,0,0,1,0,NULL,0,0,0,0,1,0,0,0,1,0,NULL),(98,NULL,1,0,0,0,0,0,0,0,0,0,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,0,0,0,1,0,NULL),(99,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,1,0,0,0,1,0,NULL),(100,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(101,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(102,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(103,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(104,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(105,'Magento\\Catalog\\Block\\Adminhtml\\Product\\Helper\\Form\\Category',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(106,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(107,NULL,1,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(108,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(109,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(110,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(111,NULL,0,0,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(112,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(113,NULL,1,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(114,NULL,2,1,0,0,0,0,0,0,0,0,0,'simple,bundle,grouped,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(115,'Magento\\CatalogInventory\\Block\\Adminhtml\\Form\\Field\\Stock',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(116,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(117,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(118,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(119,'Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type',1,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(120,'Magento\\Msrp\\Block\\Adminhtml\\Product\\Helper\\Form\\Type\\Price',2,1,0,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,0,0,0,1,0,NULL),(121,NULL,0,1,1,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(122,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(123,NULL,0,1,1,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,1,0,1,1,0,NULL),(124,NULL,0,0,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(125,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(126,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(127,NULL,0,0,0,0,0,0,0,0,0,0,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(128,NULL,1,0,0,0,0,0,0,0,0,1,0,'downloadable',0,0,0,0,0,0,0,0,1,0,NULL),(129,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(130,NULL,1,1,0,0,0,0,0,0,0,0,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(131,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(132,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(133,NULL,1,1,0,0,0,0,0,0,0,1,0,'bundle',0,0,0,0,0,0,0,0,1,0,NULL),(134,'Magento\\GiftMessage\\Block\\Adminhtml\\Product\\Helper\\Form\\Config',1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,1,0,0,1,0,NULL),(135,NULL,0,1,0,0,0,0,0,0,0,1,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(136,NULL,2,1,1,0,0,0,0,0,0,1,0,'simple,virtual,downloadable,bundle,configurable',0,0,0,0,0,1,0,1,1,0,NULL),(163,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(164,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(165,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(166,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(167,NULL,1,1,0,0,1,1,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(168,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(169,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(170,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(171,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(172,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(173,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(174,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(175,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(176,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(177,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(178,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(179,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(180,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(181,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(182,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(183,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(184,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(185,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(186,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(187,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(188,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(205,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(206,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(207,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(208,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(209,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(210,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(211,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(212,NULL,0,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,0,0,1,0,NULL),(213,NULL,1,1,0,0,1,0,0,0,0,0,0,NULL,0,0,0,0,0,0,1,1,1,0,NULL),(214,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,1,0,1,0,NULL),(216,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,1,0,1,0,NULL),(217,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,1,0,1,0,NULL),(218,NULL,1,1,0,0,0,0,1,0,0,0,0,NULL,0,0,0,0,0,1,1,1,1,0,NULL),(219,NULL,1,1,0,0,0,0,1,0,0,0,0,NULL,0,0,0,0,0,0,1,0,1,0,NULL),(220,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,1,0,1,0,NULL),(224,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,1,0,1,0,NULL),(225,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,1,0,1,0,NULL),(226,NULL,1,1,0,0,0,0,0,0,0,0,0,NULL,0,0,0,0,0,0,1,0,1,0,NULL);
/*!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 `CATALOG_PRODUCT_BUNDLE_OPTION_PARENT_ID` (`parent_id`),
  CONSTRAINT `CAT_PRD_BNDL_OPT_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE 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',
  `parent_product_id` int(10) unsigned NOT NULL COMMENT 'Parent Product ID',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CAT_PRD_BNDL_OPT_VAL_OPT_ID_PARENT_PRD_ID_STORE_ID` (`option_id`,`parent_product_id`,`store_id`),
  CONSTRAINT `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
) 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` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `min_price` decimal(20,6) NOT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) NOT NULL COMMENT 'Max Price',
  PRIMARY KEY (`entity_id`,`website_id`,`customer_group_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_WEBSITE_ID` (`website_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_PRICE_INDEX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `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,
  CONSTRAINT `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,
  CONSTRAINT `CAT_PRD_BNDL_PRICE_IDX_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE 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 `CATALOG_PRODUCT_BUNDLE_SELECTION_OPTION_ID` (`option_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_PRODUCT_ID` (`product_id`),
  CONSTRAINT `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,
  CONSTRAINT `CAT_PRD_BNDL_SELECTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE 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(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Selection Price Value',
  `parent_product_id` int(10) unsigned NOT NULL COMMENT 'Parent Product ID',
  PRIMARY KEY (`selection_id`,`parent_product_id`,`website_id`),
  KEY `CATALOG_PRODUCT_BUNDLE_SELECTION_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CAT_PRD_BNDL_SELECTION_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_DCF37523AA05D770A70AA4ED7C2616E4` FOREIGN KEY (`selection_id`) REFERENCES `catalog_product_bundle_selection` (`selection_id`) ON DELETE 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_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',
  `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) NOT 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 NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Update Time',
  PRIMARY KEY (`entity_id`),
  KEY `CATALOG_PRODUCT_ENTITY_ATTRIBUTE_SET_ID` (`attribute_set_id`),
  KEY `CATALOG_PRODUCT_ENTITY_SKU` (`sku`)
) ENGINE=InnoDB AUTO_INCREMENT=201 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,9,'simple','vinotest',0,0,'2022-07-31 13:04:22','2022-09-16 11:14:49'),(2,9,'simple','primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',0,0,'2022-08-08 14:48:10','2022-09-16 13:24:40'),(3,4,'simple','prodottoprova-69e46421-28b0-4595-b964-4a01c8ba83ce',0,0,'2022-08-10 14:53:54','2022-08-10 14:55:55'),(4,4,'simple','12345678-0aa9916d-2da6-433b-8d0a-127cda4606c8',0,0,'2022-08-25 06:49:11','2022-09-09 08:16:41'),(5,4,'simple','345-d3efefbb-3ac4-4d65-9f1b-83e4d5f39fc0',0,0,'2022-09-06 14:28:44','2022-09-09 08:56:48'),(6,9,'simple','1243-e576e3bc-7778-4171-870f-aae102120d2d',0,0,'2022-09-09 11:08:54','2022-09-09 11:08:54'),(7,4,'simple','MEMOUSSE01-01-df8a8f47-946b-41d4-b33c-56c874477155',0,0,'2022-09-12 14:42:56','2022-09-16 09:57:57'),(8,9,'simple','VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4',0,0,'2022-09-13 07:59:16','2022-09-13 08:20:32'),(9,4,'simple','MELRONDEL01-8c67881f-9f6d-4530-8ad5-5b08ed4cf042',0,0,'2022-09-13 08:52:06','2022-09-16 09:58:20'),(10,4,'simple','MELBASTON01-ca7cb6b8-c1c8-4632-afe3-f94a09d550a3',0,0,'2022-09-13 08:57:19','2022-09-16 09:58:40'),(11,4,'simple','MELGLASSA01-f8997fbe-1caf-4ab9-b1a5-02e8ca3469a6',0,0,'2022-09-13 09:00:31','2022-09-16 09:59:00'),(12,4,'simple','MELACETO01-0d92fdd2-2e0f-40b9-af41-797ace063291',0,0,'2022-09-13 10:51:25','2022-09-16 09:59:25'),(13,4,'simple','MEPCHEME01-9164c4b8-4767-4aae-9410-a32b56ddaa77',0,0,'2022-09-13 10:54:01','2022-09-16 09:59:43'),(14,4,'simple','METNSNACK01-51c5d563-b404-433d-ba80-44dbecf6c48e',0,0,'2022-09-13 10:55:57','2022-09-16 09:59:59'),(49,4,'simple','trentingrana-01-b01558e0-efc4-4ea2-904e-76c407ff1409',0,0,'2022-09-15 09:12:11','2022-09-15 09:12:11'),(51,4,'simple','trentingrana-02-f92263bb-8e95-4b84-ad74-c49ba2639b18',0,0,'2022-09-15 09:31:08','2022-09-15 09:31:08'),(52,4,'simple','TREGRAT1-01-6203ee93-27a1-4fb2-badd-af22e2eb3e58',0,0,'2022-09-15 09:33:51','2022-09-15 09:33:51'),(53,4,'simple','TREPUZ1-01-8388f523-b0c5-4285-8456-f2d2508bd1bc',0,0,'2022-09-15 09:36:52','2022-09-15 09:36:52'),(54,4,'simple','TREAFFSAB1-01-2dea09c3-a114-4f27-b926-da0c73c523ab',0,0,'2022-09-15 09:38:52','2022-09-15 09:38:52'),(55,4,'simple','TREFONCAV1-01-7416cd3a-6e62-4eea-a46e-30177ecbaecc',0,0,'2022-09-15 09:41:35','2022-09-15 09:41:35'),(56,4,'simple','TREMEZZ1-01-524f70d4-8e52-480c-88da-cf7cce95342c',0,0,'2022-09-15 09:44:08','2022-09-15 09:44:08'),(57,4,'simple','TREVEZ1-01-2232da5e-4d6a-4a9f-be5a-02c57a6f39d5',0,0,'2022-09-15 09:45:29','2022-09-15 09:45:29'),(58,4,'simple','TRECUFAS1-01-f0d1c648-2819-41aa-844a-bc385ca25793',0,0,'2022-09-15 09:46:57','2022-09-15 09:46:57'),(59,4,'simple','TREPRIM1-01-b6afbd76-2036-4d8c-b55e-58034b77cf12',0,0,'2022-09-15 09:48:11','2022-09-15 09:48:11'),(60,4,'simple','TRECAS01-01-fb55354b-3854-48c9-9036-75758240fc1c',0,0,'2022-09-15 09:50:24','2022-09-15 09:50:24'),(61,4,'simple','TREFORMAE1-01-e0292c3e-da65-4690-896f-34b1de9ed5c0',0,0,'2022-09-15 10:03:23','2022-09-15 10:03:23'),(111,4,'simple','4A01020001-01-73960eeb-46b1-4432-81a5-fc76017aafeb',0,0,'2022-09-15 13:36:22','2022-09-16 09:33:28'),(112,4,'simple','4A01020003-01-63bf73f3-c8ff-4527-8e81-1790df1cff14',0,0,'2022-09-15 13:36:23','2022-09-16 09:43:56'),(113,4,'simple','4A01020006-01-01aa69c9-4ba1-4842-9016-d85481eb99ad',0,0,'2022-09-15 13:36:24','2022-09-16 09:44:15'),(114,4,'simple','4A01020010-01-144185b5-2973-47ec-a1b7-381848bf1ba6',0,0,'2022-09-15 13:36:25','2022-09-16 09:42:52'),(115,4,'simple','4A01020011-01-ceb499ab-3fbf-476b-9bf3-fb218cc5ac6b',0,0,'2022-09-15 13:36:25','2022-09-16 09:43:39'),(116,4,'simple','4A01020034-01-9d9eff29-58e4-49ce-858a-f1ef237bcfc9',0,0,'2022-09-15 13:36:26','2022-09-16 09:41:55'),(117,4,'simple','4A01020035-01-7f6c6f69-aee4-4ff2-9b04-8ea39b88244f',0,0,'2022-09-15 13:36:26','2022-09-16 09:42:30'),(118,4,'simple','4A01020038-01-dae98d55-4ea4-4d30-ad7a-87e4dcb8d8a9',0,0,'2022-09-15 13:36:27','2022-09-16 09:40:25'),(119,4,'simple','4A01020039-01-2f80a03c-0f63-478e-a4c4-95278e378d36',0,0,'2022-09-15 13:36:28','2022-09-16 09:40:06'),(120,4,'simple','4A01020041-01-a1848f3e-f504-4c48-bedd-d88ed8f13a82',0,0,'2022-09-15 13:36:28','2022-09-16 09:41:04'),(121,4,'simple','4A04030006-01-6ecdb1a9-1031-4198-882c-c069b2a5ee71',0,0,'2022-09-15 13:36:29','2022-09-16 09:37:32'),(122,4,'simple','4A04030010-01-c7528cb5-5b59-4673-bacc-e31d786de5d2',0,0,'2022-09-15 13:36:29','2022-09-15 13:36:29'),(123,4,'simple','4A04030011-01-91f05f81-d759-49bc-abf3-e8ccef69925b',0,0,'2022-09-15 13:36:30','2022-09-16 09:47:50'),(124,4,'simple','4A05081006-01-d02b2f19-97c6-45df-bd8f-c0f011ab97a2',0,0,'2022-09-15 13:36:31','2022-09-16 13:22:03'),(125,4,'simple','4A05081008-01-fffed57b-a87b-4bcb-b81e-aac6bcfdf686',0,0,'2022-09-15 13:36:31','2022-09-16 09:47:20'),(126,4,'simple','4A05081009-01-78104831-67af-4161-82ab-03d986cebfdb',0,0,'2022-09-15 13:36:32','2022-09-16 09:47:30'),(127,4,'simple','4A09050007-01-24fece10-d99c-4076-a6fc-a596293f7767',0,0,'2022-09-15 13:36:32','2022-09-16 09:39:24'),(128,4,'simple','4A09050008-01-c0c9a963-2ecb-4cfa-b454-f40adb373a58',0,0,'2022-09-15 13:36:33','2022-09-16 09:39:11'),(129,4,'simple','4A09050009-01-21dbbd80-7128-4c49-861e-63eb94eba93d',0,0,'2022-09-15 13:36:34','2022-09-16 09:38:16'),(130,4,'simple','4A09050010-01-21f97a2a-433a-4c69-92ec-73e1572f433b',0,0,'2022-09-15 13:36:34','2022-09-16 09:38:35'),(131,4,'simple','4A10050010-01-5c4b3c5b-fb1e-4580-b7cd-33d9e6d371be',0,0,'2022-09-15 13:36:35','2022-09-16 09:46:25'),(132,4,'simple','4A10050011-01-bfda8f30-ebba-4dc1-b2e1-4f574741f435',0,0,'2022-09-15 13:36:35','2022-09-16 09:46:11'),(133,4,'simple','4A07010001-01-0cd52c02-05d8-4afd-82e3-2aae18e23c0e',0,0,'2022-09-15 13:36:36','2022-09-15 13:36:36'),(134,4,'simple','4A07010006-01-c5189c99-18d8-4d30-94db-ef7bbefa4d82',0,0,'2022-09-15 13:36:37','2022-09-16 09:37:51'),(138,9,'simple','TESTBRANDTERR-2ac1d82a-87e2-4353-a285-f8fa17eb243d',0,0,'2022-09-15 15:17:26','2022-09-16 09:36:09'),(173,4,'simple','ASTSALBOC1-01-90a3fa2f-344f-4a44-948e-6d159cfa0e60',0,0,'2022-09-15 15:47:28','2022-09-15 15:47:28'),(174,4,'simple','ASTTROSAO1-01-fc20c627-cc5c-4e66-882b-f3e269c1297d',0,0,'2022-09-15 15:47:29','2022-09-15 15:47:29'),(175,4,'simple','ASTTROFIL1-01-eababb26-bfdd-4c64-8ae9-74a80ef6d17e',0,0,'2022-09-15 15:47:29','2022-09-15 15:47:29'),(176,4,'simple','ASTTROUOV1-01-d32f53e7-cf00-4159-8b98-957794b17abf',0,0,'2022-09-15 15:47:30','2022-09-16 10:01:04'),(177,4,'simple','ASTTROGOC1-01-2db669b9-fc31-44d6-bc0e-f41d3a40babd',0,0,'2022-09-15 15:47:30','2022-09-15 15:47:30'),(178,4,'simple','ASTTRODEL1-01-9ba7dbd3-4359-4ae2-8a1a-e1950d8819f0',0,0,'2022-09-15 15:47:31','2022-09-16 10:01:32'),(179,4,'simple','ASTTROCLA1-01-265e6c89-70a5-4bc9-818c-74eafcfe90b0',0,0,'2022-09-15 15:47:31','2022-09-16 10:00:26'),(180,4,'simple','ASTTRORUS1-01-f0bc8635-b70c-499d-83f6-391c35416a0c',0,0,'2022-09-15 15:47:32','2022-09-16 10:01:21'),(181,4,'simple','ASTTROAFF1-01-00e827ce-e840-4c5f-ac4b-f5424df80712',0,0,'2022-09-15 15:47:32','2022-09-16 10:01:46'),(182,4,'simple','ASTSALALP1-01-ba67c4b1-f11a-4a6f-af04-8de30359b688',0,0,'2022-09-15 15:47:33','2022-09-15 15:47:33'),(183,4,'simple','ASTTROBOC1-01-0a3b35e2-18a2-4e97-a39c-26aab32569ad',0,0,'2022-09-15 15:49:27','2022-09-15 15:49:27'),(194,4,'simple','ISMARZ01-01-ba59e811-cfcb-45c4-80b5-211ad00e5a7d',0,0,'2022-09-16 09:07:38','2022-09-16 09:07:38'),(195,4,'simple','ISTNDOC1-01-35f3475c-a276-4cd7-8747-21c9d7cc3dd9',0,0,'2022-09-16 09:21:07','2022-09-16 09:21:07'),(196,9,'simple','TESTBRANDTERR-c0bf8106-ba20-4269-87f9-39c3e752f114',0,0,'2022-09-16 11:33:49','2022-09-16 11:33:49'),(197,9,'simple','TESTsssBRANDTERR-29046f2f-8dc5-4a5e-bddd-990af446903a',0,0,'2022-09-16 11:33:59','2022-09-16 11:33:59'),(198,4,'simple','PROVAPROD_AG-ee21e1b4-0ab6-4a81-bb4d-82d7c9f35115',0,0,'2022-09-16 13:43:33','2022-09-16 13:44:09'),(199,4,'simple','proprova-e221af72-e2e0-4a4c-b8ff-88c9ba40ce10',0,0,'2022-09-16 13:49:35','2022-09-16 13:49:55'),(200,4,'simple','prodtre-c827c494-3740-4335-8cb5-cae2e10e4c05',0,0,'2022-09-16 13:57:17','2022-09-16 13:59:04');
/*!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',
  `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 `CATALOG_PRODUCT_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DTIME_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=200 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,79,0,2,'2022-08-08 00:00:00'),(2,79,0,3,'2022-08-10 00:00:00'),(3,79,0,4,'2022-08-25 00:00:00'),(4,79,0,5,'2022-09-06 00:00:00'),(5,79,0,6,'2022-09-09 00:00:00'),(6,79,0,7,'2022-09-12 00:00:00'),(7,79,0,8,'2022-09-13 00:00:00'),(8,79,0,9,'2022-09-13 00:00:00'),(9,79,0,10,'2022-09-13 00:00:00'),(10,79,0,11,'2022-09-13 00:00:00'),(11,79,0,12,'2022-09-13 00:00:00'),(12,79,0,13,'2022-09-13 00:00:00'),(13,79,0,14,'2022-09-13 00:00:00'),(48,79,0,49,'2022-09-15 00:00:00'),(50,79,0,51,'2022-09-15 00:00:00'),(51,79,0,52,'2022-09-15 00:00:00'),(52,79,0,53,'2022-09-15 00:00:00'),(53,79,0,54,'2022-09-15 00:00:00'),(54,79,0,55,'2022-09-15 00:00:00'),(55,79,0,56,'2022-09-15 00:00:00'),(56,79,0,57,'2022-09-15 00:00:00'),(57,79,0,58,'2022-09-15 00:00:00'),(58,79,0,59,'2022-09-15 00:00:00'),(59,79,0,60,'2022-09-15 00:00:00'),(60,79,0,61,'2022-09-15 00:00:00'),(110,79,0,111,'2022-09-15 00:00:00'),(111,79,0,112,'2022-09-15 00:00:00'),(112,79,0,113,'2022-09-15 00:00:00'),(113,79,0,114,'2022-09-15 00:00:00'),(114,79,0,115,'2022-09-15 00:00:00'),(115,79,0,116,'2022-09-15 00:00:00'),(116,79,0,117,'2022-09-15 00:00:00'),(117,79,0,118,'2022-09-15 00:00:00'),(118,79,0,119,'2022-09-15 00:00:00'),(119,79,0,120,'2022-09-15 00:00:00'),(120,79,0,121,'2022-09-15 00:00:00'),(121,79,0,122,'2022-09-15 00:00:00'),(122,79,0,123,'2022-09-15 00:00:00'),(123,79,0,124,'2022-09-15 00:00:00'),(124,79,0,125,'2022-09-15 00:00:00'),(125,79,0,126,'2022-09-15 00:00:00'),(126,79,0,127,'2022-09-15 00:00:00'),(127,79,0,128,'2022-09-15 00:00:00'),(128,79,0,129,'2022-09-15 00:00:00'),(129,79,0,130,'2022-09-15 00:00:00'),(130,79,0,131,'2022-09-15 00:00:00'),(131,79,0,132,'2022-09-15 00:00:00'),(132,79,0,133,'2022-09-15 00:00:00'),(133,79,0,134,'2022-09-15 00:00:00'),(137,79,0,138,'2022-09-15 00:00:00'),(172,79,0,173,'2022-09-15 00:00:00'),(173,79,0,174,'2022-09-15 00:00:00'),(174,79,0,175,'2022-09-15 00:00:00'),(175,79,0,176,'2022-09-15 00:00:00'),(176,79,0,177,'2022-09-15 00:00:00'),(177,79,0,178,'2022-09-15 00:00:00'),(178,79,0,179,'2022-09-15 00:00:00'),(179,79,0,180,'2022-09-15 00:00:00'),(180,79,0,181,'2022-09-15 00:00:00'),(181,79,0,182,'2022-09-15 00:00:00'),(182,79,0,183,'2022-09-15 00:00:00'),(193,79,0,194,'2022-09-16 00:00:00'),(194,79,0,195,'2022-09-16 00:00:00'),(195,79,0,196,'2022-09-16 00:00:00'),(196,79,0,197,'2022-09-16 00:00:00'),(197,79,0,198,'2022-09-16 00:00:00'),(198,79,0,199,'2022-09-16 00:00:00'),(199,79,0,200,'2022-09-16 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',
  `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(20,6) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_DEC_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=599 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,77,0,1,1.000000),(2,77,0,2,12.000000),(3,78,0,2,12.000000),(4,82,0,2,1.000000),(5,77,0,3,35.000000),(6,78,0,3,35.000000),(7,82,0,3,400.000000),(8,77,0,4,5.000000),(9,78,0,4,4.500000),(10,82,0,4,0.500000),(11,77,0,5,15.000000),(12,78,0,5,23.000000),(13,77,0,6,10.000000),(14,78,0,6,9.000000),(15,82,0,6,2.000000),(16,77,0,7,1.150000),(17,78,0,7,1.150000),(19,77,0,8,12.000000),(20,78,0,8,11.000000),(21,82,0,8,1111.000000),(22,77,0,9,1.000000),(23,78,0,9,1.000000),(24,77,0,10,0.850000),(25,78,0,10,0.850000),(26,77,0,11,2.990000),(27,78,0,11,2.990000),(28,77,0,12,2.390000),(29,78,0,12,2.390000),(30,77,0,13,1.400000),(31,78,0,13,1.400000),(32,77,0,14,0.850000),(33,78,0,14,0.850000),(136,77,0,49,17.900000),(137,78,0,49,17.900000),(138,82,0,49,1000.000000),(142,77,0,51,5.200000),(143,78,0,51,5.200000),(144,82,0,51,250.000000),(145,77,0,52,2.100000),(146,78,0,52,2.100000),(147,82,0,52,100.000000),(148,77,0,53,4.000000),(149,78,0,53,4.000000),(150,82,0,53,200.000000),(151,77,0,54,4.500000),(152,78,0,54,4.500000),(153,82,0,54,200.000000),(154,77,0,55,3.300000),(155,78,0,55,3.300000),(156,82,0,55,200.000000),(157,77,0,56,3.300000),(158,78,0,56,3.300000),(159,82,0,56,200.000000),(160,77,0,57,4.500000),(161,78,0,57,4.500000),(162,82,0,57,200.000000),(163,77,0,58,4.000000),(164,78,0,58,4.000000),(165,82,0,58,200.000000),(166,77,0,59,3.900000),(167,78,0,59,3.900000),(168,82,0,59,200.000000),(169,77,0,60,9.900000),(170,78,0,60,9.900000),(171,82,0,60,750.000000),(172,77,0,61,3.900000),(173,78,0,61,3.900000),(174,82,0,61,200.000000),(322,77,0,111,4.600000),(323,78,0,111,4.600000),(324,82,0,111,340.000000),(325,77,0,112,4.600000),(326,78,0,112,4.600000),(327,82,0,112,340.000000),(328,77,0,113,4.600000),(329,78,0,113,4.600000),(330,82,0,113,340.000000),(331,77,0,114,4.600000),(332,78,0,114,4.600000),(333,82,0,114,340.000000),(334,77,0,115,4.600000),(335,78,0,115,4.600000),(336,82,0,115,340.000000),(337,77,0,116,4.600000),(338,78,0,116,4.600000),(339,82,0,116,340.000000),(340,77,0,117,4.600000),(341,78,0,117,4.600000),(342,82,0,117,340.000000),(343,77,0,118,4.600000),(344,78,0,118,4.600000),(345,82,0,118,340.000000),(346,77,0,119,4.600000),(347,78,0,119,4.600000),(348,82,0,119,340.000000),(349,77,0,120,2.700000),(350,78,0,120,2.700000),(351,82,0,120,340.000000),(352,77,0,121,5.100000),(353,78,0,121,5.100000),(354,82,0,121,400.000000),(355,77,0,122,5.100000),(356,78,0,122,5.100000),(357,82,0,122,400.000000),(358,77,0,123,5.100000),(359,78,0,123,5.100000),(360,82,0,123,400.000000),(361,77,0,124,4.750000),(362,78,0,124,4.750000),(363,82,0,124,500.000000),(364,77,0,125,4.750000),(365,78,0,125,4.750000),(366,82,0,125,500.000000),(367,77,0,126,4.950000),(368,78,0,126,4.950000),(369,82,0,126,500.000000),(370,77,0,127,3.500000),(371,78,0,127,3.500000),(372,82,0,127,220.000000),(373,77,0,128,3.500000),(374,78,0,128,3.500000),(375,82,0,128,220.000000),(376,77,0,129,3.500000),(377,78,0,129,3.500000),(378,82,0,129,220.000000),(379,77,0,130,3.500000),(380,78,0,130,3.500000),(381,82,0,130,220.000000),(382,77,0,131,3.500000),(383,78,0,131,3.500000),(384,82,0,131,220.000000),(385,77,0,132,3.500000),(386,78,0,132,3.500000),(387,82,0,132,220.000000),(388,77,0,133,0.600000),(389,78,0,133,0.600000),(390,82,0,133,100.000000),(391,77,0,134,0.600000),(392,78,0,134,0.600000),(393,82,0,134,100.000000),(403,77,0,138,4.600000),(404,78,0,138,4.600000),(405,82,0,138,340.000000),(508,77,0,173,7.500000),(509,78,0,173,7.500000),(510,82,0,173,140.000000),(511,77,0,174,7.500000),(512,78,0,174,7.500000),(513,82,0,174,200.000000),(514,77,0,175,7.500000),(515,78,0,175,7.500000),(516,82,0,175,200.000000),(517,77,0,176,7.500000),(518,78,0,176,7.500000),(519,82,0,176,50.000000),(520,77,0,177,7.500000),(521,78,0,177,7.500000),(522,82,0,177,280.000000),(523,77,0,178,5.100000),(524,78,0,178,5.100000),(525,82,0,178,130.000000),(526,77,0,179,4.000000),(527,78,0,179,4.000000),(528,82,0,179,100.000000),(529,77,0,180,5.100000),(530,78,0,180,5.100000),(531,82,0,180,130.000000),(532,77,0,181,4.900000),(533,78,0,181,4.900000),(534,82,0,181,100.000000),(535,77,0,182,5.400000),(536,78,0,182,5.500000),(537,82,0,182,110.000000),(538,77,0,183,7.500000),(539,78,0,183,7.500000),(540,82,0,183,140.000000),(571,77,0,194,13.500000),(572,78,0,194,13.500000),(573,82,0,194,1800.000000),(574,77,0,195,18.500000),(575,78,0,195,18.500000),(576,82,0,195,1800.000000),(577,82,0,7,200.000000),(578,82,0,9,20.000000),(579,82,0,10,20.000000),(580,82,0,11,215.000000),(581,82,0,12,500.000000),(582,82,0,13,200.000000),(583,82,0,14,25.000000),(584,77,0,196,4.600000),(585,78,0,196,4.600000),(586,82,0,196,340.000000),(587,77,0,197,4.600000),(588,78,0,197,4.600000),(589,82,0,197,340.000000),(590,77,0,198,111.000000),(591,78,0,198,110.000000),(592,82,0,198,111.000000),(593,77,0,199,111.000000),(594,78,0,199,111.000000),(595,82,0,199,1111.000000),(596,77,0,200,111.000000),(597,78,0,200,111.000000),(598,82,0,200,111.000000);
/*!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',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_PRODUCT_ENTITY_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_GALLERY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_GLR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE 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',
  `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 `CATALOG_PRODUCT_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_INT_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_INT_ATTRIBUTE_ID_STORE_ID_VALUE` (`attribute_id`,`store_id`,`value`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_INT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=884 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,97,0,1,1),(2,136,0,1,2),(3,99,0,1,4),(4,179,0,1,0),(5,180,0,1,0),(6,181,0,1,0),(7,182,0,1,0),(8,97,0,2,1),(9,99,0,2,4),(10,115,0,2,1),(11,136,0,2,2),(19,97,0,3,1),(20,99,0,3,1),(21,115,0,3,1),(22,136,0,3,2),(23,97,0,4,1),(24,99,0,4,4),(25,115,0,4,1),(26,136,0,4,2),(27,97,0,5,1),(28,99,0,5,4),(29,115,0,5,1),(30,136,0,5,2),(31,97,0,6,1),(32,99,0,6,4),(33,115,0,6,1),(34,136,0,6,4),(35,165,0,6,51),(36,179,0,6,0),(37,180,0,6,0),(38,181,0,6,0),(39,182,0,6,0),(40,97,0,7,1),(41,99,0,7,4),(42,115,0,7,1),(43,136,0,7,4),(44,97,0,8,1),(45,99,0,8,4),(46,115,0,8,1),(47,136,0,8,2),(52,179,0,8,0),(53,180,0,8,0),(54,181,0,8,0),(55,182,0,8,0),(56,97,0,9,1),(57,99,0,9,4),(58,115,0,9,1),(59,136,0,9,5),(60,97,0,10,1),(61,99,0,10,4),(62,115,0,10,1),(63,136,0,10,5),(64,97,0,11,1),(65,99,0,11,4),(66,115,0,11,1),(67,136,0,11,4),(68,97,0,12,1),(69,99,0,12,4),(70,115,0,12,1),(71,136,0,12,4),(72,97,0,13,1),(73,99,0,13,4),(74,115,0,13,1),(75,136,0,13,4),(76,97,0,14,1),(77,99,0,14,4),(78,115,0,14,1),(79,136,0,14,4),(218,97,0,49,1),(219,99,0,49,4),(220,115,0,49,1),(221,136,0,49,4),(231,97,0,51,1),(232,99,0,51,4),(233,115,0,51,1),(234,136,0,51,5),(235,97,0,52,1),(236,99,0,52,4),(237,115,0,52,1),(238,136,0,52,5),(239,97,0,53,1),(240,99,0,53,4),(241,115,0,53,1),(242,136,0,53,5),(243,97,0,54,1),(244,99,0,54,4),(245,115,0,54,1),(246,136,0,54,5),(247,97,0,55,1),(248,99,0,55,4),(249,115,0,55,1),(250,136,0,55,5),(251,97,0,56,1),(252,99,0,56,4),(253,115,0,56,1),(254,136,0,56,5),(255,97,0,57,1),(256,99,0,57,4),(257,115,0,57,1),(258,136,0,57,5),(259,97,0,58,1),(260,99,0,58,4),(261,115,0,58,1),(262,136,0,58,5),(263,97,0,59,1),(264,99,0,59,4),(265,115,0,59,1),(266,136,0,59,5),(267,97,0,60,1),(268,99,0,60,4),(269,115,0,60,1),(270,136,0,60,4),(271,97,0,61,1),(272,99,0,61,4),(273,115,0,61,1),(274,136,0,61,5),(496,97,0,111,1),(497,99,0,111,4),(498,115,0,111,1),(499,136,0,111,4),(500,97,0,112,1),(501,99,0,112,4),(502,115,0,112,1),(503,136,0,112,4),(504,97,0,113,1),(505,99,0,113,4),(506,115,0,113,1),(507,136,0,113,4),(508,97,0,114,1),(509,99,0,114,4),(510,115,0,114,1),(511,136,0,114,4),(512,97,0,115,1),(513,99,0,115,4),(514,115,0,115,1),(515,136,0,115,4),(516,97,0,116,1),(517,99,0,116,4),(518,115,0,116,1),(519,136,0,116,4),(520,97,0,117,1),(521,99,0,117,4),(522,115,0,117,1),(523,136,0,117,4),(524,97,0,118,1),(525,99,0,118,4),(526,115,0,118,1),(527,136,0,118,4),(528,97,0,119,1),(529,99,0,119,4),(530,115,0,119,1),(531,136,0,119,4),(532,97,0,120,1),(533,99,0,120,4),(534,115,0,120,1),(535,136,0,120,4),(536,97,0,121,1),(537,99,0,121,4),(538,115,0,121,1),(539,136,0,121,4),(540,97,0,122,1),(541,99,0,122,4),(542,115,0,122,1),(543,136,0,122,4),(544,97,0,123,1),(545,99,0,123,4),(546,115,0,123,1),(547,136,0,123,4),(548,97,0,124,1),(549,99,0,124,4),(550,115,0,124,1),(551,136,0,124,2),(552,97,0,125,1),(553,99,0,125,4),(554,115,0,125,1),(555,136,0,125,2),(556,97,0,126,1),(557,99,0,126,4),(558,115,0,126,1),(559,136,0,126,2),(560,97,0,127,1),(561,99,0,127,4),(562,115,0,127,1),(563,136,0,127,4),(564,97,0,128,1),(565,99,0,128,4),(566,115,0,128,1),(567,136,0,128,4),(568,97,0,129,1),(569,99,0,129,4),(570,115,0,129,1),(571,136,0,129,4),(572,97,0,130,1),(573,99,0,130,4),(574,115,0,130,1),(575,136,0,130,4),(576,97,0,131,1),(577,99,0,131,4),(578,115,0,131,1),(579,136,0,131,4),(580,97,0,132,1),(581,99,0,132,4),(582,115,0,132,1),(583,136,0,132,4),(584,97,0,133,1),(585,99,0,133,4),(586,115,0,133,1),(587,136,0,133,4),(588,97,0,134,1),(589,99,0,134,4),(590,115,0,134,1),(591,136,0,134,4),(604,97,0,138,1),(605,99,0,138,1),(606,115,0,138,1),(607,136,0,138,4),(608,165,0,138,59),(609,179,0,138,0),(610,180,0,138,0),(611,181,0,138,0),(612,182,0,138,0),(754,97,0,173,1),(755,99,0,173,4),(756,115,0,173,1),(757,136,0,173,4),(758,97,0,174,1),(759,99,0,174,4),(760,115,0,174,1),(761,136,0,174,4),(762,97,0,175,1),(763,99,0,175,4),(764,115,0,175,1),(765,136,0,175,4),(766,97,0,176,1),(767,99,0,176,4),(768,115,0,176,1),(769,136,0,176,4),(770,97,0,177,1),(771,99,0,177,4),(772,115,0,177,1),(773,136,0,177,4),(774,97,0,178,1),(775,99,0,178,4),(776,115,0,178,1),(777,136,0,178,4),(778,97,0,179,1),(779,99,0,179,4),(780,115,0,179,1),(781,136,0,179,4),(782,97,0,180,1),(783,99,0,180,4),(784,115,0,180,1),(785,136,0,180,4),(786,97,0,181,1),(787,99,0,181,4),(788,115,0,181,1),(789,136,0,181,4),(790,97,0,182,1),(791,99,0,182,4),(792,115,0,182,1),(793,136,0,182,4),(794,97,0,183,1),(795,99,0,183,4),(796,115,0,183,1),(797,136,0,183,4),(838,97,0,194,1),(839,99,0,194,4),(840,115,0,194,1),(841,136,0,194,2),(842,97,0,195,1),(843,99,0,195,4),(844,115,0,195,1),(845,136,0,195,2),(846,97,0,196,1),(847,99,0,196,4),(848,115,0,196,1),(849,136,0,196,4),(850,165,0,196,59),(851,179,0,196,0),(852,180,0,196,0),(853,181,0,196,0),(854,182,0,196,0),(855,97,0,197,1),(856,99,0,197,4),(857,115,0,197,1),(858,136,0,197,4),(859,165,0,197,59),(860,179,0,197,0),(861,180,0,197,0),(862,181,0,197,0),(863,182,0,197,0),(864,165,0,124,58),(865,179,0,2,0),(866,180,0,2,0),(867,181,0,2,0),(868,182,0,2,0),(869,97,0,198,1),(870,99,0,198,4),(871,115,0,198,1),(872,136,0,198,4),(873,165,0,198,50),(874,97,0,199,1),(875,99,0,199,4),(876,115,0,199,1),(877,136,0,199,5),(878,165,0,199,50),(879,97,0,200,1),(880,99,0,200,4),(881,115,0,200,1),(882,136,0,200,5),(883,165,0,200,53);
/*!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',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  `media_type` varchar(32) NOT NULL DEFAULT 'image' COMMENT 'Media entry type',
  `disabled` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Visibility status',
  PRIMARY KEY (`value_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=20 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 (6,90,'/C/o/Costata_Manzo_FT_1.jpg','image',0),(7,90,'/C/O/COOPERAZIONE_TRENTINA_2020_inTrentino_Logo_conPayoff_positivo_1.jpg','image',0),(8,90,'/r/i/riorominimullerthurgau_1024x1024_2x.jpg','image',0),(10,90,'/p/i/piuchemelagustomelaintegrale_1024x1024_2x.jpg','image',0),(15,90,'/v/e/ventidue.jpg','image',0),(16,90,'/s/e/ser.jpg','image',0),(18,90,'/t/r/trenta_1.jpg','image',0),(19,90,'/2/m/2mb.jpg','image',0);
/*!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',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity 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',
  `record_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record ID',
  PRIMARY KEY (`record_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_ENTITY_ID` (`entity_id`),
  KEY `CATALOG_PRODUCT_ENTITY_MEDIA_GALLERY_VALUE_VALUE_ID` (`value_id`),
  KEY `CAT_PRD_ENTT_MDA_GLR_VAL_ENTT_ID_VAL_ID_STORE_ID` (`entity_id`,`value_id`,`store_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `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
) ENGINE=InnoDB AUTO_INCREMENT=44 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 (6,0,4,'pms_uploadCostata_Manzo_FT_1.jpg',1,0,17),(7,0,4,'pms_uploadCOOPERAZIONE_TRENTINA_2020_inTrentino_Logo_conPayoff_positivo_1.jpg',2,0,18),(10,0,5,NULL,1,0,25),(8,0,1,NULL,2,0,38),(15,0,198,'Product image PROVAPROD_AG-ee21e1b4-0ab6-4a81-bb4d-82d7c9f35115 - Fri Sep 16 2022 15:44:08 GMT+0200 (Central European Summer Time)',1,0,39),(16,0,199,'Product image proprova-e221af72-e2e0-4a4c-b8ff-88c9ba40ce10 - Fri Sep 16 2022 15:49:55 GMT+0200 (Central European Summer Time)',1,0,40),(18,0,200,'Product image prodtre-c827c494-3740-4335-8cb5-cae2e10e4c05 - Fri Sep 16 2022 15:59:04 GMT+0200 (Central European Summer Time)',1,0,42),(19,0,200,'Product image prodtre-c827c494-3740-4335-8cb5-cae2e10e4c05 - Fri Sep 16 2022 15:59:04 GMT+0200 (Central European Summer Time)',1,0,43);
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_media_gallery_value_to_entity`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value_to_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_media_gallery_value_to_entity` (
  `value_id` int(10) unsigned NOT NULL COMMENT 'Value media Entry ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Product Entity ID',
  PRIMARY KEY (`value_id`,`entity_id`),
  KEY `CAT_PRD_ENTT_MDA_GLR_VAL_TO_ENTT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` (`entity_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_TO_ENTT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_A6C6C8FAA386736921D3A7C4B50B1185` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Link Media value to Product entity table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_media_gallery_value_to_entity`
--

LOCK TABLES `catalog_product_entity_media_gallery_value_to_entity` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_to_entity` DISABLE KEYS */;
INSERT INTO `catalog_product_entity_media_gallery_value_to_entity` VALUES (6,4),(7,4),(8,1),(10,5),(15,198),(16,199),(18,200),(19,200);
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_to_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_entity_media_gallery_value_video`
--

DROP TABLE IF EXISTS `catalog_product_entity_media_gallery_value_video`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_entity_media_gallery_value_video` (
  `value_id` int(10) unsigned NOT NULL COMMENT 'Media Entity ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `provider` varchar(32) DEFAULT NULL COMMENT 'Video provider ID',
  `url` text DEFAULT NULL COMMENT 'Video URL',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `description` text DEFAULT NULL COMMENT 'Page Meta Description',
  `metadata` text DEFAULT NULL COMMENT 'Video meta data',
  PRIMARY KEY (`value_id`,`store_id`),
  KEY `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CAT_PRD_ENTT_MDA_GLR_VAL_VIDEO_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_6FDF205946906B0E653E60AA769899F8` FOREIGN KEY (`value_id`) REFERENCES `catalog_product_entity_media_gallery` (`value_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Video Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_entity_media_gallery_value_video`
--

LOCK TABLES `catalog_product_entity_media_gallery_value_video` WRITE;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_video` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_entity_media_gallery_value_video` 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',
  `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` mediumtext DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CATALOG_PRODUCT_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_TEXT_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=320 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,85,0,1,'Vino Test'),(8,75,0,14,'Perfetto per gli sportivi, per chi è attento alla linea ma non vuole rinunciare al gusto, per i bambini, grazie alla sua consistenza morbida frutto di una lavorazione speciale certificata. E per chi cerca il massimo della naturalità, c\'è la versione con mele da coltivazione biologica.\n\nTenero snack è l\'alternativa “spezzafame” sana, gustosa e light (solo 75 kcal a barretta), per portare sempre con sé con leggerezza tutta l\'energia della frutta.\n\nConfezione singola da 25g, in un packaging salva ambiente 100% riciclabile.\n\n'),(9,76,0,14,'La ricarica di frutta sempre con te: uno snack morbido fatto solo di mele disidratate e succhi di frutta, senza conservanti e zuccheri aggiunti e senza glutine.\n\nFormato: 25gr'),(10,75,0,9,'Grazie a un processo naturale e all\'avanguardia, le mele vengono private della buccia, detorsolate, affettate ed essiccate a bassa temperatura senza alcun tipo di frittura. Mantengono così inalterate tutte le virtù della frutta fresca, senza aggiunta di zuccheri, grassi e conservanti: un modo comodo e sfizioso per sgranocchiare la bontà della frutta dove, quando e come si vuole.\n\n'),(11,76,0,9,'100% sfiziose, 100% bio Melinda: croccanti rondelle di mele Golden Delicious Melinda biologiche essiccate, senza semi e buccia, in busta monoporzione.\n\nIngredienti: mele Golden Delicious Melinda biologiche essiccate.\n\nNo allergeni, no OGM.\n\nFormato: monoporzione 20gr'),(12,75,0,13,'Grazie a una “lavorazione integrale”, le fibre contenute sono estratte direttamente dalla buccia delle mele utilizzate: per questo, nella lista degli ingredienti, non compare l’addizione di fibre. Il risultato è un prodotto 100% integrale e 100% naturale, senza conservanti e contenente i soli zuccheri della frutta. Il gusto è ricco e appagante e consistenza corposa e cremosa, con golosi pezzetti di frutta: il benessere non è mai stato così buono.\n\nPiù che mela è perfetta come goloso dessert light o per una pausa sana e gustosa.\n\n\n'),(13,76,0,13,'Il benessere delle fibre della frutta: una purea di mela 100% integrale ad alto contenuto di fibre, mixata con altre puree e pezzi di frutta selezionata. \n\nFormato: 2*100gr'),(14,75,0,7,'Confezionata in ambiente sterile e a caldo, priva di zuccheri aggiunti, coloranti e conservanti, Melinda Mousse mantiene inalterate le proprietà della frutta fresca a lungo, anche a temperatura ambiente. Così la puoi portare sempre con te.\n\n'),(15,76,0,7,'La frutta al cucchiaio sempre con te: una passata 100% naturale prodotta a partire da mele Melinda di prima qualità, che si conserva a temperatura ambiente. \n\nFormato: 2*100gr'),(16,75,0,11,'Prodotta con succo di mele concentrato e aceto di mele con “Madre” da filiera controllata bio Melinda: una glassa cremosa, profumata, delicatamente agrodolce. Il giusto tocco per guarnire insalate, formaggi, macedonie e dolci, per esaltare il sapore di barbecue e fritti, per impreziosire tutti i tuoi piatti a base di carne o di pesce.\n\nDieta Vegana: il prodotto è certificato dall\'Associazione Vegetariana Italiana e riporta il marchio V-Label.\n\nData di scadenza: 2 anni.\n\nConservazione: conservare in luogo fresco e asciutto, lontano dalla luce diretta del sole.'),(17,76,0,11,'Bio e con “Madre”. Non pastorizzata né filtrata, la Glassa all\'aceto di mele biologico Melinda preserva tutte le proprietà della “Madre” dell’aceto, ricca di enzimi benefici.\n\nIngredienti: succo concentrato di mele biologiche da filiera controllata Melinda Bio, aceto di mele biologiche 41%, amido di mais biologico.\n\nNo allergeni, no OGM.\n\nFormato: 215ml\nConfezione: pet'),(18,75,0,10,'Dopo essere state lavate, le mele Golden Delicious fresche originarie delle Valli di Melinda vengono sbucciate e private del torsolo. Sono quindi tagliate a bastoncini ed essiccate in forni a bassa temperatura. Il procedimento regala una consistenza croccante, mantenendo odore e sapore tipici della mela fresca del Trentino.'),(19,76,0,10,'Una scorta di snack da sgranocchiare, con tutte le proprietà delle mele Golden Melinda essiccate, senza conservanti, zuccheri aggiunti, grassi.\n\nIngredienti: mele Golden Delicious Melinda essiccate.\n\nNo allergeni, no OGM.\n\nFormato: monoporzione 20gr'),(20,75,0,12,'Perfetto per insalate, salse e marinature, grazie alle proprietà depurative è anche una salutare bevanda: un cucchiaio ogni mattina, con un po’ di miele, è un’abitudine sana e naturale. Adatto anche alla dieta Vegana: il prodotto è certificato dall\'Associazione Vegetariana Italiana e riporta il marchio V-Label.\n\nData di scadenza: illimitata.\n\nConservazione: conservare in luogo fresco e asciutto, lontano dalla luce diretta del sole.\n\n'),(21,76,0,12,'100% da succo fresco di mele: dal sapore delicato e dall\'acidità leggera, l\'Aceto di mele Melinda è ottenuto da puro succo di mele Melinda.\n\nIngredienti: sidro di mele (da succo fresco non concentrato di mele da filiera controllata Melinda).\n\nNo allergeni, no OGM.\n\nFormato: 500ml\nConfezione: vetro\n'),(60,75,0,49,'La lavorazione\nLe mucche che producono il latte destinato al Trentingrana vengono alimentate dagli allevatori con erba fresca, fieno e mangimi che non derivano assolutamente da organismi geneticamente modificati. Qualità distintiva di questo formaggio stagionato è il gusto, in perfetto equilibrio tra dolce e salato.\n\nGli abbinamenti\nAdatto a tutti i palati, Trentingrana è particolarmente versatile in cucina: perfetto sia per essere grattugiato, sia per concludere il pasto oppure come aperitivo per accompagnare un calice di Trentodoc, perché come recita un detto popolare: “La boca no la è straca se no la sa da vaca”, ossia non chiudere il pasto senza aver mangiato del formaggio.'),(61,76,0,49,'Solo gli elementi più semplici e genuini: latte proveniente dalle montagne del Trentino, sale e caglio. Questo è Trentingrana: un formaggio completamente naturale, prodotto con latte crudo, a pasta dura e cotta solo all\'interno dei Caseifici Sociali delle valli all\'ombra delle Dolomiti esclusivamente con latte di bovine allevate sul territorio.'),(64,75,0,51,'La lavorazione\nLe mucche che producono il latte destinato al Trentingrana vengono alimentate dagli allevatori con erba fresca, fieno e mangimi che non derivano assolutamente da organismi geneticamente modificati. Qualità distintiva di questo formaggio stagionato è il gusto, in perfetto equilibrio tra dolce e salato.\n\nGli abbinamenti\nAdatto a tutti i palati, Trentingrana è particolarmente versatile in cucina: perfetto sia per essere grattugiato, sia per concludere il pasto oppure come aperitivo per accompagnare un calice di Trentodoc, perché come recita un detto popolare: “La boca no la è straca se no la sa da vaca”, ossia non chiudere il pasto senza aver mangiato del formaggio.'),(65,76,0,51,'Solo gli elementi più semplici e genuini: latte proveniente dalle montagne del Trentino, sale e caglio. Questo è Trentingrana: un formaggio completamente naturale, prodotto con latte crudo, a pasta dura e cotta solo all\'interno dei Caseifici Sociali delle valli all\'ombra delle Dolomiti esclusivamente con latte di bovine allevate sul territorio.'),(66,75,0,52,'La lavorazione\nLe mucche che producono il latte destinato al Trentingrana vengono alimentate dagli allevatori con erba fresca, fieno e mangimi che non derivano assolutamente da organismi geneticamente modificati. Qualità distintiva di questo formaggio stagionato è il gusto, in perfetto equilibrio tra dolce e salato.\n\nGli abbinamenti\nOltre alla bontà e genuinità del prodotto, Trentingrana grattugiato ha anche il plusvalore della praticità: già pronto da usare, grazie alla comoda confezione salva freschezza mantiene proprietà organolettiche intatte. Il risultato è un formaggio con gusto e aroma come appena grattugiato.\n\n'),(67,76,0,52,'Solo gli elementi più semplici e genuini: latte proveniente dalle montagne del Trentino, sale e caglio. Questo è Trentingrana: un formaggio completamente naturale, prodotto con latte crudo, a pasta dura e cotta solo all\'interno deii Caseifici Sociali delle valli all\'ombra delle Dolomiti esclusivamente con latte di bovine allevate sul territorio.'),(68,75,0,53,'Caratteristiche del prodotto\nProdotto esclusivamente nei Caseifici sociali delle Valli di Fiemme, Fassa e Primiero, il Puzzone di Moena è un formaggio a Denominazione d\'origine protetta. Quello prodotto con il latte di alpeggio, e stagionato almeno 120 giorni, è tutelato dal Presidio Slow Food.\n\nGli abbinamenti\nLe mucche che producono il latte destinato alla lavorazione del Puzzone di Moena vengono alimentate con prodotti non geneticamente modificati. Questo formaggio, completamente privo di additivi e conservanti, è un\'eccellenza trentina che potete assaporare sia durante il pasto - accompagnato al pane nero - sia come merenda accanto agli affettati prodotti nelle nostre valli.'),(69,76,0,53,'Prodotto con latte crudo, Puzzone di Moena Dop è un formaggio a pasta semidura e semicotta, con crosta umida. Il suo particolare nome deriva dall\'aroma molto intenso, che è dovuto alla pratica della \"spugnatura\" effettuata nel corso della stagionatura.'),(70,75,0,54,'Caratteristiche del prodotto\nQuando Affogato è pronto, la crosta è viola, come l\'uva che matura sulla collina del Castello di Sabbionara, e la pasta ha venature di questo colore; il sapore è forte e aromatico. Questo è un formaggio fatto con latte crudo: le mucche dei contadini sono alimentate con cibo di qualità e non OGM. Il formaggio, completamente privo di additivi e conservanti, ha una consistenza semi-dura e semi-cotta. Da provare.\n\nUna merenda con gli amici deve avere un elemento che si distingua dal resto. L\'Affogato di Sabbionara non solo ha un colore insolito, dato dal vino aggiunto al latte crudo, ma ha anche un sapore intenso che si sposa con un bicchiere di Enantio \"Terra dei Forti\".'),(71,76,0,54,'E\' il frutto della sorprendente unione di due eccellenze della Bassa Vallagarina: il latte conferito al Caseificio di Sabbionara, dove avviene la produzione, e il vino rosso Enantio “Terra dei Forti”, in cui il formaggio viene affinato per 15-20 giorni.'),(72,75,0,55,'Caratteristiche del prodotto\nIl termine Fontal è entrato in uso negli anni Cinquanta e deriva dalla contrazione tra Fontina ed Emmental bavarese. Questo formaggio viene lavorato nei caseifici cooperativi trentini  sin dagli anni Settanta: realizzato con il latte di mucche alimentate con prodotti non ogm, Fontal ha una stagionatura di uno o due mesi ed è completamente privo di additivi e conservanti.\n\nGli abbinamenti\nFontal di Cavalese ha un sapore delicato e gradevole al palato, con una nota dolce. Può essere assaporato durante il pasto con il pane di segale, ma è anche l\'ideale per essere accompagnato alla marmellata di mirtilli o lamponi oppure al miele. Si sposa con vini chiari e spumante Trentodoc.'),(73,76,0,55,'Prodotto con latte crudo, Fontal di Cavalese è un formaggio a pasta semidura e semicotta prodotto dal Caseificio Sociale della Val di Fiemme. Ha caratteristiche organolettiche particolari, legate soprattutto alla freschezza e alla qualità del latte utilizzato. Le forme hanno una crosta sottile ed elastica, mentre la pasta è morbida, compatta, di un colore bianco o paglierino chiaro.'),(74,75,0,56,'Caratteristiche del prodotto\nNasce esclusivamente nei caseifici della Val di Fiemme e del Primiero, a quote intorno ai 1000 metri. Il casaro screma il latte della sera, aggiungendolo a quello intero della mattina per ottenere un formaggio gustoso. Il processo di stagionatura, che va dai 4 agli 8 mesi e oltre, lo rende un formaggio dal sapore intenso, tendente al piccante. \n\nGli abbinamenti\nIl latte crudo utilizzato per produrre il Mezzano Trentino di alta montagna proviene da mucche alimentate con prodotti non ogm. Questo formaggio, ottimo per il pasto, è completamente privo di additivi e conservanti. Sulle stagionature più lunghe, si presta bene anche da scagliare o grattugiare, conferendo piacevolezza e delicatezza ai piatti tipici.'),(75,76,0,56,'Prodotto con latte crudo seguendo la ricetta tipica dei formaggi nostrani del Trentino, il Mezzano di alta montagna ha una pasta compatta e semidura. Regala al degustatore le gradevoli note aromatiche del fieno di montagna.'),(76,75,0,57,'Caratteristiche del prodotto\nSulla tavola dell\'Imperatore Francesco Giuseppe I d\'Austria, questo formaggio non mancava mai. Anche dopo essere stato stagionato a lungo, il Vezzena conserva un sapore morbido e una consistenza burrosa eccezionali, sprigionando aromi particolari secondo il periodo di pascolo.\n\nGli abbinamenti\nPer fare una forma di Vezzena occorrono ben 100 litri di latte. Il prodotto - completamente privo di additivi - proviene esclusivamente da mucche alimentate senza ogm. Ha una duplice possibilità di utilizzo: da tavola per chiudere il pasto in bellezza o da grattugia, ma anche per arricchire primi piatti e pietanze a base di carni bianche. Eccezionale è l\'abbinamento con vini rossi strutturati o con il Vino Santo.'),(77,76,0,57,'Saporito, leggermente piccante, il Vezzena del Trentino ha una pasta semidura e semicotta ed è prodotto dal Caseificio di Sabbionara. Si tratta di un ottimo formaggio da pasto e da grattugia, prodotto con latte crudo parzialmente scremato.'),(78,75,0,58,'Caratteristiche del prodotto\nFrutto del lavoro degli allevatori del Caseificio Val di Fassa, questo è il formaggio tradizionale del territorio in cui nasce. Un tempo veniva prodotto in malga oppure nei fienili di mezza montagna o nei caseifici turnari. La sua tradizione è stata tramandata fino a noi.\n\nGli abbinamenti\nIl particolare trattamento delle forme, a crosta lavata, rende Cuor di Fassa un formaggio gustoso, ma adatto anche ai palati più delicati. Il prodotto è completamente privo di additivi e conservanti. Un tempo, la crosta rappresentava per le diete contadine la base alimentare e la fonte indispensabile di proteine nobili, assieme alla polenta.'),(79,76,0,58,'Regala un bouquet di sapori e aromi intensi, che richiamano alla mente le erbe e i fiori delle montagne della Val di Fassa. Lassù sono allevate le mucche dal cui latte nasce Cuor di Fassa: formaggio a crosta umida, prodotto con latte crudo, parzialmente scremato e da alimentazione ogm free. La sua pasta è semidura e semicotta.'),(80,75,0,59,'Caratteristiche del prodotto\nPrimiero Fresco nasce nel territorio che gli dà il nome, all\'ombra delle Dolomiti delle Pale di San Martino. La lavorazione, dopo il conferimento del latte, avviene negli spazi del Caseificio sociale Primiero. Qui viene stagionato da 2 a 8 mesi e viene settimanalmente lavato con acqua tiepida e sale: un\'operazione che consente al formaggio di sviluppare aromi intensi.\n\nGli abbinamenti\nIl Caseificio segue i ritmi della natura nelle operazioni che portano alla nascita del Primiero Fresco. Lo stesso formaggio, prodotto in mesi diversi, può esprimere aromi e sapori differenti. Questo aspetto è legato all\'alimentazione delle mucche, che cambia a seconda delle stagioni quando gli animali si trovano al pascolo o in stalla.'),(81,76,0,59,'Prodotto con latte crudo, ha una pasta semidura e semicotta e un sapore accentuato ma piacevole che soddisfa i palati più attenti. Presenta un\'occhiatura sparsa e irregolare. È completamente privo di additivi e conservanti.'),(82,75,0,60,'Caratteristiche del prodotto\nIl Casolét nasce sulle montagne della Val di Sole, dove dominano le fragranze del fieno, lo scrosciare dei ruscelli, i profumi intensi del muschio e dei piccoli frutti di bosco. Viene realizzato aggiungendo il caglio al latte termizzato, cioè scaldato per pochi secondi; dopo la rottura, la cagliata viene sistemata negli stampi e si attende un giorno prima di salarla. Il latte utilizzato proviene da mucche alimentate senza OGM ed è completamente privo di additivi e conservanti. Da ricordare inoltre come Il Casolèt prodotto a latte crudo sia Presidio Slow Food.\n\nGli abbinamenti\nIl Casolét Val di Sole ha una lunga tradizione alle spalle: una volta veniva prodotto in autunno, quando le mandrie erano già scese dagli alpeggi e le mungiture giornaliere erano scarse, come scorta alimentare per l’inverno. Da formaggio di casa per eccellenza, oggi è diventato una piccola grande rarità. Si consuma generalmente fresco, ma è adatto anche in cucina, per preparare ottime ricette come la fonduta, ma anche torte salate e frittate rustiche.'),(83,76,0,60,'Tutelato dal Presidio Slow Food, il Casolét viene prodotto tradizionalmente a latte crudo e viene consumato generalmente fresco, ma è un ottimo alleato anche in cucina. È un formaggio a pasta tenera, dal profumo delle erbe d’alpeggio e dal sapore dolce e delicato.\nFormaggella sotto vuoto da 750gr'),(84,75,0,61,'Caratteristiche del prodotto\nScelto come formaggio ufficiale dei mondiali di Sci Nordico della valle in cui nasce, il Formae Val di Fiemme è prodotto dal Caseificio Sociale Val di Fiemme a Cavalese.\n\nFormaggio a pasta semidura e semicotta, Formae Val di Fiemme viene prodotto con latte di mucche alimentate con prodotti ogm free. Il formaggio è completamente privo di additivi e conservanti.'),(85,76,0,61,'Una pasta con occhiatura sparsa e visibile che regala un sapore deciso, dato dalla lavorazione a latte crudo e dalla stagionatura tipiche dei formaggi a crosta lavata.'),(140,76,0,111,'Qualche cucchiaiata sul pane, sulle fette biscottate o per farcire brioche: è facilissimo soddisfare grandi e piccini! Ingredienti: mirtilli rossi, zucchero di canna, gelificante: pectina'),(141,76,0,112,'Qualche cucchiaiata sul pane, sulle fette biscottate o per farcire brioche: è facilissimo soddisfare grandi e piccini! Ingredienti: mirtilli rossi, zucchero di canna, gelificante: pectina'),(142,76,0,113,'Qualche cucchiaiata sul pane, sulle fette biscottate o per farcire brioche: è facilissimo soddisfare grandi e piccini! Ingredienti: mirtilli rossi, zucchero di canna, gelificante: pectina'),(143,76,0,114,'Qualche cucchiaiata sul pane, sulle fette biscottate o per farcire brioche: è facilissimo soddisfare grandi e piccini! Ingredienti: mirtilli rossi, zucchero di canna, gelificante: pectina'),(144,76,0,115,'Qualche cucchiaiata sul pane, sulle fette biscottate o per farcire brioche: è facilissimo soddisfare grandi e piccini! Ingredienti: mirtilli rossi, zucchero di canna, gelificante: pectina'),(145,76,0,116,'Qualche cucchiaiata sul pane, sulle fette biscottate o per farcire brioche: è facilissimo soddisfare grandi e piccini! Ingredienti: mirtilli rossi, zucchero di canna, gelificante: pectina'),(146,76,0,117,'Qualche cucchiaiata sul pane, sulle fette biscottate o per farcire brioche: è facilissimo soddisfare grandi e piccini! Ingredienti: mirtilli rossi, zucchero di canna, gelificante: pectina'),(147,76,0,118,'Qualche cucchiaiata sul pane, sulle fette biscottate o per farcire brioche: è facilissimo soddisfare grandi e piccini! Ingredienti: mirtilli rossi, zucchero di canna, gelificante: pectina'),(148,76,0,119,'Qualche cucchiaiata sul pane, sulle fette biscottate o per farcire brioche: è facilissimo soddisfare grandi e piccini! Ingredienti: mirtilli rossi, zucchero di canna, gelificante: pectina'),(149,76,0,120,'Qualche cucchiaiata sul pane, sulle fette biscottate o per farcire brioche: è facilissimo soddisfare grandi e piccini! Ingredienti: mirtilli rossi, zucchero di canna, gelificante: pectina'),(150,76,0,121,'Tre sono gli ingredienti: frutta, acqua e zucchero di canna, perché solo dalle cose semplici si ottengono le più gustose tentazioni. Il segreto è l’attenta preparazione, che permette di mantenere nel tempo tutta la dolcezza della frutta sciroppata. Ingredienti: lamponi, more, ribes rosso, mirtilli (50%, in proporzione variabile), acqua, zucchero di canna'),(151,76,0,122,'Tre sono gli ingredienti: frutta, acqua e zucchero di canna, perché solo dalle cose semplici si ottengono le più gustose tentazioni. Il segreto è l’attenta preparazione, che permette di mantenere nel tempo tutta la dolcezza della frutta sciroppata. Ingredienti: lamponi, more, ribes rosso, mirtilli (50%, in proporzione variabile), acqua, zucchero di canna'),(152,76,0,123,'Tre sono gli ingredienti: frutta, acqua e zucchero di canna, perché solo dalle cose semplici si ottengono le più gustose tentazioni. Il segreto è l’attenta preparazione, che permette di mantenere nel tempo tutta la dolcezza della frutta sciroppata. Ingredienti: lamponi, more, ribes rosso, mirtilli (50%, in proporzione variabile), acqua, zucchero di canna'),(153,76,0,124,'ll succoso è perfetto per gli amanti dei sapori intensi, mentre diventa una buonissima bibita rinfrescante se diluito con acqua naturale o frizzante. Ingredienti: acqua, purea di mirtilli di bosco. Frutta utilizzata: 55%'),(154,76,0,125,'ll succoso è perfetto per gli amanti dei sapori intensi, mentre diventa una buonissima bibita rinfrescante se diluito con acqua naturale o frizzante. Ingredienti: acqua, purea di mirtilli di bosco. Frutta utilizzata: 55%'),(155,76,0,126,'ll succoso è perfetto per gli amanti dei sapori intensi, mentre diventa una buonissima bibita rinfrescante se diluito con acqua naturale o frizzante. Ingredienti: acqua, purea di mirtilli di bosco. Frutta utilizzata: 55%'),(156,76,0,127,'I frutti di bosco diventano protagonisti del salato! Le spezie e gli aromi si sposano perfettamente con i frutti di bosco, che vengono semplicemente trasformati in salse da abbinare a primi e secondi piatti! Ingredienti: pere (70%), zucchero di canna, succo di limone, gelificante: pectina, spezie, aromi'),(157,76,0,128,'I frutti di bosco diventano protagonisti del salato! Le spezie e gli aromi si sposano perfettamente con i frutti di bosco, che vengono semplicemente trasformati in salse da abbinare a primi e secondi piatti! Ingredienti: pere (70%), zucchero di canna, succo di limone, gelificante: pectina, spezie, aromi'),(158,76,0,129,'I frutti di bosco diventano protagonisti del salato! Le spezie e gli aromi si sposano perfettamente con i frutti di bosco, che vengono semplicemente trasformati in salse da abbinare a primi e secondi piatti! Ingredienti: pere (70%), zucchero di canna, succo di limone, gelificante: pectina, spezie, aromi'),(159,76,0,130,'I frutti di bosco diventano protagonisti del salato! Le spezie e gli aromi si sposano perfettamente con i frutti di bosco, che vengono semplicemente trasformati in salse da abbinare a primi e secondi piatti! Ingredienti: pere (70%), zucchero di canna, succo di limone, gelificante: pectina, spezie, aromi'),(160,76,0,131,'I frutti di bosco diventano protagonisti del salato! Le spezie e gli aromi si sposano perfettamente con i frutti di bosco, che vengono semplicemente trasformati in salse da abbinare a primi e secondi piatti! Ingredienti: ribes nero, mirtilli, ribes rosso, fragoline, more (70%, in proporzione variabile), zucchero di canna, aceto, succo di limone, gelificante: pectina, spezie'),(161,76,0,132,'I frutti di bosco diventano protagonisti del salato! Le spezie e gli aromi si sposano perfettamente con i frutti di bosco, che vengono semplicemente trasformati in salse da abbinare a primi e secondi piatti! Ingredienti: ribes nero, mirtilli, ribes rosso, fragoline, more (70%, in proporzione variabile), zucchero di canna, aceto, succo di limone, gelificante: pectina, spezie'),(162,76,0,133,'Le proprietà organolettiche e nutrizionali di due prodotti di eccellenza, come le mele e le fragole. In una mousse delicata e sempre accattivante. Ingredienti: purea di mela (80%), purea di fragola (20%). Senza conservanti e coloranti'),(163,76,0,134,'Le proprietà organolettiche e nutrizionali di due prodotti di eccellenza, come le mele e le fragole. In una mousse delicata e sempre accattivante. Ingredienti: purea di mela (85%), purea di mirtillo (15%)'),(170,75,0,138,'Descrizione libera da parte del partner (quando ci sarà il PIM)'),(171,76,0,138,'Descrizione corta (fissa quando ci sarà il PIM)'),(240,75,0,173,'L\'alta qualità del prodotto è garantita dal processo di lavorazione a mano e dai numerosi controlli compiuti nel corso dell\'anno. Per gli allevatori, le trote sono stelle d\'acqua dolce: per la loro alimentazione vengono scelti prodotti selezionati sulla base delle indicazioni degli esperti della Fondazione Mach, che svolge attività di ricerca scientifica, consulenza e servizio alle imprese del settore agroalimentare del Trentino.'),(241,76,0,173,'Dalle acque limpide degli allevamenti che sorgono nelle valli trentine, alla tua tavola. I bocconcini di salmerino alpino vengono marinati con aceto di mele, olio di semi di girasole e aromi prima di essere posti in pratici vasetti di vetro. '),(242,75,0,174,'L\'alta qualità del prodotto è garantita dal processo di lavorazione a mano e dai numerosi controlli compiuti nel corso dell\'anno. Per gli allevatori, le trote sono stelle d\'acqua dolce: per la loro alimentazione vengono scelti prodotti selezionati sulla base delle indicazioni degli esperti della Fondazione Mach, che svolge attività di ricerca scientifica, consulenza e servizio alle imprese del settore agroalimentare del Trentino.'),(243,76,0,174,'Allevate in acqua corrente fresca e ossigenata - tipica dell’ambiente montano - le trote in saor sono l\'ideale per chi cerca sapore, qualità e praticità. Quella del pesce Astro pronto da gustare è una bontà ricercata: il valore certificato dei suoi filetti è esaltato anche dal gusto forte del condimento di cipolla e capperi. '),(244,75,0,175,'L\'alta qualità del prodotto è garantita dal processo di lavorazione a mano e dai numerosi controlli compiuti nel corso dell\'anno. Per gli allevatori, le trote sono stelle d\'acqua dolce: per la loro alimentazione vengono scelti prodotti selezionati sulla base delle indicazioni degli esperti della Fondazione Mach, che svolge attività di ricerca scientifica, consulenza e servizio alle imprese del settore agroalimentare del Trentino.'),(245,76,0,175,'Allevate nelle acque pure e fredde delle montagne del Trentino, le trote Astro crescono in maniera lenta con caratteristiche di salubrità e genuinità che le contraddistingue dalle trote di pianura. I teneri filetti spellati di trota iridea salmonata vengono marinati sott’aceto e limone, per offrire un gusto equilibrato e piacevole al palato. '),(246,75,0,176,'L\'alta qualità del prodotto è garantita dal processo di lavorazione a mano e dai numerosi controlli compiuti nel corso dell\'anno. Per gli allevatori, le trote sono stelle d\'acqua dolce: per la loro alimentazione vengono scelti prodotti selezionati sulla base delle indicazioni degli esperti della Fondazione Mach, che svolge attività di ricerca scientifica, consulenza e servizio alle imprese del settore agroalimentare del Trentino.'),(247,76,0,176,'Il rispetto dei ritmi della natura, senza alcuna forzatura, è un principio imprescindibile per gli allevatori delle trote Astro. Le uova, che hanno un gusto intenso e marcato, sono ottenute da femmine mature e poi spremute e lavate in abbondante acqua fredda. In seguito vengono poste in salamoia con acqua e sale e pastorizzate in forno. '),(248,75,0,177,'L\'alta qualità del prodotto è garantita dal processo di lavorazione a mano e dai numerosi controlli compiuti nel corso dell\'anno. Per gli allevatori, le trote sono stelle d\'acqua dolce: per la loro alimentazione vengono scelti prodotti selezionati sulla base delle indicazioni degli esperti della Fondazione Mach, che svolge attività di ricerca scientifica, consulenza e servizio alle imprese del settore agroalimentare del Trentino.'),(249,76,0,177,'Sfiziose e salutari, le polpette di trota Astro coniugano qualità e gusto. Pronte in pochi minuti, sono apprezzate da bambini e adulti per la praticità nella preparazione, per il loro sapore ricco, oltre che per l\'aspetto inusuale che incuriosisce i più piccoli.'),(250,75,0,178,'L\'alta qualità del prodotto è garantita dal processo di lavorazione a mano e dai numerosi controlli compiuti nel corso dell\'anno. Per gli allevatori, le trote sono stelle d\'acqua dolce: per la loro alimentazione vengono scelti prodotti selezionati sulla base delle indicazioni degli esperti della Fondazione Mach, che svolge attività di ricerca scientifica, consulenza e servizio alle imprese del settore agroalimentare del Trentino.'),(251,76,0,178,'Le trote Astro provengono solo dagli allevamenti selezionati del Trentino, dove il pesce è cresce rispettando i ritmi della natura. L’affumicatura a freddo dei filetti di trota salmonata conferisce nuove sensazioni di aromi raffinati alla carne. Grazie ad una procedura eseguita a basse temperature (circa 30 gradi) il prodotto mantiene il caratteristico colore roseo e una consistenza soda. '),(252,75,0,179,'L\'alta qualità del prodotto è garantita dal processo di lavorazione a mano e dai numerosi controlli compiuti nel corso dell\'anno. Per gli allevatori, le trote sono stelle d\'acqua dolce: per la loro alimentazione vengono scelti prodotti selezionati sulla base delle indicazioni degli esperti della Fondazione Mach, che svolge attività di ricerca scientifica, consulenza e servizio alle imprese del settore agroalimentare del Trentino.'),(253,76,0,179,'Le trote Astro provengono solo dagli allevamenti selezionati del Trentino, dove il pesce è cresce rispettando i ritmi della natura. L’affumicatura a caldo del filetto di trota salmonata avviene ad alte temperature alte (circa 85 gradi), conferendo al prodotto una consistenza morbida e rendendo più tenue il colore rosa della carne.'),(254,75,0,180,'L\'alta qualità del prodotto è garantita dal processo di lavorazione a mano e dai numerosi controlli compiuti nel corso dell\'anno. Per gli allevatori, le trote sono stelle d\'acqua dolce: per la loro alimentazione vengono scelti prodotti selezionati sulla base delle indicazioni degli esperti della Fondazione Mach, che svolge attività di ricerca scientifica, consulenza e servizio alle imprese del settore agroalimentare del Trentino.'),(255,76,0,180,'Le trote Astro provengono solo dagli allevamenti selezionati del Trentino, dove il pesce è cresce rispettando i ritmi della natura. L’affumicatura a freddo dei filetti cosparsi di spezie conferisce alla carne un gusto deciso e regala nuove sensazioni di aromi raffinati. La procedura avviene ad una temperatura più bassa rispetto al filetto Classico: il prodotto mantiene il caratteristico colore roseo e una consistenza soda. '),(256,75,0,181,'L\'alta qualità del prodotto è garantita dal processo di lavorazione a mano e dai numerosi controlli compiuti nel corso dell\'anno. Per gli allevatori, le trote sono stelle d\'acqua dolce: per la loro alimentazione vengono scelti prodotti selezionati sulla base delle indicazioni degli esperti della Fondazione Mach, che svolge attività di ricerca scientifica, consulenza e servizio alle imprese del settore agroalimentare del Trentino.'),(257,76,0,181,'Le trote Astro provengono solo dagli allevamenti selezionati del Trentino, dove il pesce è cresce rispettando i ritmi della natura. L’affettato è ottenuto dalla scelta dei migliori filetti di trota salmonata e insaporiti con aromi naturali. Il prodotto emana un profumo intenso e appare con il caratteristico colore rosa.'),(258,75,0,182,'L\'alta qualità del prodotto è garantita dal processo di lavorazione a mano e dai numerosi controlli compiuti nel corso dell\'anno. Per gli allevatori, le trote sono stelle d\'acqua dolce: per la loro alimentazione vengono scelti prodotti selezionati sulla base delle indicazioni degli esperti della Fondazione Mach, che svolge attività di ricerca scientifica, consulenza e servizio alle imprese del settore agroalimentare del Trentino.'),(259,76,0,182,'Delicato, genuino e dalle carni prelibate. Il salmerino alpino Astro viene allevato solo nelle acque pure e fredde delle montagne del Trentino. L’affumicatura a freddo regala ai filetti sensazioni di aromi unici e raffinati. Grazie ad una procedura eseguita a basse temperature (circa 30 gradi), il prodotto mantiene il caratteristico colore roseo e una consistenza soda. '),(260,75,0,183,'L\'alta qualità del prodotto è garantita dal processo di lavorazione a mano e dai numerosi controlli compiuti nel corso dell\'anno. Per gli allevatori, le trote sono stelle d\'acqua dolce: per la loro alimentazione vengono scelti prodotti selezionati sulla base delle indicazioni degli esperti della Fondazione Mach, che svolge attività di ricerca scientifica, consulenza e servizio alle imprese del settore agroalimentare del Trentino.'),(261,76,0,183,'Dalle acque limpide degli allevamenti che sorgono nelle valli trentine, alla tua tavola. I bocconcini di filetti di trota iridea salmonata vengono marinati con aceto di mele, olio di semi di girasole e aromi prima di essere posti in pratici vasetti di vetro. '),(282,75,0,194,'Il territorio\nVitigno autoctono della Vallagarina, il Marzemino ha trovato un suo habitat ideale sugli scuri terreni basaltici della collina di Isera. La pergola semplice e guyot coltivata dai viticoltori cresce sul terreno ghiaioso, calcareo e basaltico tipico della zona di Isera.\n\nLa lavorazione\nLa raccolta manuale dei grappoli avviene solitamente nella ultima decade di settembre. Dopo il conferimento dell\'uva in cantina, ha inizio il processo vinificazione in rosso, con la fermentazione del mosto a temperatura controllata in serbatoi di acciaio inox. Segue l\'affinamento in vasca in cemento, prima dell\'imbottigliamento.\n\nGli abbinamenti\nIl suo equilibrio gustativo, rende il Marzemino un vino singolare e riconoscibile. Gli abbinamenti gastronomici ideali sono i primi piatti con sughi di funghi, carne bianche e rosse non arricchite da eccessivi aromi, salumi o insaccati prodotti dalla Federazione trentina allevatori. Servita fresca, Etichetta Verde è da provare in abbinamento con delicati antipasti primi piatti con sughi di funghi, carni bianche  e rosse.\n\n'),(283,76,0,194,'Con un colore rosso rubino fitto. Al naso ha un aroma ricco, intenso, con sentori di frutta di bosco e ciliegia che si sposano a note floreali che ricordano la viola e note speziate derivanti dal lungo periodo di affinamento. In bocca è vivo ed avvolgente con richiami freschi-fruttati che ne conferiscono grande eleganza. Il suo equilibrio gustativo lo rende un vino singolare e riconoscibile. Mozart lo indicò come quintessenza dei piaceri della tavola.\n'),(284,75,0,195,'Il territorio\nTrentodoc Brut proviene dalle uve chardonnay che maturano nella zona alta delle colline di Isera, da cui si domina la Vallagarina e dove i vignaioli coltivano la pergola semplice trentina e guyot. Il terreno ghiaioso, calcareo, franco sabbioso, con una buona capacità drenante, conferisce al vino un caratteristico aroma minerale.\n\nLa lavorazione\nGli agricoltori effettuano la raccolta dell\'uva nella prima decade di settembre, con il supporto dei membri della famiglia e degli amici per i quali la vendemmia è un rito irrinunciabile. La vinificazione in bianco prevede la decantazione statica del mosto e una fermentazione a temperatura controllata. Segue l\'affinamento in botti d\'acciaio prima della maturazione sui lieviti per più di 30 mesi.\n\nGli abbinamenti\nTrentodoc Brut può essere gustato come aperitivo in compagnia degli amici, accompagnato al formaggio Grana del Trentino, ma è perfettamente in grado di sostenere con grande piacevolezza l\'intero pasto.'),(285,76,0,195,'Il Trentodoc Brut Cantina d\'Isera 1907 è prodotto dalle più pregiate uve Chardonnay coltivate sulle colline di Isera. E\' un Trentodoc immediato, che lascia ampio spazio di interazione tra gusto, olfatto e territorio. La godibilità di questo Trentodoc è assicurata dalla ricerca dell\'equilibrio tra i profumi minerali e di frutta candita mescolati alla crosta di pane supportati da una bolla fine, lieve, continua.'),(286,75,0,111,NULL),(287,75,0,126,NULL),(288,75,0,124,NULL),(289,75,0,121,NULL),(290,75,0,131,NULL),(291,75,0,134,NULL),(292,75,0,129,NULL),(293,75,0,130,NULL),(294,75,0,127,NULL),(295,75,0,128,NULL),(296,75,0,117,NULL),(297,75,0,119,NULL),(298,75,0,118,NULL),(299,75,0,115,NULL),(300,75,0,120,NULL),(301,75,0,112,NULL),(302,75,0,116,NULL),(303,75,0,113,NULL),(304,75,0,114,NULL),(305,75,0,132,NULL),(306,75,0,123,NULL),(307,75,0,125,NULL),(308,75,0,196,'Descrizione libera da parte del partner (quando ci sarà il PIM)'),(309,76,0,196,'Descrizione corta (fissa quando ci sarà il PIM)'),(310,75,0,197,'Descrizione libera da parte del partner (quando ci sarà il PIM)'),(311,76,0,197,'Desssscrizione corta (fissa quando ci sarà il PIM)'),(312,75,0,2,NULL),(313,76,0,2,'la descrizione'),(314,75,0,198,'Prova'),(315,76,0,198,'Prova'),(316,75,0,199,'prov prova'),(317,76,0,199,'prod prova'),(318,75,0,200,'prodotto'),(319,76,0,200,'prodottotre');
/*!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` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `qty` decimal(12,4) NOT NULL DEFAULT 1.0000 COMMENT 'QTY',
  `value` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Value',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `percentage_value` decimal(5,2) DEFAULT NULL COMMENT 'Percentage value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `UNQ_E8AB433B9ACB00343ABB312AD2FAB087` (`entity_id`,`all_groups`,`customer_group_id`,`qty`,`website_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_ENTITY_TIER_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `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,
  CONSTRAINT `CAT_PRD_ENTT_TIER_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE 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',
  `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 `CATALOG_PRODUCT_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_ENTT_VCHR_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1239 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,134,0,1,'2'),(2,86,0,1,'Vino Test '),(3,84,0,1,'Vino Test'),(4,120,0,1,'0'),(5,73,0,1,'Vino Test'),(6,106,0,1,'container2'),(7,104,0,1,'product-full-width'),(8,123,0,1,'vino-test'),(9,87,0,1,'/r/i/riorominimullerthurgau_1024x1024_2x.jpg'),(10,88,0,1,'/r/i/riorominimullerthurgau_1024x1024_2x.jpg'),(11,89,0,1,'/r/i/riorominimullerthurgau_1024x1024_2x.jpg'),(12,135,0,1,'/r/i/riorominimullerthurgau_1024x1024_2x.jpg'),(17,73,0,2,'primo prodottoss - Delta Informatica'),(18,106,0,2,'container2'),(19,120,0,2,'0'),(20,123,0,2,'primo-prodotto-delta-informatica'),(27,73,0,3,'prodottoprova - Federazione Trentina della Cooperazione'),(28,106,0,3,'container2'),(29,120,0,3,'0'),(30,123,0,3,'prodottoprova-federazione-trentina-della-cooperazione'),(31,73,0,4,'Costata di Manzo 1 - Federazione Trentina della Cooperazione'),(32,106,0,4,'container2'),(33,120,0,4,'0'),(34,123,0,4,'costata-di-manzo-1-federazione-trentina-della-cooperazione'),(35,87,0,4,'/C/o/Costata_Manzo_FT_1.jpg'),(36,88,0,4,'/C/o/Costata_Manzo_FT_1.jpg'),(37,89,0,4,'/C/o/Costata_Manzo_FT_1.jpg'),(38,135,0,4,'/C/o/Costata_Manzo_FT_1.jpg'),(84,109,0,4,'pms_uploadCostata_Manzo_FT_1.jpg'),(86,110,0,4,'pms_uploadCostata_Manzo_FT_1.jpg'),(88,111,0,4,'pms_uploadCostata_Manzo_FT_1.jpg'),(125,73,0,5,'prodotto 1 - partner prova'),(126,106,0,5,'container2'),(127,120,0,5,'0'),(128,123,0,5,'prodotto-1-partner-prova'),(133,134,0,4,'0'),(141,87,0,2,'no_selection'),(142,88,0,2,'no_selection'),(143,89,0,2,'no_selection'),(144,134,0,2,'0'),(145,135,0,2,'no_selection'),(150,87,0,5,'/p/i/piuchemelagustomelaintegrale_1024x1024_2x.jpg'),(151,88,0,5,'/p/i/piuchemelagustomelaintegrale_1024x1024_2x.jpg'),(152,89,0,5,'/p/i/piuchemelagustomelaintegrale_1024x1024_2x.jpg'),(153,134,0,5,'0'),(154,135,0,5,'/p/i/piuchemelagustomelaintegrale_1024x1024_2x.jpg'),(179,73,0,6,'Test 1 - Federazione Trentina della Cooperazione'),(180,106,0,6,'container2'),(181,120,0,6,'0'),(182,123,0,6,'test-1-federazione-trentina-della-cooperazione'),(191,73,0,7,'Melinda mousse 100% mela'),(192,106,0,7,'container2'),(193,120,0,7,'0'),(194,123,0,7,'melinda-mousse-vendi24'),(195,87,0,7,'no_selection'),(196,88,0,7,'no_selection'),(197,89,0,7,'no_selection'),(198,135,0,7,'no_selection'),(218,167,0,1,'in italiano'),(223,73,0,8,'Vino di prova - Delta Informatica'),(224,106,0,8,'container2'),(225,120,0,8,'0'),(226,123,0,8,'vino-di-prova-delta-informatica'),(227,73,0,9,'Rondelle Melamangio Bio'),(228,106,0,9,'container2'),(229,120,0,9,'0'),(230,123,0,9,'rondelle-melamangio-bio-vendi24'),(231,73,0,10,'Bastoncini Melamangio'),(232,106,0,10,'container2'),(233,120,0,10,'0'),(234,123,0,10,'bastoncini-melamangio-vendi24'),(235,73,0,11,'Glassa all\'aceto di mele biologico'),(236,106,0,11,'container2'),(237,120,0,11,'0'),(238,123,0,11,'glassa-all-aceto-di-mele-biologico-vendi24'),(239,73,0,12,'Aceto di mele'),(240,106,0,12,'container2'),(241,120,0,12,'0'),(242,123,0,12,'aceto-di-mele-vendi24'),(243,73,0,13,'Più che mela - 100% mela'),(244,106,0,13,'container2'),(245,120,0,13,'0'),(246,123,0,13,'piu-che-mela-100-mela-vendi24'),(247,73,0,14,'Tenero Snack Melamangio Melinda 100% mela'),(248,106,0,14,'container2'),(249,120,0,14,'0'),(250,123,0,14,'tenero-snack-melamangio-melinda-vendi24'),(457,73,0,49,'Trentingrana 1kg'),(458,106,0,49,'container2'),(459,120,0,49,'0'),(460,123,0,49,'trentingrana1kg-consorziotrentingrana-gruppoformaggideltrentino-undefined'),(461,224,0,14,'Melinda'),(462,225,0,14,'Vendi24'),(463,226,0,14,NULL),(468,73,0,51,'Trentingrana 250gr'),(469,106,0,51,'container2'),(470,120,0,51,'0'),(471,123,0,51,'trentingrana250gr-consorziotrentingrana-gruppoformaggideltrentino-undefined'),(472,73,0,52,'Trentingrana grattuggiato'),(473,106,0,52,'container2'),(474,120,0,52,'0'),(475,123,0,52,'trentingranagrattuggiato-consorziotrentingrana-gruppoformaggideltrentino-undefined'),(476,73,0,53,'Puzzone di Moena DOP'),(477,106,0,53,'container2'),(478,120,0,53,'0'),(479,123,0,53,'puzzonedimoenadop-gruppoformaggideltrentino-undefined'),(480,73,0,54,'Affogato di Sabbionara'),(481,106,0,54,'container2'),(482,120,0,54,'0'),(483,123,0,54,'affogatodisabbionara-gruppoformaggideltrentino-undefined'),(484,73,0,55,'Fontal di Cavalese'),(485,106,0,55,'container2'),(486,120,0,55,'0'),(487,123,0,55,'fontaldicavalese-undefined'),(488,73,0,56,'Mezzano Trentino di Alta Montagna'),(489,106,0,56,'container2'),(490,120,0,56,'0'),(491,123,0,56,'mezzanotrentinodialtamontagna-gruppoformaggideltrentino-undefined'),(492,73,0,57,'Vezzena del Trentino'),(493,106,0,57,'container2'),(494,120,0,57,'0'),(495,123,0,57,'vezzenadeltrentino-gruppoformaggideltrentino-undefined'),(496,73,0,58,'Cuor di Fassa'),(497,106,0,58,'container2'),(498,120,0,58,'0'),(499,123,0,58,'cuordifassa-gruppoformaggideltrentino-undefined'),(500,73,0,59,'Primiero Fresco'),(501,106,0,59,'container2'),(502,120,0,59,'0'),(503,123,0,59,'primierofresco-gruppoformaggideltrentino-undefined'),(504,73,0,60,'Casolét Val di Sole'),(505,106,0,60,'container2'),(506,120,0,60,'0'),(507,123,0,60,'casoletvaldisole-undefined'),(508,73,0,61,'Formae Val di Fiemme'),(509,106,0,61,'container2'),(510,120,0,61,'0'),(511,123,0,61,'formaevaldifiemme-gruppoformaggideltrentino-undefined'),(708,73,0,111,'Confettura extra di fragole'),(709,106,0,111,'container2'),(710,120,0,111,'0'),(711,123,0,111,'confetturaextradifragole-sant-orsola-undefined'),(712,73,0,112,'Confettura extra di lampone'),(713,106,0,112,'container2'),(714,120,0,112,'0'),(715,123,0,112,'confetturaextradilampone-sant-orsola-undefined'),(716,73,0,113,'Confettura extra di mirtillo di bosco '),(717,106,0,113,'container2'),(718,120,0,113,'0'),(719,123,0,113,'confetturaextradimirtillodibosco-sant-orsola-undefined'),(720,73,0,114,'Confettura extra di misto bosco '),(721,106,0,114,'container2'),(722,120,0,114,'0'),(723,123,0,114,'confetturaextradimistobosco-sant-orsola-undefined'),(724,73,0,115,'Confettura extra di mirtillo rosso '),(725,106,0,115,'container2'),(726,120,0,115,'0'),(727,123,0,115,'confetturaextradimirtillorosso-sant-orsola-undefined'),(728,73,0,116,'Confettura extra di mele cotogne'),(729,106,0,116,'container2'),(730,120,0,116,'0'),(731,123,0,116,'confetturaextradimelecotogne-sant-orsola-undefined'),(732,73,0,117,'Crema di marroni'),(733,106,0,117,'container2'),(734,120,0,117,'0'),(735,123,0,117,'cremadimarroni-sant-orsola-undefined'),(736,73,0,118,'Confettura extra di rosa canina '),(737,106,0,118,'container2'),(738,120,0,118,'0'),(739,123,0,118,'confetturaextradirosacanina-sant-orsola-undefined'),(740,73,0,119,'Confettura extra di sambuco'),(741,106,0,119,'container2'),(742,120,0,119,'0'),(743,123,0,119,'confetturaextradisambuco-sant-orsola-undefined'),(744,73,0,120,'Confettura extra di ciliegie trentine'),(745,106,0,120,'container2'),(746,120,0,120,'0'),(747,123,0,120,'confetturaextradiciliegietrentine-sant-orsola-undefined'),(748,73,0,121,'Sciroppato mirtillo di bosco '),(749,106,0,121,'container2'),(750,120,0,121,'0'),(751,123,0,121,'sciroppatomirtillodibosco-sant-orsola-undefined'),(752,73,0,122,'Sciroppato misto bosco '),(753,106,0,122,'container2'),(754,120,0,122,'0'),(755,123,0,122,'sciroppatomistobosco-sant-orsola-undefined'),(756,73,0,123,'Sciroppato marroni e miele '),(757,106,0,123,'container2'),(758,120,0,123,'0'),(759,123,0,123,'sciroppatomarroniemiele-sant-orsola-undefined'),(760,73,0,124,'Succoso mirtillo di bosco '),(761,106,0,124,'container2'),(762,120,0,124,'0'),(763,123,0,124,'succosomirtillodibosco-sant-orsola-undefined'),(764,73,0,125,'Succoso mirtillo rosso '),(765,106,0,125,'container2'),(766,120,0,125,'0'),(767,123,0,125,'succosomirtillorosso-sant-orsola-undefined'),(768,73,0,126,'Succoso mirtillo di bosco s/zucchero '),(769,106,0,126,'container2'),(770,120,0,126,'0'),(771,123,0,126,'succosomirtillodiboscos-zucchero-sant-orsola-undefined'),(772,73,0,127,'Mostarda di ribes rosso '),(773,106,0,127,'container2'),(774,120,0,127,'0'),(775,123,0,127,'mostardadiribesrosso-sant-orsola-undefined'),(776,73,0,128,'Mostarda di pere '),(777,106,0,128,'container2'),(778,120,0,128,'0'),(779,123,0,128,'mostardadipere-sant-orsola-undefined'),(780,73,0,129,'Mostarda di rosa canina '),(781,106,0,129,'container2'),(782,120,0,129,'0'),(783,123,0,129,'mostardadirosacanina-sant-orsola-undefined'),(784,73,0,130,'Mostarda di mele cotogne '),(785,106,0,130,'container2'),(786,120,0,130,'0'),(787,123,0,130,'mostardadimelecotogne-sant-orsola-undefined'),(788,73,0,131,'Salsa agrodolce di misto bosco '),(789,106,0,131,'container2'),(790,120,0,131,'0'),(791,123,0,131,'salsaagrodolcedimistobosco-sant-orsola-undefined'),(792,73,0,132,'Salsa mirtillo rosso'),(793,106,0,132,'container2'),(794,120,0,132,'0'),(795,123,0,132,'salsamirtillorosso-sant-orsola-undefined'),(796,73,0,133,'Purea di mela e fragola '),(797,106,0,133,'container2'),(798,120,0,133,'0'),(799,123,0,133,'pureadimelaefragola-sant-orsola-undefined'),(800,73,0,134,'Purea di mela e mirtillo '),(801,106,0,134,'container2'),(802,120,0,134,'0'),(803,123,0,134,'pureadimelaemirtillo-sant-orsola-undefined'),(816,73,0,138,'Test Brand e Territorio'),(817,106,0,138,'container2'),(818,120,0,138,'0'),(819,123,0,138,'testbrandeterritorio-brandina-undefined'),(956,73,0,173,'Bocconcini di salmerino marinato'),(957,106,0,173,'container2'),(958,120,0,173,'0'),(959,123,0,173,'bocconcinidisalmerinomarinato-astro-undefined'),(960,73,0,174,'Trota in Saor'),(961,106,0,174,'container2'),(962,120,0,174,'0'),(963,123,0,174,'trotainsaor-astro-undefined'),(964,73,0,175,'Filetto di trota marinata'),(965,106,0,175,'container2'),(966,120,0,175,'0'),(967,123,0,175,'filettoditrotamarinata-astro-undefined'),(968,73,0,176,'Uova di trota'),(969,106,0,176,'container2'),(970,120,0,176,'0'),(971,123,0,176,'uovaditrota-astro-undefined'),(972,73,0,177,'Gocce di trota'),(973,106,0,177,'container2'),(974,120,0,177,'0'),(975,123,0,177,'gocceditrota-astro-undefined'),(976,73,0,178,'Trota salmonata affumicata deliziosa'),(977,106,0,178,'container2'),(978,120,0,178,'0'),(979,123,0,178,'trotasalmonataaffumicatadeliziosa-astro-undefined'),(980,73,0,179,'Trota salmonata affumicata classica'),(981,106,0,179,'container2'),(982,120,0,179,'0'),(983,123,0,179,'trotasalmonataaffumicataclassica-astro-undefined'),(984,73,0,180,'Trota salmonata affumicata rustica'),(985,106,0,180,'container2'),(986,120,0,180,'0'),(987,123,0,180,'trotasalmonataaffumicatarustica-astro-undefined'),(988,73,0,181,'Trota salmonata affumicata affettata'),(989,106,0,181,'container2'),(990,120,0,181,'0'),(991,123,0,181,'trotasalmonataaffumicataaffettata-astro-undefined'),(992,73,0,182,'Salmerino Alpino affumicato'),(993,106,0,182,'container2'),(994,120,0,182,'0'),(995,123,0,182,'salmerinoalpinoaffumicato-astro-undefined'),(996,73,0,183,'Bocconcini di trota marinata'),(997,106,0,183,'container2'),(998,120,0,183,'0'),(999,123,0,183,'bocconciniditrotamarinata-astro-undefined'),(1040,73,0,194,'Marzemino Etichetta Verde'),(1041,106,0,194,'container2'),(1042,120,0,194,'0'),(1043,123,0,194,'marzeminoetichettaverde-cantinad-isera-undefined'),(1044,73,0,195,'Trento DOC 1907'),(1045,106,0,195,'container2'),(1046,120,0,195,'0'),(1047,123,0,195,'trentodoc1907-cantinad-isera-undefined'),(1048,224,0,111,'Sant\'Orsola'),(1049,225,0,111,'Vendi24'),(1050,226,0,111,NULL),(1051,224,0,126,'Sant\'Orsola'),(1052,225,0,126,'Vendi24'),(1053,226,0,126,NULL),(1054,224,0,124,'Sant\'Orsola'),(1055,225,0,124,'Vendi24'),(1056,226,0,124,NULL),(1057,224,0,121,'Sant\'Orsola'),(1058,225,0,121,'Vendi24'),(1059,226,0,121,NULL),(1060,224,0,131,'Sant\'Orsola'),(1061,225,0,131,'Vendi24'),(1062,226,0,131,NULL),(1063,224,0,134,'Sant\'Orsola'),(1064,225,0,134,'Vendi24'),(1065,226,0,134,NULL),(1066,224,0,129,'Sant\'Orsola'),(1067,225,0,129,'Vendi24'),(1068,226,0,129,NULL),(1069,224,0,130,'Sant\'Orsola'),(1070,225,0,130,'Vendi24'),(1071,226,0,130,NULL),(1072,224,0,127,'Sant\'Orsola'),(1073,225,0,127,'Vendi24'),(1074,226,0,127,NULL),(1075,224,0,128,'Sant\'Orsola'),(1076,225,0,128,'Vendi24'),(1077,226,0,128,NULL),(1078,224,0,117,'Sant\'Orsola'),(1079,225,0,117,'Vendi24'),(1080,226,0,117,NULL),(1081,224,0,119,'Sant\'Orsola'),(1082,225,0,119,'Vendi24'),(1083,226,0,119,NULL),(1084,224,0,118,'Sant\'Orsola'),(1085,225,0,118,'Vendi24'),(1086,226,0,118,NULL),(1087,224,0,115,'Sant\'Orsola'),(1088,225,0,115,'Vendi24'),(1089,226,0,115,NULL),(1090,224,0,120,'Sant\'Orsola'),(1091,225,0,120,'Vendi24'),(1092,226,0,120,NULL),(1093,224,0,112,'Sant\'Orsola'),(1094,225,0,112,'Vendi24'),(1095,226,0,112,NULL),(1096,224,0,116,'Sant\'Orsola'),(1097,225,0,116,'Vendi24'),(1098,226,0,116,NULL),(1099,224,0,113,'Sant\'Orsola'),(1100,225,0,113,'Vendi24'),(1101,226,0,113,NULL),(1102,224,0,114,'Sant\'Orsola'),(1103,225,0,114,'Vendi24'),(1104,226,0,114,NULL),(1105,224,0,132,'Sant\'Orsola'),(1106,225,0,132,'Vendi24'),(1107,226,0,132,NULL),(1108,224,0,123,'Sant\'Orsola'),(1109,225,0,123,'Vendi24'),(1110,226,0,123,NULL),(1111,224,0,125,'Sant\'Orsola'),(1112,225,0,125,'Vendi24'),(1113,226,0,125,NULL),(1114,224,0,13,'Melinda'),(1115,225,0,13,'Vendi24'),(1116,226,0,13,NULL),(1117,224,0,9,'Melinda'),(1118,225,0,9,'Vendi24'),(1119,226,0,9,NULL),(1120,224,0,10,'Melinda'),(1121,225,0,10,'Vendi24'),(1122,226,0,10,NULL),(1123,224,0,11,'Melinda'),(1124,225,0,11,'Vendi24'),(1125,226,0,11,NULL),(1126,224,0,12,'Melinda'),(1127,225,0,12,'Vendi24'),(1128,226,0,12,NULL),(1129,224,0,7,'Melinda'),(1130,225,0,7,'Vendi24'),(1131,226,0,7,NULL),(1132,224,0,179,'Astro'),(1133,225,0,179,'Vendi24'),(1134,226,0,179,NULL),(1135,224,0,176,'Astro'),(1136,225,0,176,'Vendi24'),(1137,226,0,176,NULL),(1138,224,0,180,'Astro'),(1139,225,0,180,'Vendi24'),(1140,226,0,180,NULL),(1141,224,0,178,'Astro'),(1142,225,0,178,'Vendi24'),(1143,226,0,178,NULL),(1144,224,0,181,'Astro'),(1145,225,0,181,'Vendi24'),(1146,226,0,181,NULL),(1159,73,0,196,'Test Brand e Territorio'),(1160,106,0,196,'container2'),(1161,120,0,196,'0'),(1162,123,0,196,'testbrandeterritorio-brandina-undefined'),(1163,73,0,197,'Test Bsssrand e Territorio'),(1164,106,0,197,'container2'),(1165,120,0,197,'0'),(1166,123,0,197,'testbsssrandeterritorio-brandsssina-undefined'),(1167,87,0,124,'no_selection'),(1168,88,0,124,'no_selection'),(1169,89,0,124,'no_selection'),(1170,135,0,124,'no_selection'),(1171,224,0,2,'asd'),(1172,225,0,2,'Delta Informatica'),(1173,226,0,2,NULL),(1178,73,0,198,'Seconda prova prodotto'),(1179,106,0,198,'container2'),(1180,120,0,198,'0'),(1181,123,0,198,'secondaprovaprodotto-undefined'),(1182,87,0,198,'/v/e/ventidue.jpg'),(1183,88,0,198,'/v/e/ventidue.jpg'),(1184,89,0,198,'/v/e/ventidue.jpg'),(1185,135,0,198,'no_selection'),(1186,224,0,198,NULL),(1187,225,0,198,'Delta Informatica'),(1188,226,0,198,NULL),(1190,109,0,198,'Product image PROVAPROD_AG-ee21e1b4-0ab6-4a81-bb4d-82d7c9f35115 - Fri Sep 16 2022 15:44:08 GMT+0200 (Central European Summer Time)'),(1192,110,0,198,'Product image PROVAPROD_AG-ee21e1b4-0ab6-4a81-bb4d-82d7c9f35115 - Fri Sep 16 2022 15:44:08 GMT+0200 (Central European Summer Time)'),(1194,111,0,198,'Product image PROVAPROD_AG-ee21e1b4-0ab6-4a81-bb4d-82d7c9f35115 - Fri Sep 16 2022 15:44:08 GMT+0200 (Central European Summer Time)'),(1196,73,0,199,'prodotto di prova 2dsd'),(1197,106,0,199,'container2'),(1198,120,0,199,'0'),(1199,123,0,199,'prodottodiprova2dsd-undefined'),(1200,87,0,199,'/s/e/ser.jpg'),(1201,88,0,199,'/s/e/ser.jpg'),(1202,89,0,199,'/s/e/ser.jpg'),(1203,135,0,199,'no_selection'),(1204,224,0,199,NULL),(1205,225,0,199,'Delta Informatica'),(1206,226,0,199,NULL),(1208,109,0,199,'Product image proprova-e221af72-e2e0-4a4c-b8ff-88c9ba40ce10 - Fri Sep 16 2022 15:49:55 GMT+0200 (Central European Summer Time)'),(1210,110,0,199,'Product image proprova-e221af72-e2e0-4a4c-b8ff-88c9ba40ce10 - Fri Sep 16 2022 15:49:55 GMT+0200 (Central European Summer Time)'),(1212,111,0,199,'Product image proprova-e221af72-e2e0-4a4c-b8ff-88c9ba40ce10 - Fri Sep 16 2022 15:49:55 GMT+0200 (Central European Summer Time)'),(1214,73,0,200,'prodottotre'),(1215,106,0,200,'container2'),(1216,120,0,200,'0'),(1217,123,0,200,'prodottotre-undefined'),(1218,87,0,200,'/2/m/2mb.jpg'),(1219,88,0,200,'/2/m/2mb.jpg'),(1220,89,0,200,'/2/m/2mb.jpg'),(1221,135,0,200,'no_selection'),(1222,224,0,200,NULL),(1223,225,0,200,'Delta Informatica'),(1224,226,0,200,NULL),(1226,109,0,200,'Product image prodtre-c827c494-3740-4335-8cb5-cae2e10e4c05 - Fri Sep 16 2022 15:59:04 GMT+0200 (Central European Summer Time)'),(1228,110,0,200,'Product image prodtre-c827c494-3740-4335-8cb5-cae2e10e4c05 - Fri Sep 16 2022 15:59:04 GMT+0200 (Central European Summer Time)'),(1230,111,0,200,'Product image prodtre-c827c494-3740-4335-8cb5-cae2e10e4c05 - Fri Sep 16 2022 15:59:04 GMT+0200 (Central European Summer Time)');
/*!40000 ALTER TABLE `catalog_product_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_frontend_action`
--

DROP TABLE IF EXISTS `catalog_product_frontend_action`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_frontend_action` (
  `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product Action ID',
  `type_id` varchar(64) NOT NULL COMMENT 'Type of product action',
  `visitor_id` int(10) unsigned DEFAULT NULL COMMENT 'Visitor ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `added_at` bigint(20) NOT NULL COMMENT 'Added At',
  PRIMARY KEY (`action_id`),
  UNIQUE KEY `CATALOG_PRODUCT_FRONTEND_ACTION_VISITOR_ID_PRODUCT_ID_TYPE_ID` (`visitor_id`,`product_id`,`type_id`),
  UNIQUE KEY `CATALOG_PRODUCT_FRONTEND_ACTION_CUSTOMER_ID_PRODUCT_ID_TYPE_ID` (`customer_id`,`product_id`,`type_id`),
  KEY `CAT_PRD_FRONTEND_ACTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` (`product_id`),
  CONSTRAINT `CAT_PRD_FRONTEND_ACTION_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_FRONTEND_ACTION_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Product Frontend Action Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_product_frontend_action`
--

LOCK TABLES `catalog_product_frontend_action` WRITE;
/*!40000 ALTER TABLE `catalog_product_frontend_action` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_frontend_action` 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',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`)
) 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,99,1,4,1),(2,99,1,4,2),(4,99,1,4,4),(5,99,1,4,5),(6,99,1,4,6),(7,99,1,4,7),(8,99,1,4,8),(9,99,1,4,9),(10,99,1,4,10),(11,99,1,4,11),(12,99,1,4,12),(13,99,1,4,13),(14,99,1,4,14),(49,99,1,4,49),(51,99,1,4,51),(52,99,1,4,52),(53,99,1,4,53),(54,99,1,4,54),(55,99,1,4,55),(56,99,1,4,56),(57,99,1,4,57),(58,99,1,4,58),(59,99,1,4,59),(60,99,1,4,60),(61,99,1,4,61),(111,99,1,4,111),(112,99,1,4,112),(113,99,1,4,113),(114,99,1,4,114),(115,99,1,4,115),(116,99,1,4,116),(117,99,1,4,117),(118,99,1,4,118),(119,99,1,4,119),(120,99,1,4,120),(121,99,1,4,121),(122,99,1,4,122),(123,99,1,4,123),(124,99,1,4,124),(125,99,1,4,125),(126,99,1,4,126),(127,99,1,4,127),(128,99,1,4,128),(129,99,1,4,129),(130,99,1,4,130),(131,99,1,4,131),(132,99,1,4,132),(133,99,1,4,133),(134,99,1,4,134),(173,99,1,4,173),(174,99,1,4,174),(175,99,1,4,175),(176,99,1,4,176),(177,99,1,4,177),(178,99,1,4,178),(179,99,1,4,179),(180,99,1,4,180),(181,99,1,4,181),(182,99,1,4,182),(183,99,1,4,183),(194,99,1,4,194),(195,99,1,4,195),(196,99,1,4,196),(197,99,1,4,197),(198,99,1,4,198),(199,99,1,4,199),(200,99,1,4,200);
/*!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',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`)
) 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',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_IDX_STORE_ID` (`store_id`),
  KEY `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_replica`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_decimal_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_eav_decimal_replica` (
  `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',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_VALUE` (`value`)
) 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_replica`
--

LOCK TABLES `catalog_product_index_eav_decimal_replica` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_product_index_eav_decimal_replica` 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',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_DECIMAL_TMP_STORE_ID` (`store_id`),
  KEY `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',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_IDX_STORE_ID` (`store_id`),
  KEY `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 */;
/*!40000 ALTER TABLE `catalog_product_index_eav_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_product_index_eav_replica`
--

DROP TABLE IF EXISTS `catalog_product_index_eav_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_eav_replica` (
  `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',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_STORE_ID` (`store_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_VALUE` (`value`)
) 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_replica`
--

LOCK TABLES `catalog_product_index_eav_replica` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_eav_replica` DISABLE KEYS */;
INSERT INTO `catalog_product_index_eav_replica` VALUES (1,99,1,4,1),(2,99,1,4,2),(4,99,1,4,4),(5,99,1,4,5),(6,99,1,4,6),(7,99,1,4,7),(8,99,1,4,8),(9,99,1,4,9),(10,99,1,4,10),(11,99,1,4,11),(12,99,1,4,12),(13,99,1,4,13),(14,99,1,4,14),(32,99,1,4,32),(33,99,1,4,33),(34,99,1,4,34),(35,99,1,4,35),(36,99,1,4,36),(37,99,1,4,37),(38,99,1,4,38),(39,99,1,4,39),(40,99,1,4,40),(41,99,1,4,41),(42,99,1,4,42),(45,99,1,4,45),(46,99,1,4,46),(47,99,1,4,47),(48,99,1,4,48),(49,99,1,4,49),(50,99,1,4,50),(51,99,1,4,51),(52,99,1,4,52),(53,99,1,4,53),(54,99,1,4,54),(55,99,1,4,55),(56,99,1,4,56),(57,99,1,4,57),(58,99,1,4,58),(59,99,1,4,59),(60,99,1,4,60),(61,99,1,4,61),(62,99,1,4,62),(99,99,1,4,99),(111,99,1,4,111),(112,99,1,4,112),(113,99,1,4,113),(114,99,1,4,114),(115,99,1,4,115),(116,99,1,4,116),(117,99,1,4,117),(118,99,1,4,118),(119,99,1,4,119),(120,99,1,4,120),(121,99,1,4,121),(122,99,1,4,122),(123,99,1,4,123),(124,99,1,4,124),(125,99,1,4,125),(126,99,1,4,126),(127,99,1,4,127),(128,99,1,4,128),(129,99,1,4,129),(130,99,1,4,130),(131,99,1,4,131),(132,99,1,4,132),(133,99,1,4,133),(134,99,1,4,134),(135,99,1,4,135),(141,99,1,4,141),(142,99,1,4,142),(143,99,1,4,143),(144,99,1,4,144),(145,99,1,4,145),(146,99,1,4,146),(147,99,1,4,147),(148,99,1,4,148),(149,99,1,4,149),(150,99,1,4,150),(173,99,1,4,173),(174,99,1,4,174),(175,99,1,4,175),(176,99,1,4,176),(177,99,1,4,177),(178,99,1,4,178),(179,99,1,4,179),(180,99,1,4,180),(181,99,1,4,181),(182,99,1,4,182),(183,99,1,4,183),(194,99,1,4,194),(195,99,1,4,195);
/*!40000 ALTER TABLE `catalog_product_index_eav_replica` 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',
  `source_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Original entity ID for attribute value',
  PRIMARY KEY (`entity_id`,`attribute_id`,`store_id`,`value`,`source_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CATALOG_PRODUCT_INDEX_EAV_TMP_STORE_ID` (`store_id`),
  KEY `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 */;
/*!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` int(10) 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(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`),
  KEY `CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`)
) 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,1.000000,1.000000,1.000000,1.000000,NULL),(1,1,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(1,2,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(1,3,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(2,0,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,1,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,2,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,3,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(3,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(4,0,1,2,5.000000,4.500000,4.500000,4.500000,NULL),(4,1,1,2,5.000000,4.500000,4.500000,4.500000,NULL),(4,2,1,2,5.000000,4.500000,4.500000,4.500000,NULL),(4,3,1,2,5.000000,4.500000,4.500000,4.500000,NULL),(5,0,1,2,15.000000,15.000000,15.000000,15.000000,NULL),(5,1,1,2,15.000000,15.000000,15.000000,15.000000,NULL),(5,2,1,2,15.000000,15.000000,15.000000,15.000000,NULL),(5,3,1,2,15.000000,15.000000,15.000000,15.000000,NULL),(6,0,1,4,10.000000,9.000000,9.000000,9.000000,NULL),(6,1,1,4,10.000000,9.000000,9.000000,9.000000,NULL),(6,2,1,4,10.000000,9.000000,9.000000,9.000000,NULL),(6,3,1,4,10.000000,9.000000,9.000000,9.000000,NULL),(7,0,1,4,1.150000,1.150000,1.150000,1.150000,NULL),(7,1,1,4,1.150000,1.150000,1.150000,1.150000,NULL),(7,2,1,4,1.150000,1.150000,1.150000,1.150000,NULL),(7,3,1,4,1.150000,1.150000,1.150000,1.150000,NULL),(8,0,1,2,12.000000,11.000000,11.000000,11.000000,NULL),(8,1,1,2,12.000000,11.000000,11.000000,11.000000,NULL),(8,2,1,2,12.000000,11.000000,11.000000,11.000000,NULL),(8,3,1,2,12.000000,11.000000,11.000000,11.000000,NULL),(9,0,1,5,1.000000,1.000000,1.000000,1.000000,NULL),(9,1,1,5,1.000000,1.000000,1.000000,1.000000,NULL),(9,2,1,5,1.000000,1.000000,1.000000,1.000000,NULL),(9,3,1,5,1.000000,1.000000,1.000000,1.000000,NULL),(10,0,1,5,0.850000,0.850000,0.850000,0.850000,NULL),(10,1,1,5,0.850000,0.850000,0.850000,0.850000,NULL),(10,2,1,5,0.850000,0.850000,0.850000,0.850000,NULL),(10,3,1,5,0.850000,0.850000,0.850000,0.850000,NULL),(11,0,1,4,2.990000,2.990000,2.990000,2.990000,NULL),(11,1,1,4,2.990000,2.990000,2.990000,2.990000,NULL),(11,2,1,4,2.990000,2.990000,2.990000,2.990000,NULL),(11,3,1,4,2.990000,2.990000,2.990000,2.990000,NULL),(12,0,1,4,2.390000,2.390000,2.390000,2.390000,NULL),(12,1,1,4,2.390000,2.390000,2.390000,2.390000,NULL),(12,2,1,4,2.390000,2.390000,2.390000,2.390000,NULL),(12,3,1,4,2.390000,2.390000,2.390000,2.390000,NULL),(13,0,1,4,1.400000,1.400000,1.400000,1.400000,NULL),(13,1,1,4,1.400000,1.400000,1.400000,1.400000,NULL),(13,2,1,4,1.400000,1.400000,1.400000,1.400000,NULL),(13,3,1,4,1.400000,1.400000,1.400000,1.400000,NULL),(14,0,1,4,0.850000,0.850000,0.850000,0.850000,NULL),(14,1,1,4,0.850000,0.850000,0.850000,0.850000,NULL),(14,2,1,4,0.850000,0.850000,0.850000,0.850000,NULL),(14,3,1,4,0.850000,0.850000,0.850000,0.850000,NULL),(49,0,1,4,17.900000,17.900000,17.900000,17.900000,NULL),(49,1,1,4,17.900000,17.900000,17.900000,17.900000,NULL),(49,2,1,4,17.900000,17.900000,17.900000,17.900000,NULL),(49,3,1,4,17.900000,17.900000,17.900000,17.900000,NULL),(51,0,1,5,5.200000,5.200000,5.200000,5.200000,NULL),(51,1,1,5,5.200000,5.200000,5.200000,5.200000,NULL),(51,2,1,5,5.200000,5.200000,5.200000,5.200000,NULL),(51,3,1,5,5.200000,5.200000,5.200000,5.200000,NULL),(52,0,1,5,2.100000,2.100000,2.100000,2.100000,NULL),(52,1,1,5,2.100000,2.100000,2.100000,2.100000,NULL),(52,2,1,5,2.100000,2.100000,2.100000,2.100000,NULL),(52,3,1,5,2.100000,2.100000,2.100000,2.100000,NULL),(53,0,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(53,1,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(53,2,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(53,3,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(54,0,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(54,1,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(54,2,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(54,3,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(55,0,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(55,1,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(55,2,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(55,3,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(56,0,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(56,1,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(56,2,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(56,3,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(57,0,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(57,1,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(57,2,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(57,3,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(58,0,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(58,1,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(58,2,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(58,3,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(59,0,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(59,1,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(59,2,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(59,3,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(60,0,1,4,9.900000,9.900000,9.900000,9.900000,NULL),(60,1,1,4,9.900000,9.900000,9.900000,9.900000,NULL),(60,2,1,4,9.900000,9.900000,9.900000,9.900000,NULL),(60,3,1,4,9.900000,9.900000,9.900000,9.900000,NULL),(61,0,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(61,1,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(61,2,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(61,3,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(111,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(111,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(111,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(111,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(112,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(112,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(112,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(112,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(113,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(113,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(113,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(113,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(114,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(114,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(114,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(114,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(115,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(115,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(115,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(115,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(116,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(116,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(116,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(116,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(117,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(117,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(117,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(117,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(118,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(118,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(118,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(118,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(119,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(119,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(119,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(119,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(120,0,1,4,2.700000,2.700000,2.700000,2.700000,NULL),(120,1,1,4,2.700000,2.700000,2.700000,2.700000,NULL),(120,2,1,4,2.700000,2.700000,2.700000,2.700000,NULL),(120,3,1,4,2.700000,2.700000,2.700000,2.700000,NULL),(121,0,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(121,1,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(121,2,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(121,3,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(122,0,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(122,1,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(122,2,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(122,3,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(123,0,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(123,1,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(123,2,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(123,3,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(124,0,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(124,1,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(124,2,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(124,3,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(125,0,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(125,1,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(125,2,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(125,3,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(126,0,1,2,4.950000,4.950000,4.950000,4.950000,NULL),(126,1,1,2,4.950000,4.950000,4.950000,4.950000,NULL),(126,2,1,2,4.950000,4.950000,4.950000,4.950000,NULL),(126,3,1,2,4.950000,4.950000,4.950000,4.950000,NULL),(127,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(127,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(127,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(127,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(128,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(128,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(128,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(128,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(129,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(129,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(129,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(129,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(130,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(130,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(130,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(130,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(131,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(131,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(131,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(131,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(132,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(132,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(132,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(132,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(133,0,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(133,1,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(133,2,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(133,3,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(134,0,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(134,1,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(134,2,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(134,3,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(138,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(138,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(138,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(138,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(173,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(173,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(173,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(173,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(174,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(174,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(174,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(174,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(175,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(175,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(175,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(175,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(176,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(176,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(176,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(176,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(177,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(177,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(177,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(177,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(178,0,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(178,1,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(178,2,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(178,3,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(179,0,1,4,4.000000,4.000000,4.000000,4.000000,NULL),(179,1,1,4,4.000000,4.000000,4.000000,4.000000,NULL),(179,2,1,4,4.000000,4.000000,4.000000,4.000000,NULL),(179,3,1,4,4.000000,4.000000,4.000000,4.000000,NULL),(180,0,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(180,1,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(180,2,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(180,3,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(181,0,1,4,4.900000,4.900000,4.900000,4.900000,NULL),(181,1,1,4,4.900000,4.900000,4.900000,4.900000,NULL),(181,2,1,4,4.900000,4.900000,4.900000,4.900000,NULL),(181,3,1,4,4.900000,4.900000,4.900000,4.900000,NULL),(182,0,1,4,5.400000,5.400000,5.400000,5.400000,NULL),(182,1,1,4,5.400000,5.400000,5.400000,5.400000,NULL),(182,2,1,4,5.400000,5.400000,5.400000,5.400000,NULL),(182,3,1,4,5.400000,5.400000,5.400000,5.400000,NULL),(183,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(183,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(183,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(183,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(194,0,1,2,13.500000,13.500000,13.500000,13.500000,NULL),(194,1,1,2,13.500000,13.500000,13.500000,13.500000,NULL),(194,2,1,2,13.500000,13.500000,13.500000,13.500000,NULL),(194,3,1,2,13.500000,13.500000,13.500000,13.500000,NULL),(195,0,1,2,18.500000,18.500000,18.500000,18.500000,NULL),(195,1,1,2,18.500000,18.500000,18.500000,18.500000,NULL),(195,2,1,2,18.500000,18.500000,18.500000,18.500000,NULL),(195,3,1,2,18.500000,18.500000,18.500000,18.500000,NULL),(196,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(196,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(196,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(196,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(197,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(197,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(197,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(197,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(198,0,1,4,111.000000,110.000000,110.000000,110.000000,NULL),(198,1,1,4,111.000000,110.000000,110.000000,110.000000,NULL),(198,2,1,4,111.000000,110.000000,110.000000,110.000000,NULL),(198,3,1,4,111.000000,110.000000,110.000000,110.000000,NULL),(199,0,1,5,111.000000,111.000000,111.000000,111.000000,NULL),(199,1,1,5,111.000000,111.000000,111.000000,111.000000,NULL),(199,2,1,5,111.000000,111.000000,111.000000,111.000000,NULL),(199,3,1,5,111.000000,111.000000,111.000000,111.000000,NULL),(200,0,1,5,111.000000,111.000000,111.000000,111.000000,NULL),(200,1,1,5,111.000000,111.000000,111.000000,111.000000,NULL),(200,2,1,5,111.000000,111.000000,111.000000,111.000000,NULL),(200,3,1,5,111.000000,111.000000,111.000000,111.000000,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` int(11) NOT NULL,
  `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(20,6) DEFAULT NULL COMMENT 'Special Price',
  `tier_percent` decimal(20,6) DEFAULT NULL COMMENT 'Tier Percent',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Orig Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) 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` int(11) NOT NULL,
  `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(20,6) DEFAULT NULL COMMENT 'Min Price',
  `alt_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `alt_tier_price` decimal(20,6) 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` int(11) NOT NULL,
  `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(20,6) DEFAULT NULL COMMENT 'Min Price',
  `alt_price` decimal(20,6) DEFAULT NULL COMMENT 'Alt Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `alt_tier_price` decimal(20,6) 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` int(11) NOT NULL,
  `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(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) 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` int(11) NOT NULL,
  `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(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) 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` int(11) NOT NULL,
  `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(20,6) DEFAULT NULL COMMENT 'Special Price',
  `tier_percent` decimal(20,6) DEFAULT NULL COMMENT 'Tier Percent',
  `orig_price` decimal(20,6) DEFAULT NULL COMMENT 'Orig Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) 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` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) 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 Table';
/*!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` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `tier_price` decimal(20,6) 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 Table';
/*!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` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) 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` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) 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` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Minimum price',
  `max_price` decimal(20,6) NOT NULL DEFAULT 0.000000 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` int(11) NOT NULL,
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Minimum price',
  `max_price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Maximum price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`)
) ENGINE=InnoDB 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` int(10) unsigned NOT NULL DEFAULT 0 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(20,6) DEFAULT NULL COMMENT 'Original Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) 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` int(10) unsigned NOT NULL DEFAULT 0 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(20,6) DEFAULT NULL COMMENT 'Original Price',
  `price` decimal(20,6) DEFAULT NULL COMMENT 'Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `base_tier` decimal(20,6) 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` int(10) unsigned NOT NULL DEFAULT 0 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(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_IDX_WEBSITE_ID` (`website_id`),
  KEY `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 */;
/*!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` int(10) unsigned NOT NULL DEFAULT 0 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(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) 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` int(10) unsigned NOT NULL DEFAULT 0 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(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) 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` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) 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` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) 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_replica`
--

DROP TABLE IF EXISTS `catalog_product_index_price_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_product_index_price_replica` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `customer_group_id` int(10) 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(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_PRICE_MIN_PRICE` (`min_price`),
  KEY `CAT_PRD_IDX_PRICE_WS_ID_CSTR_GROUP_ID_MIN_PRICE` (`website_id`,`customer_group_id`,`min_price`)
) 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_replica`
--

LOCK TABLES `catalog_product_index_price_replica` WRITE;
/*!40000 ALTER TABLE `catalog_product_index_price_replica` DISABLE KEYS */;
INSERT INTO `catalog_product_index_price_replica` VALUES (1,0,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(1,1,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(1,2,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(1,3,1,2,1.000000,1.000000,1.000000,1.000000,NULL),(2,0,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,1,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,2,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(2,3,1,2,12.000000,12.000000,12.000000,12.000000,NULL),(3,0,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,1,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,2,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(3,3,1,2,35.000000,35.000000,35.000000,35.000000,NULL),(4,0,1,2,5.000000,4.500000,4.500000,4.500000,NULL),(4,1,1,2,5.000000,4.500000,4.500000,4.500000,NULL),(4,2,1,2,5.000000,4.500000,4.500000,4.500000,NULL),(4,3,1,2,5.000000,4.500000,4.500000,4.500000,NULL),(5,0,1,2,15.000000,15.000000,15.000000,15.000000,NULL),(5,1,1,2,15.000000,15.000000,15.000000,15.000000,NULL),(5,2,1,2,15.000000,15.000000,15.000000,15.000000,NULL),(5,3,1,2,15.000000,15.000000,15.000000,15.000000,NULL),(6,0,1,4,10.000000,9.000000,9.000000,9.000000,NULL),(6,1,1,4,10.000000,9.000000,9.000000,9.000000,NULL),(6,2,1,4,10.000000,9.000000,9.000000,9.000000,NULL),(6,3,1,4,10.000000,9.000000,9.000000,9.000000,NULL),(7,0,1,4,1.150000,1.150000,1.150000,1.150000,NULL),(7,1,1,4,1.150000,1.150000,1.150000,1.150000,NULL),(7,2,1,4,1.150000,1.150000,1.150000,1.150000,NULL),(7,3,1,4,1.150000,1.150000,1.150000,1.150000,NULL),(8,0,1,2,12.000000,11.000000,11.000000,11.000000,NULL),(8,1,1,2,12.000000,11.000000,11.000000,11.000000,NULL),(8,2,1,2,12.000000,11.000000,11.000000,11.000000,NULL),(8,3,1,2,12.000000,11.000000,11.000000,11.000000,NULL),(9,0,1,5,1.000000,1.000000,1.000000,1.000000,NULL),(9,1,1,5,1.000000,1.000000,1.000000,1.000000,NULL),(9,2,1,5,1.000000,1.000000,1.000000,1.000000,NULL),(9,3,1,5,1.000000,1.000000,1.000000,1.000000,NULL),(10,0,1,5,0.850000,0.850000,0.850000,0.850000,NULL),(10,1,1,5,0.850000,0.850000,0.850000,0.850000,NULL),(10,2,1,5,0.850000,0.850000,0.850000,0.850000,NULL),(10,3,1,5,0.850000,0.850000,0.850000,0.850000,NULL),(11,0,1,4,2.990000,2.990000,2.990000,2.990000,NULL),(11,1,1,4,2.990000,2.990000,2.990000,2.990000,NULL),(11,2,1,4,2.990000,2.990000,2.990000,2.990000,NULL),(11,3,1,4,2.990000,2.990000,2.990000,2.990000,NULL),(12,0,1,4,2.390000,2.390000,2.390000,2.390000,NULL),(12,1,1,4,2.390000,2.390000,2.390000,2.390000,NULL),(12,2,1,4,2.390000,2.390000,2.390000,2.390000,NULL),(12,3,1,4,2.390000,2.390000,2.390000,2.390000,NULL),(13,0,1,4,1.400000,1.400000,1.400000,1.400000,NULL),(13,1,1,4,1.400000,1.400000,1.400000,1.400000,NULL),(13,2,1,4,1.400000,1.400000,1.400000,1.400000,NULL),(13,3,1,4,1.400000,1.400000,1.400000,1.400000,NULL),(14,0,1,4,0.850000,0.850000,0.850000,0.850000,NULL),(14,1,1,4,0.850000,0.850000,0.850000,0.850000,NULL),(14,2,1,4,0.850000,0.850000,0.850000,0.850000,NULL),(14,3,1,4,0.850000,0.850000,0.850000,0.850000,NULL),(49,0,1,4,17.900000,17.900000,17.900000,17.900000,NULL),(49,1,1,4,17.900000,17.900000,17.900000,17.900000,NULL),(49,2,1,4,17.900000,17.900000,17.900000,17.900000,NULL),(49,3,1,4,17.900000,17.900000,17.900000,17.900000,NULL),(51,0,1,5,5.200000,5.200000,5.200000,5.200000,NULL),(51,1,1,5,5.200000,5.200000,5.200000,5.200000,NULL),(51,2,1,5,5.200000,5.200000,5.200000,5.200000,NULL),(51,3,1,5,5.200000,5.200000,5.200000,5.200000,NULL),(52,0,1,5,2.100000,2.100000,2.100000,2.100000,NULL),(52,1,1,5,2.100000,2.100000,2.100000,2.100000,NULL),(52,2,1,5,2.100000,2.100000,2.100000,2.100000,NULL),(52,3,1,5,2.100000,2.100000,2.100000,2.100000,NULL),(53,0,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(53,1,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(53,2,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(53,3,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(54,0,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(54,1,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(54,2,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(54,3,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(55,0,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(55,1,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(55,2,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(55,3,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(56,0,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(56,1,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(56,2,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(56,3,1,5,3.300000,3.300000,3.300000,3.300000,NULL),(57,0,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(57,1,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(57,2,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(57,3,1,5,4.500000,4.500000,4.500000,4.500000,NULL),(58,0,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(58,1,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(58,2,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(58,3,1,5,4.000000,4.000000,4.000000,4.000000,NULL),(59,0,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(59,1,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(59,2,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(59,3,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(60,0,1,4,9.900000,9.900000,9.900000,9.900000,NULL),(60,1,1,4,9.900000,9.900000,9.900000,9.900000,NULL),(60,2,1,4,9.900000,9.900000,9.900000,9.900000,NULL),(60,3,1,4,9.900000,9.900000,9.900000,9.900000,NULL),(61,0,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(61,1,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(61,2,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(61,3,1,5,3.900000,3.900000,3.900000,3.900000,NULL),(111,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(111,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(111,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(111,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(112,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(112,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(112,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(112,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(113,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(113,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(113,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(113,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(114,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(114,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(114,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(114,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(115,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(115,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(115,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(115,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(116,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(116,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(116,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(116,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(117,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(117,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(117,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(117,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(118,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(118,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(118,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(118,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(119,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(119,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(119,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(119,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(120,0,1,4,2.700000,2.700000,2.700000,2.700000,NULL),(120,1,1,4,2.700000,2.700000,2.700000,2.700000,NULL),(120,2,1,4,2.700000,2.700000,2.700000,2.700000,NULL),(120,3,1,4,2.700000,2.700000,2.700000,2.700000,NULL),(121,0,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(121,1,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(121,2,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(121,3,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(122,0,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(122,1,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(122,2,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(122,3,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(123,0,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(123,1,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(123,2,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(123,3,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(124,0,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(124,1,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(124,2,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(124,3,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(125,0,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(125,1,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(125,2,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(125,3,1,2,4.750000,4.750000,4.750000,4.750000,NULL),(126,0,1,2,4.950000,4.950000,4.950000,4.950000,NULL),(126,1,1,2,4.950000,4.950000,4.950000,4.950000,NULL),(126,2,1,2,4.950000,4.950000,4.950000,4.950000,NULL),(126,3,1,2,4.950000,4.950000,4.950000,4.950000,NULL),(127,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(127,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(127,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(127,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(128,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(128,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(128,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(128,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(129,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(129,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(129,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(129,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(130,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(130,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(130,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(130,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(131,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(131,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(131,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(131,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(132,0,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(132,1,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(132,2,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(132,3,1,4,3.500000,3.500000,3.500000,3.500000,NULL),(133,0,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(133,1,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(133,2,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(133,3,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(134,0,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(134,1,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(134,2,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(134,3,1,4,0.600000,0.600000,0.600000,0.600000,NULL),(138,0,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(138,1,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(138,2,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(138,3,1,4,4.600000,4.600000,4.600000,4.600000,NULL),(173,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(173,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(173,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(173,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(174,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(174,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(174,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(174,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(175,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(175,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(175,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(175,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(176,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(176,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(176,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(176,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(177,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(177,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(177,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(177,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(178,0,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(178,1,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(178,2,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(178,3,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(179,0,1,4,4.000000,4.000000,4.000000,4.000000,NULL),(179,1,1,4,4.000000,4.000000,4.000000,4.000000,NULL),(179,2,1,4,4.000000,4.000000,4.000000,4.000000,NULL),(179,3,1,4,4.000000,4.000000,4.000000,4.000000,NULL),(180,0,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(180,1,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(180,2,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(180,3,1,4,5.100000,5.100000,5.100000,5.100000,NULL),(181,0,1,4,4.900000,4.900000,4.900000,4.900000,NULL),(181,1,1,4,4.900000,4.900000,4.900000,4.900000,NULL),(181,2,1,4,4.900000,4.900000,4.900000,4.900000,NULL),(181,3,1,4,4.900000,4.900000,4.900000,4.900000,NULL),(182,0,1,4,5.400000,5.400000,5.400000,5.400000,NULL),(182,1,1,4,5.400000,5.400000,5.400000,5.400000,NULL),(182,2,1,4,5.400000,5.400000,5.400000,5.400000,NULL),(182,3,1,4,5.400000,5.400000,5.400000,5.400000,NULL),(183,0,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(183,1,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(183,2,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(183,3,1,4,7.500000,7.500000,7.500000,7.500000,NULL),(194,0,1,2,13.500000,13.500000,13.500000,13.500000,NULL),(194,1,1,2,13.500000,13.500000,13.500000,13.500000,NULL),(194,2,1,2,13.500000,13.500000,13.500000,13.500000,NULL),(194,3,1,2,13.500000,13.500000,13.500000,13.500000,NULL),(195,0,1,2,18.500000,18.500000,18.500000,18.500000,NULL),(195,1,1,2,18.500000,18.500000,18.500000,18.500000,NULL),(195,2,1,2,18.500000,18.500000,18.500000,18.500000,NULL),(195,3,1,2,18.500000,18.500000,18.500000,18.500000,NULL);
/*!40000 ALTER TABLE `catalog_product_index_price_replica` 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 'Product ID',
  `customer_group_id` int(10) unsigned NOT NULL DEFAULT 0 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(20,6) DEFAULT NULL COMMENT 'Price',
  `final_price` decimal(20,6) DEFAULT NULL COMMENT 'Final Price',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  `max_price` decimal(20,6) DEFAULT NULL COMMENT 'Max Price',
  `tier_price` decimal(20,6) DEFAULT NULL COMMENT 'Tier Price',
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  PRIMARY KEY (`id`)
) 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` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `min_price` decimal(20,6) DEFAULT NULL COMMENT 'Min Price',
  PRIMARY KEY (`entity_id`,`customer_group_id`,`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_TIER_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOG_PRODUCT_INDEX_TIER_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `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,
  CONSTRAINT `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,
  CONSTRAINT `CAT_PRD_IDX_TIER_PRICE_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE 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',
  `default_store_id` smallint(5) unsigned NOT NULL COMMENT 'Default store ID for website',
  `website_date` date DEFAULT NULL COMMENT 'Website Date',
  `rate` float DEFAULT 1 COMMENT 'Rate',
  PRIMARY KEY (`website_id`),
  KEY `CATALOG_PRODUCT_INDEX_WEBSITE_WEBSITE_DATE` (`website_date`),
  CONSTRAINT `CAT_PRD_IDX_WS_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE 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,1,'2022-09-16',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 `CATALOG_PRODUCT_LINK_LINK_TYPE_ID_PRODUCT_ID_LINKED_PRODUCT_ID` (`link_type_id`,`product_id`,`linked_product_id`),
  KEY `CATALOG_PRODUCT_LINK_PRODUCT_ID` (`product_id`),
  KEY `CATALOG_PRODUCT_LINK_LINKED_PRODUCT_ID` (`linked_product_id`),
  CONSTRAINT `CATALOG_PRODUCT_LINK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `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,
  CONSTRAINT `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
) 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) DEFAULT NULL COMMENT 'Product Link Attribute Code',
  `data_type` varchar(32) DEFAULT NULL COMMENT 'Data Type',
  PRIMARY KEY (`product_link_attribute_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_LINK_TYPE_ID` (`link_type_id`),
  CONSTRAINT `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
) 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,4,'position','int'),(3,5,'position','int'),(4,3,'position','int'),(5,3,'qty','decimal');
/*!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(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CAT_PRD_LNK_ATTR_DEC_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_DECIMAL_LINK_ID` (`link_id`),
  CONSTRAINT `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,
  CONSTRAINT `FK_AB2EFA9A14F7BCF1D5400056203D14B6` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE 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 `CAT_PRD_LNK_ATTR_INT_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_INT_LINK_ID` (`link_id`),
  CONSTRAINT `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,
  CONSTRAINT `FK_D6D878F8BA2A4282F8DDED7E6E3DE35C` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE 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 `CAT_PRD_LNK_ATTR_VCHR_PRD_LNK_ATTR_ID_LNK_ID` (`product_link_attribute_id`,`link_id`),
  KEY `CATALOG_PRODUCT_LINK_ATTRIBUTE_VARCHAR_LINK_ID` (`link_id`),
  CONSTRAINT `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,
  CONSTRAINT `FK_DEE9C4DA61CFCC01DFCF50F0D79CEA51` FOREIGN KEY (`product_link_attribute_id`) REFERENCES `catalog_product_link_attribute` (`product_link_attribute_id`) ON DELETE 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) DEFAULT NULL 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) DEFAULT NULL COMMENT 'Type',
  `is_require` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Is Required',
  `sku` varchar(64) DEFAULT NULL COMMENT 'SKU',
  `max_characters` int(10) unsigned DEFAULT NULL COMMENT 'Max Characters',
  `file_extension` varchar(50) DEFAULT NULL COMMENT 'File Extension',
  `image_size_x` smallint(5) unsigned DEFAULT NULL COMMENT 'Image Size X',
  `image_size_y` smallint(5) unsigned DEFAULT NULL COMMENT 'Image Size Y',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`option_id`),
  KEY `CATALOG_PRODUCT_OPTION_PRODUCT_ID` (`product_id`),
  CONSTRAINT `CAT_PRD_OPT_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB 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 */;
/*!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(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Price',
  `price_type` varchar(7) NOT NULL DEFAULT 'fixed' COMMENT 'Price Type',
  PRIMARY KEY (`option_price_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_PRICE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_OPT_PRICE_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE 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) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`option_title_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_TITLE_OPTION_ID_STORE_ID` (`option_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_OPT_TTL_OPT_ID_CAT_PRD_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `catalog_product_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB 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 */;
/*!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(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Price',
  `price_type` varchar(7) NOT NULL DEFAULT 'fixed' COMMENT 'Price Type',
  PRIMARY KEY (`option_type_price_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_TYPE_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_B523E3378E8602F376CC415825576B7F` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB 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 */;
/*!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) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`option_type_title_id`),
  UNIQUE KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_OPTION_TYPE_ID_STORE_ID` (`option_type_id`,`store_id`),
  KEY `CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_OPTION_TYPE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_C085B9CF2C2A302E8043FDEA1937D6A2` FOREIGN KEY (`option_type_id`) REFERENCES `catalog_product_option_type_value` (`option_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB 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 */;
/*!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 `CATALOG_PRODUCT_OPTION_TYPE_VALUE_OPTION_ID` (`option_id`),
  CONSTRAINT `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
) ENGINE=InnoDB 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 */;
/*!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 `CATALOG_PRODUCT_RELATION_CHILD_ID` (`child_id`),
  CONSTRAINT `CAT_PRD_RELATION_CHILD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`child_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_RELATION_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE 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 `CATALOG_PRODUCT_SUPER_ATTRIBUTE_PRODUCT_ID_ATTRIBUTE_ID` (`product_id`,`attribute_id`),
  CONSTRAINT `CAT_PRD_SPR_ATTR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) 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 `CAT_PRD_SPR_ATTR_LBL_PRD_SPR_ATTR_ID_STORE_ID` (`product_super_attribute_id`,`store_id`),
  KEY `CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `CATALOG_PRODUCT_SUPER_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_309442281DF7784210ED82B2CC51E5D5` FOREIGN KEY (`product_super_attribute_id`) REFERENCES `catalog_product_super_attribute` (`product_super_attribute_id`) ON DELETE 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_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 `CATALOG_PRODUCT_SUPER_LINK_PRODUCT_ID_PARENT_ID` (`product_id`,`parent_id`),
  KEY `CATALOG_PRODUCT_SUPER_LINK_PARENT_ID` (`parent_id`),
  CONSTRAINT `CAT_PRD_SPR_LNK_PARENT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`parent_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_SPR_LNK_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE 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 `CATALOG_PRODUCT_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CATALOG_PRODUCT_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_PRD_WS_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE 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),(7,1),(8,1),(9,1),(10,1),(11,1),(12,1),(13,1),(14,1),(49,1),(51,1),(52,1),(53,1),(54,1),(55,1),(56,1),(57,1),(58,1),(59,1),(60,1),(61,1),(111,1),(112,1),(113,1),(114,1),(115,1),(116,1),(117,1),(118,1),(119,1),(120,1),(121,1),(122,1),(123,1),(124,1),(125,1),(126,1),(127,1),(128,1),(129,1),(130,1),(131,1),(132,1),(133,1),(134,1),(138,1),(173,1),(174,1),(175,1),(176,1),(177,1),(178,1),(179,1),(180,1),(181,1),(182,1),(183,1),(194,1),(195,1),(196,1),(197,1),(198,1),(199,1),(200,1);
/*!40000 ALTER TABLE `catalog_product_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `catalog_url_rewrite_product_category`
--

DROP TABLE IF EXISTS `catalog_url_rewrite_product_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_url_rewrite_product_category` (
  `url_rewrite_id` int(10) unsigned NOT NULL COMMENT 'url_rewrite_id',
  `category_id` int(10) unsigned NOT NULL COMMENT 'category_id',
  `product_id` int(10) unsigned NOT NULL COMMENT 'product_id',
  PRIMARY KEY (`url_rewrite_id`),
  KEY `CAT_URL_REWRITE_PRD_CTGR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` (`product_id`),
  KEY `CATALOG_URL_REWRITE_PRODUCT_CATEGORY_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`),
  CONSTRAINT `CAT_URL_REWRITE_PRD_CTGR_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CAT_URL_REWRITE_PRD_CTGR_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_BB79E64705D7F17FE181F23144528FC8` FOREIGN KEY (`url_rewrite_id`) REFERENCES `url_rewrite` (`url_rewrite_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='url_rewrite_relation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalog_url_rewrite_product_category`
--

LOCK TABLES `catalog_url_rewrite_product_category` WRITE;
/*!40000 ALTER TABLE `catalog_url_rewrite_product_category` DISABLE KEYS */;
INSERT INTO `catalog_url_rewrite_product_category` VALUES (1171,3,1),(86,3,2),(95,3,4),(307,3,6),(312,3,7),(114,3,8),(316,3,9),(322,3,10),(328,3,11),(334,3,12),(340,3,13),(346,3,14),(376,3,49),(386,3,51),(390,3,52),(394,3,53),(400,3,54),(406,3,55),(412,3,56),(418,3,57),(424,3,58),(430,3,59),(436,3,60),(442,3,61),(742,3,111),(748,3,112),(754,3,113),(760,3,114),(766,3,115),(772,3,116),(778,3,117),(784,3,118),(790,3,119),(796,3,120),(802,3,121),(808,3,122),(814,3,123),(820,3,124),(827,3,125),(834,3,126),(841,3,127),(847,3,128),(853,3,129),(859,3,130),(865,3,131),(871,3,132),(877,3,133),(884,3,134),(1047,3,173),(1051,3,174),(1055,3,175),(1059,3,176),(1063,3,177),(1067,3,178),(1071,3,179),(1075,3,180),(1079,3,181),(1083,3,182),(1087,3,183),(1131,3,194),(1137,3,195),(1177,3,196),(1183,3,197),(1195,3,198),(1198,3,199),(1201,3,200),(377,11,49),(387,11,51),(391,11,52),(395,11,53),(401,11,54),(407,11,55),(413,11,56),(419,11,57),(425,11,58),(431,11,59),(437,11,60),(443,11,61),(378,12,49),(388,12,51),(392,12,52),(396,12,53),(402,12,54),(408,12,55),(414,12,56),(420,12,57),(426,12,58),(432,12,59),(438,12,60),(444,12,61),(94,17,4),(1048,27,173),(1052,27,174),(1056,27,175),(1060,27,176),(1064,27,177),(1068,27,178),(1072,27,179),(1076,27,180),(1080,27,181),(1084,27,182),(1088,27,183),(1053,28,174),(1057,28,175),(1061,28,176),(1065,28,177),(1069,28,178),(1073,28,179),(1077,28,180),(1081,28,181),(1089,28,183),(1049,29,173),(1085,29,182),(329,34,11),(335,34,12),(842,34,127),(848,34,128),(854,34,129),(860,34,130),(866,34,131),(872,34,132),(330,35,11),(336,35,12),(843,36,127),(849,36,128),(855,36,129),(861,36,130),(867,36,131),(873,36,132),(310,37,7),(317,37,9),(323,37,10),(341,37,13),(347,37,14),(743,37,111),(749,37,112),(755,37,113),(761,37,114),(767,37,115),(773,37,116),(779,37,117),(785,37,118),(791,37,119),(797,37,120),(803,37,121),(809,37,122),(815,37,123),(821,37,124),(828,37,125),(835,37,126),(878,37,133),(885,37,134),(1178,37,196),(1184,37,197),(744,38,111),(750,38,112),(756,38,113),(762,38,114),(768,38,115),(774,38,116),(780,38,117),(786,38,118),(792,38,119),(798,38,120),(804,38,121),(810,38,122),(816,38,123),(1179,38,196),(1185,38,197),(313,40,7),(318,40,9),(324,40,10),(342,40,13),(348,40,14),(85,45,2),(305,45,6),(1132,45,194),(1138,45,195),(1133,46,194),(1139,48,195),(824,50,124),(831,50,125),(838,50,126),(881,50,133),(888,50,134),(822,55,124),(829,55,125),(836,55,126),(879,55,133),(886,55,134),(308,59,6),(314,59,7),(320,59,9),(326,59,10),(332,59,11),(338,59,12),(344,59,13),(350,59,14),(398,59,53),(404,59,54),(410,59,55),(416,59,56),(422,59,57),(428,59,58),(434,59,59),(440,59,60),(446,59,61),(746,59,111),(752,59,112),(758,59,113),(764,59,114),(770,59,115),(776,59,116),(782,59,117),(788,59,118),(794,59,119),(800,59,120),(806,59,121),(812,59,122),(818,59,123),(825,59,124),(832,59,125),(839,59,126),(845,59,127),(851,59,128),(857,59,129),(863,59,130),(869,59,131),(875,59,132),(882,59,133),(889,59,134),(1135,59,194),(1141,59,195),(1181,59,196),(1187,59,197),(439,60,60),(306,61,6),(311,61,7),(319,61,9),(325,61,10),(331,61,11),(337,61,12),(343,61,13),(349,61,14),(409,62,55),(445,62,61),(397,63,53),(427,63,58),(403,65,54),(421,65,57),(1134,65,194),(1140,65,195),(745,68,111),(751,68,112),(757,68,113),(763,68,114),(769,68,115),(775,68,116),(781,68,117),(787,68,118),(793,68,119),(799,68,120),(805,68,121),(811,68,122),(817,68,123),(823,68,124),(830,68,125),(837,68,126),(844,68,127),(850,68,128),(856,68,129),(862,68,130),(868,68,131),(874,68,132),(880,68,133),(887,68,134),(1180,68,196),(1186,68,197),(415,69,56),(433,69,59),(102,74,5),(115,74,8),(1196,74,198),(1199,74,199),(1175,80,1),(1172,81,1),(1173,84,1),(1174,85,1);
/*!40000 ALTER TABLE `catalog_url_rewrite_product_category` 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',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `stock_name` varchar(255) DEFAULT NULL COMMENT 'Stock Name',
  PRIMARY KEY (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_WEBSITE_ID` (`website_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,0,'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) DEFAULT NULL COMMENT 'Qty',
  `min_qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Min Qty',
  `use_config_min_qty` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Min Qty',
  `is_qty_decimal` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Qty Decimal',
  `backorders` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Backorders',
  `use_config_backorders` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Backorders',
  `min_sale_qty` decimal(12,4) NOT NULL DEFAULT 1.0000 COMMENT 'Min Sale Qty',
  `use_config_min_sale_qty` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Min Sale Qty',
  `max_sale_qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Max Sale Qty',
  `use_config_max_sale_qty` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Max Sale Qty',
  `is_in_stock` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is In Stock',
  `low_stock_date` timestamp NULL DEFAULT NULL COMMENT 'Low Stock Date',
  `notify_stock_qty` decimal(12,4) DEFAULT NULL COMMENT 'Notify Stock Qty',
  `use_config_notify_stock_qty` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Notify Stock Qty',
  `manage_stock` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Manage Stock',
  `use_config_manage_stock` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Manage Stock',
  `stock_status_changed_auto` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Stock Status Changed Automatically',
  `use_config_qty_increments` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Qty Increments',
  `qty_increments` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty Increments',
  `use_config_enable_qty_inc` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Use Config Enable Qty Increments',
  `enable_qty_increments` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Enable Qty Increments',
  `is_decimal_divided` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Divided into Multiple Boxes for Shipping',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  PRIMARY KEY (`item_id`),
  UNIQUE KEY `CATALOGINVENTORY_STOCK_ITEM_PRODUCT_ID_STOCK_ID` (`product_id`,`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_ITEM_WEBSITE_ID` (`website_id`),
  KEY `CATALOGINVENTORY_STOCK_ITEM_WEBSITE_ID_PRODUCT_ID` (`website_id`,`product_id`),
  KEY `CATALOGINVENTORY_STOCK_ITEM_STOCK_ID` (`stock_id`),
  CONSTRAINT `CATINV_STOCK_ITEM_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `CATINV_STOCK_ITEM_STOCK_ID_CATINV_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `cataloginventory_stock` (`stock_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=200 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,1000.0000,0.0000,1,0,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(2,2,1,9.0000,0.0000,1,1,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(3,3,1,10.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(4,4,1,4.0000,0.0000,1,1,0,1,1.0000,1,10000.0000,1,1,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(5,5,1,10.0000,0.0000,1,1,0,1,1.0000,1,10000.0000,1,0,NULL,1.0000,1,1,1,0,1,1.0000,1,0,0,0),(6,6,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(7,7,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:57:57',NULL,1,0,1,1,1,0.0000,1,0,0,0),(8,8,1,14.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,1,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(9,9,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:58:20',NULL,1,0,1,1,1,0.0000,1,0,0,0),(10,10,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:58:40',NULL,1,0,1,1,1,0.0000,1,0,0,0),(11,11,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:59:00',NULL,1,0,1,1,1,0.0000,1,0,0,0),(12,12,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:59:25',NULL,1,0,1,1,1,0.0000,1,0,0,0),(13,13,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:59:43',NULL,1,0,1,1,1,0.0000,1,0,0,0),(14,14,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:59:59',NULL,1,0,1,1,1,0.0000,1,0,0,0),(48,49,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(50,51,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(51,52,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(52,53,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(53,54,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(54,55,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(55,56,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(56,57,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(57,58,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(58,59,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(59,60,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(60,61,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(110,111,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:33:29',NULL,1,0,1,1,1,0.0000,1,0,0,0),(111,112,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:43:56',NULL,1,0,1,1,1,0.0000,1,0,0,0),(112,113,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:44:15',NULL,1,0,1,1,1,0.0000,1,0,0,0),(113,114,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:42:52',NULL,1,0,1,1,1,0.0000,1,0,0,0),(114,115,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:43:39',NULL,1,0,1,1,1,0.0000,1,0,0,0),(115,116,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:41:55',NULL,1,0,1,1,1,0.0000,1,0,0,0),(116,117,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:42:30',NULL,1,0,1,1,1,0.0000,1,0,0,0),(117,118,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:40:25',NULL,1,0,1,1,1,0.0000,1,0,0,0),(118,119,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:40:06',NULL,1,0,1,1,1,0.0000,1,0,0,0),(119,120,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:41:04',NULL,1,0,1,1,1,0.0000,1,0,0,0),(120,121,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:37:32',NULL,1,0,1,1,1,0.0000,1,0,0,0),(121,122,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(122,123,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:47:50',NULL,1,0,1,1,1,0.0000,1,0,0,0),(123,124,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 13:22:03',NULL,1,0,1,1,1,0.0000,1,0,0,0),(124,125,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:47:21',NULL,1,0,1,1,1,0.0000,1,0,0,0),(125,126,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:47:30',NULL,1,0,1,1,1,0.0000,1,0,0,0),(126,127,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:39:24',NULL,1,0,1,1,1,0.0000,1,0,0,0),(127,128,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:39:11',NULL,1,0,1,1,1,0.0000,1,0,0,0),(128,129,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:38:16',NULL,1,0,1,1,1,0.0000,1,0,0,0),(129,130,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:38:35',NULL,1,0,1,1,1,0.0000,1,0,0,0),(130,131,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:46:25',NULL,1,0,1,1,1,0.0000,1,0,0,0),(131,132,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:46:11',NULL,1,0,1,1,1,0.0000,1,0,0,0),(132,133,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(133,134,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:37:51',NULL,1,0,1,1,1,0.0000,1,0,0,0),(137,138,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 09:36:09',NULL,1,0,1,1,1,0.0000,1,0,0,0),(172,173,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(173,174,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(174,175,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(175,176,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 10:01:04',NULL,1,0,1,1,1,0.0000,1,0,0,0),(176,177,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(177,178,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 10:01:32',NULL,1,0,1,1,1,0.0000,1,0,0,0),(178,179,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 10:00:26',NULL,1,0,1,1,1,0.0000,1,0,0,0),(179,180,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 10:01:21',NULL,1,0,1,1,1,0.0000,1,0,0,0),(180,181,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 10:01:46',NULL,1,0,1,1,1,0.0000,1,0,0,0),(181,182,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(182,183,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(193,194,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(194,195,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(195,196,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(196,197,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,NULL,NULL,1,0,1,0,1,0.0000,1,0,0,0),(197,198,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 13:44:09',NULL,1,0,1,1,1,0.0000,1,0,0,0),(198,199,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 13:49:55',NULL,1,0,1,1,1,0.0000,1,0,0,0),(199,200,1,0.0000,0.0000,1,1,0,1,1.0000,1,0.0000,1,0,'2022-09-16 13:59:04',NULL,1,0,1,1,1,0.0000,1,0,0,0);
/*!40000 ALTER TABLE `cataloginventory_stock_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock_status`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status`;
/*!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 `CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`)
) 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,0,1,1000.0000,1),(2,0,1,9.0000,1),(3,0,1,10.0000,1),(4,0,1,4.0000,1),(5,0,1,10.0000,0),(6,0,1,0.0000,0),(7,0,1,0.0000,0),(8,0,1,14.0000,1),(9,0,1,0.0000,0),(10,0,1,0.0000,0),(11,0,1,0.0000,0),(12,0,1,0.0000,0),(13,0,1,0.0000,0),(14,0,1,0.0000,0),(49,0,1,0.0000,0),(51,0,1,0.0000,0),(52,0,1,0.0000,0),(53,0,1,0.0000,0),(54,0,1,0.0000,0),(55,0,1,0.0000,0),(56,0,1,0.0000,0),(57,0,1,0.0000,0),(58,0,1,0.0000,0),(59,0,1,0.0000,0),(60,0,1,0.0000,0),(61,0,1,0.0000,0),(111,0,1,0.0000,0),(112,0,1,0.0000,0),(113,0,1,0.0000,0),(114,0,1,0.0000,0),(115,0,1,0.0000,0),(116,0,1,0.0000,0),(117,0,1,0.0000,0),(118,0,1,0.0000,0),(119,0,1,0.0000,0),(120,0,1,0.0000,0),(121,0,1,0.0000,0),(122,0,1,0.0000,0),(123,0,1,0.0000,0),(124,0,1,0.0000,1),(125,0,1,0.0000,0),(126,0,1,0.0000,0),(127,0,1,0.0000,0),(128,0,1,0.0000,0),(129,0,1,0.0000,0),(130,0,1,0.0000,0),(131,0,1,0.0000,0),(132,0,1,0.0000,0),(133,0,1,0.0000,0),(134,0,1,0.0000,0),(138,0,1,0.0000,0),(173,0,1,0.0000,0),(174,0,1,0.0000,0),(175,0,1,0.0000,0),(176,0,1,0.0000,0),(177,0,1,0.0000,0),(178,0,1,0.0000,0),(179,0,1,0.0000,0),(180,0,1,0.0000,0),(181,0,1,0.0000,0),(182,0,1,0.0000,0),(183,0,1,0.0000,0),(194,0,1,0.0000,0),(195,0,1,0.0000,0),(196,0,1,0.0000,1),(197,0,1,0.0000,1),(198,0,1,0.0000,1),(199,0,1,0.0000,1),(200,0,1,0.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 `CATALOGINVENTORY_STOCK_STATUS_IDX_STOCK_ID` (`stock_id`),
  KEY `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 */;
/*!40000 ALTER TABLE `cataloginventory_stock_status_idx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cataloginventory_stock_status_replica`
--

DROP TABLE IF EXISTS `cataloginventory_stock_status_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cataloginventory_stock_status_replica` (
  `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 `CATALOGINVENTORY_STOCK_STATUS_STOCK_ID` (`stock_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_WEBSITE_ID` (`website_id`),
  KEY `CATALOGINVENTORY_STOCK_STATUS_STOCK_STATUS` (`stock_status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Cataloginventory Stock Status';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cataloginventory_stock_status_replica`
--

LOCK TABLES `cataloginventory_stock_status_replica` WRITE;
/*!40000 ALTER TABLE `cataloginventory_stock_status_replica` DISABLE KEYS */;
INSERT INTO `cataloginventory_stock_status_replica` VALUES (1,0,1,1000.0000,1),(2,0,1,9.0000,1),(3,0,1,10.0000,1),(4,0,1,4.0000,1),(5,0,1,10.0000,0),(6,0,1,0.0000,0),(7,0,1,0.0000,1),(8,0,1,14.0000,1),(9,0,1,0.0000,1),(10,0,1,0.0000,1),(11,0,1,0.0000,1),(12,0,1,0.0000,1),(13,0,1,0.0000,1),(14,0,1,0.0000,1),(32,0,1,0.0000,0),(33,0,1,0.0000,0),(34,0,1,0.0000,0),(35,0,1,0.0000,0),(36,0,1,0.0000,0),(37,0,1,0.0000,0),(38,0,1,0.0000,0),(39,0,1,0.0000,0),(40,0,1,0.0000,0),(41,0,1,0.0000,0),(42,0,1,0.0000,0),(45,0,1,0.0000,1),(46,0,1,0.0000,0),(47,0,1,0.0000,1),(48,0,1,0.0000,1),(49,0,1,0.0000,1),(50,0,1,0.0000,1),(51,0,1,0.0000,1),(52,0,1,0.0000,1),(53,0,1,0.0000,1),(54,0,1,0.0000,1),(55,0,1,0.0000,1),(56,0,1,0.0000,1),(57,0,1,0.0000,1),(58,0,1,0.0000,1),(59,0,1,0.0000,1),(60,0,1,0.0000,1),(61,0,1,0.0000,1),(62,0,1,0.0000,1),(99,0,1,0.0000,1),(111,0,1,0.0000,1),(112,0,1,0.0000,1),(113,0,1,0.0000,1),(114,0,1,0.0000,1),(115,0,1,0.0000,1),(116,0,1,0.0000,1),(117,0,1,0.0000,1),(118,0,1,0.0000,1),(119,0,1,0.0000,1),(120,0,1,0.0000,1),(121,0,1,0.0000,1),(122,0,1,0.0000,1),(123,0,1,0.0000,1),(124,0,1,0.0000,1),(125,0,1,0.0000,1),(126,0,1,0.0000,1),(127,0,1,0.0000,1),(128,0,1,0.0000,1),(129,0,1,0.0000,1),(130,0,1,0.0000,1),(131,0,1,0.0000,1),(132,0,1,0.0000,1),(133,0,1,0.0000,1),(134,0,1,0.0000,1),(135,0,1,0.0000,1),(138,0,1,0.0000,0),(141,0,1,0.0000,1),(142,0,1,0.0000,1),(143,0,1,0.0000,1),(144,0,1,0.0000,1),(145,0,1,0.0000,1),(146,0,1,0.0000,1),(147,0,1,0.0000,1),(148,0,1,0.0000,1),(149,0,1,0.0000,1),(150,0,1,0.0000,1),(173,0,1,0.0000,1),(174,0,1,0.0000,1),(175,0,1,0.0000,1),(176,0,1,0.0000,1),(177,0,1,0.0000,1),(178,0,1,0.0000,1),(179,0,1,0.0000,1),(180,0,1,0.0000,1),(181,0,1,0.0000,1),(182,0,1,0.0000,1),(183,0,1,0.0000,1),(194,0,1,0.0000,1),(195,0,1,0.0000,1);
/*!40000 ALTER TABLE `cataloginventory_stock_status_replica` 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 `CATALOGINVENTORY_STOCK_STATUS_TMP_STOCK_ID` (`stock_id`),
  KEY `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 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text DEFAULT NULL COMMENT 'Description',
  `from_date` date DEFAULT NULL COMMENT 'From',
  `to_date` date DEFAULT NULL COMMENT 'To',
  `is_active` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Is Active',
  `conditions_serialized` mediumtext DEFAULT NULL COMMENT 'Conditions Serialized',
  `actions_serialized` mediumtext DEFAULT NULL 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(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Discount Amount',
  PRIMARY KEY (`rule_id`),
  KEY `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_customer_group`
--

DROP TABLE IF EXISTS `catalogrule_customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_customer_group` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  PRIMARY KEY (`rule_id`,`customer_group_id`),
  KEY `CATALOGRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `CATALOGRULE_CUSTOMER_GROUP_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `CATRULE_CSTR_GROUP_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Rules To Customer Groups Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_customer_group`
--

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

--
-- Table structure for table `catalogrule_group_website`
--

DROP TABLE IF EXISTS `catalogrule_group_website`;
/*!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` int(10) 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 `CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`)
) 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_group_website_replica`
--

DROP TABLE IF EXISTS `catalogrule_group_website_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_group_website_replica` (
  `rule_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Rule ID',
  `customer_group_id` int(10) 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 `CATALOGRULE_GROUP_WEBSITE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_GROUP_WEBSITE_WEBSITE_ID` (`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Group Website';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_group_website_replica`
--

LOCK TABLES `catalogrule_group_website_replica` WRITE;
/*!40000 ALTER TABLE `catalogrule_group_website_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogrule_group_website_replica` 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` int(11) DEFAULT NULL,
  `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(20,6) NOT NULL DEFAULT 0.000000 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 `UNQ_EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  KEY `CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`),
  KEY `CATALOGRULE_PRODUCT_TO_TIME` (`to_time`),
  KEY `CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`)
) 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` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `rule_price` decimal(20,6) NOT NULL DEFAULT 0.000000 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 `CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`)
) 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 `catalogrule_product_price_replica`
--

DROP TABLE IF EXISTS `catalogrule_product_price_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_product_price_replica` (
  `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` int(11) DEFAULT NULL,
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `rule_price` decimal(20,6) NOT NULL DEFAULT 0.000000 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 `CATRULE_PRD_PRICE_RULE_DATE_WS_ID_CSTR_GROUP_ID_PRD_ID` (`rule_date`,`website_id`,`customer_group_id`,`product_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_PRICE_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_product_price_replica`
--

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

--
-- Table structure for table `catalogrule_product_replica`
--

DROP TABLE IF EXISTS `catalogrule_product_replica`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_product_replica` (
  `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` int(11) DEFAULT NULL,
  `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(20,6) NOT NULL DEFAULT 0.000000 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 `UNQ_EAA51B56FF092A0DCB795D1CEF812B7B` (`rule_id`,`from_time`,`to_time`,`website_id`,`customer_group_id`,`product_id`,`sort_order`),
  KEY `CATALOGRULE_PRODUCT_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `CATALOGRULE_PRODUCT_WEBSITE_ID` (`website_id`),
  KEY `CATALOGRULE_PRODUCT_FROM_TIME` (`from_time`),
  KEY `CATALOGRULE_PRODUCT_TO_TIME` (`to_time`),
  KEY `CATALOGRULE_PRODUCT_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CatalogRule Product';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_product_replica`
--

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

--
-- Table structure for table `catalogrule_website`
--

DROP TABLE IF EXISTS `catalogrule_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogrule_website` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`rule_id`,`website_id`),
  KEY `CATALOGRULE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CATALOGRULE_WEBSITE_RULE_ID_CATALOGRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `catalogrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOGRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Catalog Rules To Websites Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogrule_website`
--

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

--
-- Table structure for table `catalogsearch_recommendations`
--

DROP TABLE IF EXISTS `catalogsearch_recommendations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalogsearch_recommendations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `query_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Query ID',
  `relation_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Relation ID',
  PRIMARY KEY (`id`),
  KEY `CATALOGSEARCH_RECOMMENDATIONS_QUERY_ID_SEARCH_QUERY_QUERY_ID` (`query_id`),
  KEY `CATALOGSEARCH_RECOMMENDATIONS_RELATION_ID_SEARCH_QUERY_QUERY_ID` (`relation_id`),
  CONSTRAINT `CATALOGSEARCH_RECOMMENDATIONS_QUERY_ID_SEARCH_QUERY_QUERY_ID` FOREIGN KEY (`query_id`) REFERENCES `search_query` (`query_id`) ON DELETE CASCADE,
  CONSTRAINT `CATALOGSEARCH_RECOMMENDATIONS_RELATION_ID_SEARCH_QUERY_QUERY_ID` FOREIGN KEY (`relation_id`) REFERENCES `search_query` (`query_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Advanced Search Recommendations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `catalogsearch_recommendations`
--

LOCK TABLES `catalogsearch_recommendations` WRITE;
/*!40000 ALTER TABLE `catalogsearch_recommendations` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalogsearch_recommendations` 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 DEFAULT NULL COMMENT 'Content',
  `content_height` varchar(25) DEFAULT NULL COMMENT 'Content Height',
  `checkbox_text` text DEFAULT NULL 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',
  `mode` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Applied mode',
  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 `CHECKOUT_AGREEMENT_STORE_STORE_ID_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CHECKOUT_AGREEMENT_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `CHKT_AGRT_STORE_AGRT_ID_CHKT_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `checkout_agreement` (`agreement_id`) ON DELETE 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 'Entity ID',
  `title` varchar(255) NOT NULL COMMENT 'Block Title',
  `identifier` varchar(255) NOT NULL COMMENT 'Block String Identifier',
  `content` mediumtext DEFAULT NULL COMMENT 'Block Content',
  `creation_time` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Block Creation Time',
  `update_time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Block Modification Time',
  `is_active` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Is Block Active',
  PRIMARY KEY (`block_id`),
  KEY `CMS_BLOCK_IDENTIFIER` (`identifier`),
  FULLTEXT KEY `CMS_BLOCK_TITLE_IDENTIFIER_CONTENT` (`title`,`identifier`,`content`)
) 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,'Privacy FAQs','prgdpr_privacy_faqs','<div class=\"prgdpr__faq\">\n                <h2 class=\"prgdpr__title\">Privacy FAQs</h2>\n                <p class=\"prgdpr__descr\">Learn how our policies put transparency, simplicity, and control into action for you.</p>\n                <ul class=\"prgdpr-accordion\">\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">What information do you collect about me?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>Initially, we collect basic information from you to create your account, including your full name, email and password. We collect further data, such as address, and billing information or other information you provide when you checkout at our store. We also collect some information about users who visit our websites using cookies and similar technologies. See the Privacy Policy and/or Cookie Policy for the particular website(s) or service(s) you are using for more details about the specific types of information we may collect and your choices related to that data.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">How do you use information about me?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>We primarily use information about you to provide, personalize, improve, update and expand and improve our services to you. For example, we use information about you to create your account and deliver our products and services. We may also use your information to improve or develop new products and services, and for internal business purposes. We may also use personal information about you to verify your identity, communicate with you and to deliver advertisements, issuing surveys and questionnaires to collect additional user information for use in the services, marketing new products and offers from us or our business partners, detecting and protecting against error, fraud, or other criminal or malicious activity. See our Privacy Policy for more details.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">Do you share information about me?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>We do not share your personal information with third-parties without your additional consent other than as described in our Privacy Policy. Otherwise, we share information as described in our Privacy Policy, such as with our affiliated companies, our service providers, our advertising partners, and in other limited scenarios, such as in response to valid legal process or as appropriate to protect the rights, property, safety, confidentiality, or reputation of our company, our affiliates, and our users. You can read the Privacy Policy for the particular website(s) or service(s) you are using for more details about how we share your data and your choices related to that sharing.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">How can I review, update, or delete information about me?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>You can review, update, or delete most information about yourself through your account page on our website. If you have questions about how to review, update, or delete information, you should contact our Patch Protection Office or Customer Services team.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">What happens to my information if I delete my account?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>When you delete your account, we remove your information from our store (it may take up to 30 days to make sure everything is deleted). During that period, you won\'t be able to use your account. Our company also retains certain data to comply with local laws, such as sales receipts to comply with local tax laws.</p>\n                            <p>Please keep in mind that once your account has been deleted you won\'t be able to reactivate your account or retrieve anything you\'ve added, including:</p>\n                            <ul>\n                                <li>Your billing information</li>\n                                <li>Your orders, invoices, shipments</li>\n                                <li>Any history of interactions with our support</li>\n                                <li>Any content you have created associated with your store account</li>\n                                <li>You also will no longer be able to return any products or services and will lose any existing store rewards or credits</li>\n                            </ul>\n                            <p>If you decide that you no longer wish to delete your store account, you can cancel your deletion request within 24 hours of making the deletion request by login in to your account.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">What are you doing to protect my personal information?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>We work hard to protect our customers from unauthorized access, use and disclosure of information. We store and process the information we collect on computer systems with limited access, which are located in controlled facilities. Any sensitive information is protected through the use of best-practice physical, environmental and digital security systems.</p>\n                        </div>\n                    </li>\n                    <li class=\"prgdpr-accordion__item\">\n                        <input class=\"prgdpr-accordion__toggle\" checked=\"checked\" type=\"checkbox\" />\n                        <i class=\"prgdpr-accordion__btn\"></i>\n                        <b class=\"prgdpr__name prgdpr-accordion__name\">What can I do to protect my personal information?</b>\n                        <div class=\"prgdpr-accordion__descr\">\n                            <p>There are a number of measures that you can take to protect your personal information, including:</p>\n                            <ul>\n                                <li>Use strong passwords for all your online accounts</li>\n                                <li>Do keep passwords securely (never written down, or shared with anyone) and changed periodically</li>\n                                <li>Don\'t automatically trust every website or email which asks you to provide your personal information. Take time to check that the request is valid, and that the personal information requested is absolutely necessary for the services that you are looking to use</li>\n                            </ul>\n                        </div>\n                    </li>\n                </ul>\n            </div>\n            <div class=\"prgdpr__footer\">\n                <p class=\"prgdpr__footer-text-top\">Please contact our Patch Protection Officer with any questions or concerns via email at <a href=\"mailto:privacy@domain.com\">privacy@domain.com</a> or via postal mail at:</p>\n                <p class=\"prgdpr__address\">Patch Protection Officer<br /> Your Company<br /> 123 Street, Suite 444<br /> New York, NY 10001<br /> USA</p>\n            </div>','2022-08-11 08:56:22','2022-08-11 08:56:22',1),(2,'Icon baloon','icon-baloon','<style>#html-body [data-pb-style=F2DILFW],#html-body [data-pb-style=VBFK86D]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=F2DILFW]{justify-content:flex-start;display:flex;flex-direction:column}#html-body [data-pb-style=VBFK86D]{align-self:stretch}#html-body [data-pb-style=MOW61TB]{display:flex;width:100%}#html-body [data-pb-style=J16RN1J]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:100%;align-self:stretch}#html-body [data-pb-style=EISDJC2]{text-align:center}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"F2DILFW\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"VBFK86D\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"MOW61TB\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"J16RN1J\"><div class=\"icon-baloon\" data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"EISDJC2\">&lt;div class=\"rounded-circle bg-gray95\"&gt;\r\n&lt;i class=\"fas fa-rocket\"&gt;&lt;/i&gt;\r\n&lt;/div&gt;</div></div></div></div></div></div>','2022-08-26 12:36:15','2022-08-26 14:24:57',1),(3,'shop with us','shop-with-us','<style>#html-body [data-pb-style=H2BHB9S],#html-body [data-pb-style=RITB2PW]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=RITB2PW]{justify-content:flex-start;display:flex;flex-direction:column}#html-body [data-pb-style=H2BHB9S]{align-self:stretch}#html-body [data-pb-style=ISN3ODC]{display:flex;width:100%}#html-body [data-pb-style=ECS2MTV],#html-body [data-pb-style=O6PDDFJ]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;align-self:stretch}#html-body [data-pb-style=O6PDDFJ]{width:75%}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"RITB2PW\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"H2BHB9S\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"ISN3ODC\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"ECS2MTV\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\">&lt;div class=\"icon-baloon\"&gt;\r\n&lt;i class=\"fa fas-rocket\"&gt;&lt;/i&gt;\r\n&lt;/div&gt;</div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"O6PDDFJ\"><h5 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">CONSEGNA GRATIS</h5><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"SSVQO17\"><span style=\"color: #999999;\">Per ordini superiori ai 60 EurO</span></p></div></div></div></div></div></div>','2022-08-29 05:25:02','2022-08-29 05:25:02',1);
/*!40000 ALTER TABLE `cms_block` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_block_store`
--

DROP TABLE IF EXISTS `cms_block_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cms_block_store` (
  `block_id` smallint(6) NOT NULL,
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`block_id`,`store_id`),
  KEY `CMS_BLOCK_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CMS_BLOCK_STORE_BLOCK_ID_CMS_BLOCK_BLOCK_ID` FOREIGN KEY (`block_id`) REFERENCES `cms_block` (`block_id`) ON DELETE CASCADE,
  CONSTRAINT `CMS_BLOCK_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Block To Store Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_block_store`
--

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

--
-- Table structure for table `cms_page`
--

DROP TABLE IF EXISTS `cms_page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cms_page` (
  `page_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Page Title',
  `page_layout` varchar(255) DEFAULT NULL COMMENT 'Page Layout',
  `meta_keywords` text DEFAULT NULL COMMENT 'Page Meta Keywords',
  `meta_description` text DEFAULT NULL COMMENT 'Page Meta Description',
  `identifier` varchar(100) DEFAULT NULL COMMENT 'Page String Identifier',
  `content_heading` varchar(255) DEFAULT NULL COMMENT 'Page Content Heading',
  `content` mediumtext DEFAULT NULL COMMENT 'Page Content',
  `creation_time` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Page Creation Time',
  `update_time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Page Modification Time',
  `is_active` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Is Page Active',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Page Sort Order',
  `layout_update_xml` text DEFAULT NULL COMMENT 'Page Layout Update Content',
  `custom_theme` varchar(100) DEFAULT NULL COMMENT 'Page Custom Theme',
  `custom_root_template` varchar(255) DEFAULT NULL COMMENT 'Page Custom Template',
  `custom_layout_update_xml` text DEFAULT NULL COMMENT 'Page Custom Layout Update Content',
  `layout_update_selected` varchar(128) DEFAULT NULL COMMENT 'Page Custom Layout File',
  `custom_theme_from` date DEFAULT NULL COMMENT 'Page Custom Theme Active From Date',
  `custom_theme_to` date DEFAULT NULL COMMENT 'Page Custom Theme Active To Date',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Page Meta Title',
  PRIMARY KEY (`page_id`),
  KEY `CMS_PAGE_IDENTIFIER` (`identifier`),
  FULLTEXT KEY `CMS_PAGE_TITLE_META_KEYWORDS_META_DESCRIPTION_IDENTIFIER_CONTENT` (`title`,`meta_keywords`,`meta_description`,`identifier`,`content`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='CMS Page Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_page`
--

LOCK TABLES `cms_page` WRITE;
/*!40000 ALTER TABLE `cms_page` DISABLE KEYS */;
INSERT INTO `cms_page` VALUES (1,'404 Not Found','2columns-right','Page keywords','Page description','no-route','Whoops, our bad...','<dl>\r\n<dt>The page you requested was not found, and we have a fine guess why.</dt>\r\n<dd>\r\n<ul class=\"disc\">\r\n<li>If you typed the URL directly, please make sure the spelling is correct.</li>\r\n<li>If you clicked on a link to get here, the link is outdated.</li>\r\n</ul></dd>\r\n</dl>\r\n<dl>\r\n<dt>What can you do?</dt>\r\n<dd>Have no fear, help is near! There are many ways you can get back on track with Magento Store.</dd>\r\n<dd>\r\n<ul class=\"disc\">\r\n<li><a href=\"#\" onclick=\"history.go(-1); return false;\">Go back</a> to the previous page.</li>\r\n<li>Use the search bar at the top of the page to search for your products.</li>\r\n<li>Follow these links to get you back on track!<br /><a href=\"{{store url=\"\"}}\">Store Home</a> <span class=\"separator\">|</span> <a href=\"{{store url=\"customer/account\"}}\">My Account</a></li></ul></dd></dl>\r\n','2022-07-31 09:47:40','2022-07-31 09:47:40',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,'Home page','1column','','','home','','<style>#html-body [data-pb-style=C16G1OS]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;margin-bottom:25px}#html-body [data-pb-style=XYH3PFU]{min-height:460px;border-radius:8px}#html-body [data-pb-style=GNY03GH]{background-position:center center;background-size:cover;background-repeat:no-repeat}#html-body [data-pb-style=RI0FAS8]{background-color:transparent}#html-body [data-pb-style=UK1EEER]{opacity:1;visibility:visible}#html-body [data-pb-style=B010SGI]{background-position:left top;background-size:cover;background-repeat:no-repeat}#html-body [data-pb-style=A84F5EY]{background-color:transparent}#html-body [data-pb-style=HT0OD6I],#html-body [data-pb-style=VPFNR50]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=VPFNR50]{justify-content:flex-start;display:flex;flex-direction:column}#html-body [data-pb-style=HT0OD6I]{align-self:stretch}#html-body [data-pb-style=N0C484E]{display:flex;width:100%}#html-body [data-pb-style=J2I9GAW]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:100%;align-self:stretch}#html-body [data-pb-style=SJRS0DY]{text-align:center}#html-body [data-pb-style=N6GC0UB],#html-body [data-pb-style=V3O9YXW]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=V3O9YXW]{justify-content:flex-start;display:flex;flex-direction:column;margin-left:-16px;margin-right:-16px}#html-body [data-pb-style=N6GC0UB]{margin-left:16px;margin-right:16px;align-self:stretch}#html-body [data-pb-style=GGRPPDM]{display:flex;width:100%}#html-body [data-pb-style=H5AESJQ]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:33.3333%;align-self:stretch}#html-body [data-pb-style=LEJMXVC]{text-align:center}#html-body [data-pb-style=DATYIN2]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:33.3333%;align-self:stretch}#html-body [data-pb-style=V300AMW]{text-align:center}#html-body [data-pb-style=U2L3KPN]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:calc(33.3333% - 32px);margin-left:16px;margin-right:16px;align-self:stretch}#html-body [data-pb-style=KWQS5O0]{text-align:center}#html-body [data-pb-style=V5WEDR4]{text-align:center;margin-top:45px;margin-bottom:45px}#html-body [data-pb-style=DYQFYIE]{display:inline-block}#html-body [data-pb-style=SIO7NMK]{text-align:center}#html-body [data-pb-style=CWRY69A],#html-body [data-pb-style=D0AF2EJ]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=D0AF2EJ]{justify-content:flex-start;display:flex;flex-direction:column}#html-body [data-pb-style=CWRY69A]{margin-left:-16px;margin-right:-16px;margin-bottom:25px;align-self:stretch}#html-body [data-pb-style=YFLK5WI]{display:flex;width:100%}#html-body [data-pb-style=BJMOGIM],#html-body [data-pb-style=W96LL8R]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=BJMOGIM]{justify-content:flex-start;display:flex;flex-direction:column;width:calc(33.3333% - 32px);margin-left:16px;margin-right:16px;margin-bottom:25px;align-self:stretch}#html-body [data-pb-style=W96LL8R]{border-radius:8px}#html-body [data-pb-style=QJ9WN5R]{border-radius:8px;min-height:300px;background-color:transparent}#html-body [data-pb-style=QB6WDB1],#html-body [data-pb-style=VEX0OCM]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=QB6WDB1]{justify-content:flex-start;display:flex;flex-direction:column;width:calc(33.3333% - 32px);margin-left:16px;margin-right:16px;margin-bottom:25px;align-self:stretch}#html-body [data-pb-style=VEX0OCM]{border-radius:8px}#html-body [data-pb-style=SXRRIII]{border-radius:8px;min-height:300px;background-color:transparent}#html-body [data-pb-style=KNI74QT],#html-body [data-pb-style=Y4IOABH]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=KNI74QT]{justify-content:flex-start;display:flex;flex-direction:column;width:calc(33.3333% - 32px);margin-left:16px;margin-right:16px;margin-bottom:25px;align-self:stretch}#html-body [data-pb-style=Y4IOABH]{border-radius:8px}#html-body [data-pb-style=H3SDHYR]{border-radius:8px;min-height:300px;background-color:transparent}#html-body [data-pb-style=IKFNBBR]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}#html-body [data-pb-style=CG6IPMA],#html-body [data-pb-style=LFAYTDO]{text-align:center}#html-body [data-pb-style=J9MRLTA]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;margin-left:-16px;margin-right:-16px}#html-body [data-pb-style=ISF7C4R]{padding-left:16px;padding-right:16px}#html-body [data-pb-style=U3BWPPL]{width:100%;border-width:1px;border-color:#cecece;display:inline-block}#html-body [data-pb-style=F2FBPUT]{background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;padding-left:16px;padding-right:16px;align-self:stretch}#html-body [data-pb-style=JW939IN]{display:flex;width:100%}#html-body [data-pb-style=IIP1IUY]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;align-self:stretch}#html-body [data-pb-style=F8SL4UX]{padding-left:16px;padding-right:16px}#html-body [data-pb-style=FQMI0DV],#html-body [data-pb-style=LD6TUMV]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;align-self:stretch}#html-body [data-pb-style=FXEATRK]{padding-left:16px;padding-right:16px}#html-body [data-pb-style=BPWCM8B]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll;width:25%;align-self:stretch}#html-body [data-pb-style=V8WXTOJ]{padding-left:16px;padding-right:16px}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"C16G1OS\"><div class=\"pagebuilder-slider\" data-content-type=\"slider\" data-appearance=\"default\" data-autoplay=\"false\" data-autoplay-speed=\"4000\" data-fade=\"true\" data-infinite-loop=\"true\" data-show-arrows=\"true\" data-show-dots=\"false\" data-element=\"main\" data-pb-style=\"XYH3PFU\"><div data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"poster\" data-show-button=\"always\" data-show-overlay=\"always\" data-element=\"main\"><a href=\"#\" target=\"\" data-link-type=\"default\" title=\"\" data-element=\"link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{\\&quot;desktop_image\\&quot;:\\&quot;{{media url=wysiwyg/slider/F8C5D6EC-AC17-4B6E-9C22-B94A3CD67C93.png}}\\&quot;}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"GNY03GH\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"RI0FAS8\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h5><span style=\"color: #ffffff;\">Questo è un testo piccolo</span></h5><h1><span style=\"color: #ffffff;\"><strong>CARNE E SALUMI.</strong></span><br><span style=\"color: #ffffff;\"><strong>QUALITÀ CERTIFICATA</strong></span><br><span style=\"color: #ffffff;\"><strong>E SAPORE TRENTINO</strong></span></h1><h4><span style=\"color: #ffffff;\">Solo animali nati e allevati in Trentino</span></h4></div><button type=\"button\" class=\"pagebuilder-slide-button pagebuilder-button-primary\" data-element=\"button\" data-pb-style=\"UK1EEER\">Acquista Ora</button></div></div></div></a></div><div data-content-type=\"slide\" data-slide-name=\"\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-slide-wrapper\" data-background-images=\"{\\&quot;desktop_image\\&quot;:\\&quot;{{media url=wysiwyg/slider/D7444B57-5CB5-4B4B-9C13-078CA25A4A91.png}}\\&quot;}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"B010SGI\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"A84F5EY\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h5><span style=\"color: #ffffff;\"><strong>sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</strong></span></h5><h1><span style=\"color: #ffffff;\"><strong>Lorem ipsum dolor sit amet, consectetur adipiscing elit</strong></span></h1><h4><span style=\"color: #ffffff;\"><strong>Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</strong></span></h4></div></div></div></div></div></div></div></div></div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"VPFNR50\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"HT0OD6I\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"N0C484E\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"J2I9GAW\"><h2 class=\"text-primary\" data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"SJRS0DY\">Perchè acquistare su Indaco?</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"VOLCTGR\" style=\"text-align: center;\"><span style=\"color: #999999;\">Progetto realizzato con il sostegno economico della Provincia autonoma di Trento tramite la legge 6/99</span><br>&nbsp;</p></div></div></div></div></div></div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"V3O9YXW\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"N6GC0UB\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"GGRPPDM\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"H5AESJQ\"><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"2\" type_name=\"CMS Static Block\"}}</div><h5 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"LEJMXVC\">L’autenticità del Trentino</h5><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p style=\"text-align: center;\"><span style=\"color: #999999;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</span></p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"DATYIN2\"><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"2\" type_name=\"CMS Static Block\"}}</div><h4 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"V300AMW\">Prodotti sostenibili</h4><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"TMRMSER\" style=\"text-align: center;\"><span style=\"color: #999999;\">Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</span></p></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"U2L3KPN\"><div data-content-type=\"block\" data-appearance=\"default\" data-element=\"main\">{{widget type=\"Magento\\Cms\\Block\\Widget\\Block\" template=\"widget/static_block/default.phtml\" block_id=\"2\" type_name=\"CMS Static Block\"}}</div><h4 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"KWQS5O0\">Valorizzazione della filiera</h4><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"U3OGMJK\" style=\"text-align: center;\"><span style=\"color: #999999;\">Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</span></p></div></div></div></div><div data-content-type=\"buttons\" data-appearance=\"inline\" data-same-width=\"false\" data-element=\"main\" data-pb-style=\"V5WEDR4\"><div data-content-type=\"button-item\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"DYQFYIE\"><a class=\"pagebuilder-button-primary\" href=\"{{widget type=\'Magento\\Cms\\Block\\Widget\\Page\\Link\' page_id=\'2\' template=\'Magento_PageBuilder::widget/link_href.phtml\' type_name=\'CMS Page Link\' }}\" target=\"\" data-link-type=\"page\" data-element=\"link\" data-pb-style=\"SIO7NMK\"><span data-element=\"link_text\">SCOPRI DI PIÙ</span></a></div></div></div></div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"D0AF2EJ\"><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"CWRY69A\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"YFLK5WI\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"BJMOGIM\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" class=\"bg-overlay\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{\\&quot;desktop_image\\&quot;:\\&quot;{{media url=wysiwyg/banner/896189F5-5470-48B3-B9F4-BB6894612E11.png}}\\&quot;}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"W96LL8R\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"QJ9WN5R\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><div class=\"sc-bdvvtL eOzZrD\"><div class=\"sc-bdvvtL ikmxdg\"><div id=\"css-content\" class=\"sc-bdvvtL hmcaLA\"><h3 class=\"sc-eCImPb iKFbeR\"><span style=\"color: #ffffff;\">FRUTTA BIO DIRETTAMENTE A CASA TUA!</span></h3><p><strong><span style=\"color: #a2bf1a;\">VEDI TUTTO BIO</span></strong></p></div></div></div></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"QB6WDB1\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{\\&quot;desktop_image\\&quot;:\\&quot;{{media url=wysiwyg/banner/30D840EE-33E9-457A-89BB-3F88D31CAB32.png}}\\&quot;}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"VEX0OCM\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"SXRRIII\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><h3 class=\"sc-eCImPb iKFbeR\"><span style=\"color: #ffffff;\">LEGNO E ARTIGIANATO<br></span></h3><p><span style=\"color: #a2bf1a;\"><strong>VEDI TUTTO LEGNO</strong></span></p></div></div></div></div></div></div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"KNI74QT\"><div data-content-type=\"banner\" data-appearance=\"poster\" data-show-button=\"never\" data-show-overlay=\"never\" data-element=\"main\" class=\"ribbon-intrentino\"><div data-element=\"empty_link\"><div class=\"pagebuilder-banner-wrapper\" data-background-images=\"{\\&quot;desktop_image\\&quot;:\\&quot;{{media url=wysiwyg/banner/3C57434A-138C-467E-BF50-3DE6CB9DB635.png}}\\&quot;}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"wrapper\" data-pb-style=\"Y4IOABH\"><div class=\"pagebuilder-overlay pagebuilder-poster-overlay\" data-overlay-color=\"\" aria-label=\"\" title=\"\" data-element=\"overlay\" data-pb-style=\"H3SDHYR\"><div class=\"pagebuilder-poster-content\"><div data-element=\"content\"><div class=\"sc-bdvvtL eOzZrD\"><div class=\"sc-bdvvtL ikmxdg\"><div id=\"css-content\" class=\"sc-bdvvtL hmcaLA\"><h3 class=\"sc-eCImPb iKFbeR\"><span style=\"color: #ffffff;\"><img style=\"width: 176px; height: 46px;\" src=\"/media/wysiwyg/D489DEA0-6721-4063-B0BA-873A05C1B22E.png\" alt=\"intrentino logo\" width=\"176\" height=\"46\"></span></h3><h3 class=\"sc-eCImPb iKFbeR\"><span style=\"color: #ffffff;\">LE EMOZIONI #inTrentino HANNO UN SAPORE DIVERSO</span></h3><p><span style=\"color: #a2bf1a;\"><strong>VEDI TUTTO INTRENTINO</strong></span></p></div></div></div></div></div></div></div></div></div></div></div></div></div></div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"IKFNBBR\"><h4 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"CG6IPMA\">I selezionati</h4><div data-content-type=\"products\" data-appearance=\"carousel\" data-autoplay=\"false\" data-autoplay-speed=\"4000\" data-infinite-loop=\"false\" data-show-arrows=\"false\" data-show-dots=\"true\" data-carousel-mode=\"default\" data-center-padding=\"90px\" data-element=\"main\">{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" template=\"Magento_PageBuilder::catalog/product/widget/content/carousel.phtml\" anchor_text=\"\" id_path=\"\" show_pager=\"0\" products_count=\"20\" condition_option=\"category_ids\" condition_option_value=\"3\" type_name=\"Catalog Products Carousel\" conditions_encoded=\"^[`1`:^[`aggregator`:`all`,`new_child`:``,`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`value`:`1`^],`1--1`:^[`operator`:`==`,`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`category_ids`,`value`:`3`^]^]\" sort_order=\"position\"}}</div><h4 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"LFAYTDO\">I bestseller</h4><div data-content-type=\"products\" data-appearance=\"carousel\" data-autoplay=\"false\" data-autoplay-speed=\"4000\" data-infinite-loop=\"false\" data-show-arrows=\"false\" data-show-dots=\"true\" data-carousel-mode=\"default\" data-center-padding=\"90px\" data-element=\"main\">{{widget type=\"Magento\\CatalogWidget\\Block\\Product\\ProductsList\" template=\"Magento_PageBuilder::catalog/product/widget/content/carousel.phtml\" anchor_text=\"\" id_path=\"\" show_pager=\"0\" products_count=\"20\" condition_option=\"category_ids\" condition_option_value=\"74\" type_name=\"Catalog Products Carousel\" conditions_encoded=\"^[`1`:^[`aggregator`:`all`,`new_child`:``,`type`:`Magento||CatalogWidget||Model||Rule||Condition||Combine`,`value`:`1`^],`1--1`:^[`operator`:`==`,`type`:`Magento||CatalogWidget||Model||Rule||Condition||Product`,`attribute`:`category_ids`,`value`:`74`^]^]\" sort_order=\"position\"}}</div></div></div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div class=\"icon-baloon-list\" data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"J9MRLTA\"><div data-content-type=\"divider\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"ISF7C4R\"><hr data-element=\"line\" data-pb-style=\"U3BWPPL\"></div><div class=\"pagebuilder-column-group\" data-background-images=\"{}\" data-content-type=\"column-group\" data-appearance=\"default\" data-grid-size=\"12\" data-element=\"main\" data-pb-style=\"F2FBPUT\"><div class=\"pagebuilder-column-line\" data-content-type=\"column-line\" data-element=\"main\" data-pb-style=\"JW939IN\"><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"IIP1IUY\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"F8SL4UX\">&lt;div class=\"container-fluid\"&gt;\r\n  &lt;div class=\"row align-items-center\"&gt;\r\n    &lt;div class=\"col-auto\"&gt;\r\n      &lt;div class=\"icon-baloon icon-baloon-sm\"&gt;\r\n        &lt;div class=\"rounded-circle\"&gt;\r\n           &lt;i class=\"fas fa-rocket\"&gt;&lt;/i&gt;\r\n        &lt;/div&gt;\r\n      &lt;/div&gt;\r\n    &lt;/div&gt;\r\n    &lt;div class=\"col\"&gt;\r\n      &lt;h6 class=\"my-0\"&gt;CONSEGNA GRATIS&lt;/h6&gt;\r\n      &lt;p class=\"text-small text-muted mb-0\"&gt;Per ordini superiori ai 60 Euro&lt;/p&gt;\r\n    &lt;/div&gt;\r\n  &lt;/div&gt;\r\n&lt;/div&gt;</div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"LD6TUMV\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\">&lt;div class=\"container-fluid\"&gt;\r\n&lt;div class=\"row align-items-center\"&gt;\r\n  &lt;div class=\"col-auto\"&gt;\r\n    &lt;div class=\"icon-baloon icon-baloon-sm\"&gt;\r\n&lt;div class=\"rounded-circle\"&gt;\r\n&lt;i class=\"fa-solid fa-comment-dots\"&gt;&lt;/i&gt;&lt;/div&gt;\r\n    &lt;/div&gt;\r\n  &lt;/div&gt;\r\n  &lt;div class=\"col\"&gt;\r\n     &lt;h6 class=\"my-0\"&gt;SUPPORTO TELEFONICO 24/7&lt;/h6&gt;\r\n     &lt;p class=\"text-muted text-small mb-0\"&gt;Assistenza dedicata&lt;/p&gt;\r\n  &lt;/div&gt;\r\n&lt;/div&gt;\r\n  &lt;/div&gt;</div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"FQMI0DV\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"FXEATRK\">&lt;div class=\"container-fluid\"&gt;\r\n&lt;div class=\"row align-items-center\"&gt;\r\n  &lt;div class=\"col-auto\"&gt;\r\n    &lt;div class=\"icon-baloon icon-baloon-sm\"&gt;\r\n&lt;div class=\"rounded-circle\"&gt;\r\n&lt;i class=\"fas fa-credit-card\"&gt;&lt;/i&gt;\r\n&lt;/div&gt;\r\n    &lt;/div&gt;\r\n  &lt;/div&gt;\r\n  &lt;div class=\"col\"&gt;\r\n     &lt;h6 class=\"my-0\"&gt;PAGAMENTO SICURO&lt;/h4&gt;\r\n     &lt;p class=\"text-muted text-small mb-0\"&gt;100% pagamento sicuro&lt;/p&gt;\r\n  &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;/div&gt;</div></div><div class=\"pagebuilder-column\" data-content-type=\"column\" data-appearance=\"full-height\" data-background-images=\"{}\" data-element=\"main\" data-pb-style=\"BPWCM8B\"><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"V8WXTOJ\">&lt;div class=\"container-fluid\"&gt;\r\n&lt;div class=\"row align-items-center\"&gt;\r\n  &lt;div class=\"col-auto\"&gt;\r\n    &lt;div class=\"icon-baloon icon-baloon-sm\"&gt;\r\n&lt;div class=\"rounded-circle\"&gt;\r\n&lt;i class=\"fas fa-arrow-right-arrow-left\"&gt;&lt;/i&gt;\r\n&lt;/div&gt;\r\n    &lt;/div&gt;\r\n  &lt;/div&gt;\r\n  &lt;div class=\"col\"&gt;\r\n     &lt;h6 class=\"my-0\"&gt;30 GIORNI RESO GRATUITO&lt;/h6&gt;\r\n     &lt;p class=\"text-muted text-small mb-0\"&gt;In caso di merce non conforme&lt;/p&gt;\r\n  &lt;/div&gt;\r\n&lt;/div&gt;\r\n&lt;/div&gt;</div></div></div></div></div></div>','2022-07-31 09:47:40','2022-09-09 08:54:18',1,0,'<!--\n    <referenceContainer name=\"right\">\n        <referenceBlock name=\"catalog.compare.sidebar\" remove=\"true\" />\n    </referenceContainer>-->','','',NULL,NULL,NULL,NULL,''),(3,'Enable Cookies','1column',NULL,NULL,'enable-cookies','What are Cookies?','<div class=\"enable-cookies cms-content\">\r\n<p>\"Cookies\" are little pieces of data we send when you visit our store. Cookies help us get to know you better and personalize your experience. Plus they help protect you and other shoppers from fraud.</p>\r\n<p style=\"margin-bottom: 20px;\">Set your browser to accept cookies so you can buy items, save items, and receive customized recommendations. Here’s how:</p>\r\n<ul>\r\n<li><a href=\"https://support.google.com/accounts/answer/61416?hl=en\" target=\"_blank\">Google Chrome</a></li>\r\n<li><a href=\"http://windows.microsoft.com/en-us/internet-explorer/delete-manage-cookies\" target=\"_blank\">Internet Explorer</a></li>\r\n<li><a href=\"http://support.apple.com/kb/PH19214\" target=\"_blank\">Safari</a></li>\r\n<li><a href=\"https://support.mozilla.org/en-US/kb/enable-and-disable-cookies-website-preferences\" target=\"_blank\">Mozilla/Firefox</a></li>\r\n</ul>\r\n</div>','2022-07-31 09:47:40','2022-07-31 09:47:40',1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,'Privacy and Cookie Policy','1column','','','privacy-policy-cookie-restriction-mode','Privacy and Cookie Policy','<style>#html-body [data-pb-style=FSOTCAQ]{display:none}#html-body [data-pb-style=INP1XBF]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}</style><div data-content-type=\"html\" data-appearance=\"default\" data-element=\"main\" data-pb-style=\"FSOTCAQ\">&lt;div class=\"privacy-policy cms-content\"&gt;\r\n    &lt;div class=\"message info\"&gt;\r\n        &lt;span&gt;\r\n            Please replace this text with you Privacy Policy.\r\n            Please add any additional cookies your website uses below (e.g. Google Analytics).\r\n        &lt;/span&gt;\r\n    &lt;/div&gt;\r\n    &lt;p&gt;\r\n        This privacy policy sets out how this website (hereafter \"the Store\") uses and protects any information that\r\n        you give the Store while using this website. The Store is committed to ensuring that your privacy is protected.\r\n        Should we ask you to provide certain information by which you can be identified when using this website, then\r\n        you can be assured that it will only be used in accordance with this privacy statement. The Store may change\r\n        this policy from time to time by updating this page. You should check this page from time to time to ensure\r\n        that you are happy with any changes.\r\n    &lt;/p&gt;\r\n    &lt;h2&gt;What we collect&lt;/h2&gt;\r\n    &lt;p&gt;We may collect the following information:&lt;/p&gt;\r\n    &lt;ul&gt;\r\n        &lt;li&gt;name&lt;/li&gt;\r\n        &lt;li&gt;contact information including email address&lt;/li&gt;\r\n        &lt;li&gt;demographic information such as postcode, preferences and interests&lt;/li&gt;\r\n        &lt;li&gt;other information relevant to customer surveys and/or offers&lt;/li&gt;\r\n    &lt;/ul&gt;\r\n    &lt;p&gt;\r\n        For the exhaustive list of cookies we collect see the &lt;a href=\"#list\"&gt;List of cookies we collect&lt;/a&gt; section.\r\n    &lt;/p&gt;\r\n    &lt;h2&gt;What we do with the information we gather&lt;/h2&gt;\r\n    &lt;p&gt;\r\n        We require this information to understand your needs and provide you with a better service,\r\n        and in particular for the following reasons:\r\n    &lt;/p&gt;\r\n    &lt;ul&gt;\r\n        &lt;li&gt;Internal record keeping.&lt;/li&gt;\r\n        &lt;li&gt;We may use the information to improve our products and services.&lt;/li&gt;\r\n        &lt;li&gt;\r\n            We may periodically send promotional emails about new products, special offers or other information which we\r\n            think you may find interesting using the email address which you have provided.\r\n        &lt;/li&gt;\r\n        &lt;li&gt;\r\n            From time to time, we may also use your information to contact you for market research purposes.\r\n            We may contact you by email, phone, fax or mail. We may use the information to customise the website\r\n            according to your interests.\r\n        &lt;/li&gt;\r\n    &lt;/ul&gt;\r\n    &lt;h2&gt;Security&lt;/h2&gt;\r\n    &lt;p&gt;\r\n        We are committed to ensuring that your information is secure. In order to prevent unauthorised access or\r\n        disclosure, we have put in place suitable physical, electronic and managerial procedures to safeguard and\r\n        secure the information we collect online.\r\n    &lt;/p&gt;\r\n    &lt;h2&gt;How we use cookies&lt;/h2&gt;\r\n    &lt;p&gt;\r\n        A cookie is a small file which asks permission to be placed on your computer\'s hard drive.\r\n        Once you agree, the file is added and the cookie helps analyse web traffic or lets you know when you visit\r\n        a particular site. Cookies allow web applications to respond to you as an individual. The web application\r\n        can tailor its operations to your needs, likes and dislikes by gathering and remembering information about\r\n        your preferences.\r\n    &lt;/p&gt;\r\n    &lt;p&gt;\r\n        We use traffic log cookies to identify which pages are being used. This helps us analyse data about web page\r\n        traffic and improve our website in order to tailor it to customer needs. We only use this information for\r\n        statistical analysis purposes and then the data is removed from the system.\r\n    &lt;/p&gt;\r\n    &lt;p&gt;\r\n        Overall, cookies help us provide you with a better website, by enabling us to monitor which pages you find\r\n        useful and which you do not. A cookie in no way gives us access to your computer or any information about you,\r\n        other than the data you choose to share with us. You can choose to accept or decline cookies.\r\n        Most web browsers automatically accept cookies, but you can usually modify your browser setting\r\n        to decline cookies if you prefer. This may prevent you from taking full advantage of the website.\r\n    &lt;/p&gt;\r\n    &lt;h2&gt;Links to other websites&lt;/h2&gt;\r\n    &lt;p&gt;\r\n        Our website may contain links to other websites of interest. However, once you have used these links\r\n        to leave our site, you should note that we do not have any control over that other website.\r\n        Therefore, we cannot be responsible for the protection and privacy of any information which you provide whilst\r\n        visiting such sites and such sites are not governed by this privacy statement.\r\n        You should exercise caution and look at the privacy statement applicable to the website in question.\r\n    &lt;/p&gt;\r\n    &lt;h2&gt;Controlling your personal information&lt;/h2&gt;\r\n    &lt;p&gt;You may choose to restrict the collection or use of your personal information in the following ways:&lt;/p&gt;\r\n    &lt;ul&gt;\r\n        &lt;li&gt;\r\n            whenever you are asked to fill in a form on the website, look for the box that you can click to indicate\r\n            that you do not want the information to be used by anybody for direct marketing purposes\r\n        &lt;/li&gt;\r\n        &lt;li&gt;\r\n            if you have previously agreed to us using your personal information for direct marketing purposes,\r\n            you may change your mind at any time by letting us know using our Contact Us information\r\n        &lt;/li&gt;\r\n    &lt;/ul&gt;\r\n    &lt;p&gt;\r\n        We will not sell, distribute or lease your personal information to third parties unless we have your permission\r\n        or are required by law to do so. We may use your personal information to send you promotional information\r\n        about third parties which we think you may find interesting if you tell us that you wish this to happen.\r\n    &lt;/p&gt;\r\n    &lt;p&gt;\r\n        You may request details of personal information which we hold about you under the Data Protection Act 1998.\r\n        A small fee will be payable. If you would like a copy of the information held on you please email us this\r\n        request using our Contact Us information.\r\n    &lt;/p&gt;\r\n    &lt;p&gt;\r\n        If you believe that any information we are holding on you is incorrect or incomplete,\r\n        please write to or email us as soon as possible, at the above address.\r\n        We will promptly correct any information found to be incorrect.\r\n    &lt;/p&gt;\r\n    &lt;h2&gt;&lt;a name=\"list\"&gt;&lt;/a&gt;List of cookies we collect&lt;/h2&gt;\r\n    &lt;p&gt;The table below lists the cookies we collect and what information they store.&lt;/p&gt;\r\n    &lt;table class=\"data-table data-table-definition-list\"&gt;\r\n        &lt;thead&gt;\r\n        &lt;tr&gt;\r\n            &lt;th&gt;Cookie Name&lt;/th&gt;\r\n            &lt;th&gt;Cookie Description&lt;/th&gt;\r\n        &lt;/tr&gt;\r\n        &lt;/thead&gt;\r\n        &lt;tbody&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;FORM_KEY&lt;/th&gt;\r\n                &lt;td&gt;Stores randomly generated key used to prevent forged requests.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;PHPSESSID&lt;/th&gt;\r\n                &lt;td&gt;Your session ID on the server.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;GUEST-VIEW&lt;/th&gt;\r\n                &lt;td&gt;Allows guests to view and edit their orders.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;PERSISTENT_SHOPPING_CART&lt;/th&gt;\r\n                &lt;td&gt;A link to information about your cart and viewing history, if you have asked for this.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;STF&lt;/th&gt;\r\n                &lt;td&gt;Information on products you have emailed to friends.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;STORE&lt;/th&gt;\r\n                &lt;td&gt;The store view or language you have selected.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;USER_ALLOWED_SAVE_COOKIE&lt;/th&gt;\r\n                &lt;td&gt;Indicates whether a customer allowed to use cookies.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;MAGE-CACHE-SESSID&lt;/th&gt;\r\n                &lt;td&gt;Facilitates caching of content on the browser to make pages load faster.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;MAGE-CACHE-STORAGE&lt;/th&gt;\r\n                &lt;td&gt;Facilitates caching of content on the browser to make pages load faster.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;MAGE-CACHE-STORAGE-SECTION-INVALIDATION&lt;/th&gt;\r\n                &lt;td&gt;Facilitates caching of content on the browser to make pages load faster.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;MAGE-CACHE-TIMEOUT&lt;/th&gt;\r\n                &lt;td&gt;Facilitates caching of content on the browser to make pages load faster.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;SECTION-DATA-IDS&lt;/th&gt;\r\n                &lt;td&gt;Facilitates caching of content on the browser to make pages load faster.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;PRIVATE_CONTENT_VERSION&lt;/th&gt;\r\n                &lt;td&gt;Facilitates caching of content on the browser to make pages load faster.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;X-MAGENTO-VARY&lt;/th&gt;\r\n                &lt;td&gt;Facilitates caching of content on the server to make pages load faster.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;MAGE-TRANSLATION-FILE-VERSION&lt;/th&gt;\r\n                &lt;td&gt;Facilitates translation of content to other languages.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n            &lt;tr&gt;\r\n                &lt;th&gt;MAGE-TRANSLATION-STORAGE&lt;/th&gt;\r\n                &lt;td&gt;Facilitates translation of content to other languages.&lt;/td&gt;\r\n            &lt;/tr&gt;\r\n        &lt;/tbody&gt;\r\n    &lt;/table&gt;\r\n&lt;/div&gt;</div><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"INP1XBF\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Questo documento sulla privacy stabilisce come questo sito Web (di seguito \"INDACO\") utilizza e protegge qualsiasi informazione fornita a INDACO durante l\'utilizzo di questo sito Web. INDACO si impegna a garantire che la tua privacy sia protetta. Se dovessimo chiederti di fornire determinate informazioni in base alle quali puoi essere identificato quando utilizzi questo sito Web, puoi essere certo che verranno utilizzate solo in conformità con questa informativa sulla privacy. INDACO può modificare questa politica di volta in volta aggiornando questa pagina. Dovresti controllare questa pagina di tanto in tanto per assicurarti di essere soddisfatto di eventuali modifiche.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cosa raccogliamo</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Raccogliamo le seguenti informazioni:</p>\r\n<ul>\r\n<li>nome</li>\r\n<li>informazioni di contatto compreso l\'indirizzo e-mail</li>\r\n<li>informazioni demografiche come codice postale, preferenze e interessi</li>\r\n<li>altre informazioni rilevanti per sondaggi e/o offerte sui clienti</li>\r\n</ul>\r\n<p>Per l\'elenco completo dei cookie che raccogliamo vedere la sezione Elenco dei cookie che raccogliamo.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Cosa facciamo con le informazioni che raccogliamo</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Richiediamo queste informazioni per comprendere le tue esigenze e fornirti un servizio migliore, e in particolare per i seguenti motivi:</p>\r\n<ul>\r\n<li>tenuta dei registri interni</li>\r\n<li>potremmo utilizzare le informazioni per migliorare i nostri prodotti e servizi</li>\r\n<li>potremmo inviare periodicamente e-mail promozionali su nuovi prodotti, offerte speciali o altre informazioni che riteniamo possano interessarti utilizzando l\'indirizzo e-mail che hai fornito</li>\r\n<li>di tanto in tanto, potremmo anche utilizzare le tue informazioni per contattarti a fini di ricerche di mercato. Potremmo contattarti tramite e-mail, telefono, fax o posta. Potremmo utilizzare le informazioni per personalizzare il sito Web in base ai tuoi interessi.</li>\r\n</ul></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Sicurezza</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Ci impegniamo a garantire che le tue informazioni siano al sicuro. Al fine di prevenire l\'accesso o la divulgazione non autorizzati, abbiamo messo in atto adeguate procedure fisiche, elettroniche e gestionali per salvaguardare e proteggere le informazioni che raccogliamo online.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Come utilizziamo i cookie</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Un cookie è un piccolo file che richiede il permesso di essere inserito nel disco rigido del tuo computer. Una volta che acconsenti, il file viene aggiunto e il cookie aiuta ad analizzare il traffico web o ti informa quando visiti un determinato sito. I cookie consentono alle applicazioni Web di rispondere all\'utente come individuo. L\'applicazione Web può adattare le sue operazioni alle tue esigenze, Mi piace e Non mi piace raccogliendo e ricordando informazioni sulle tue preferenze.</p>\r\n<p>Utilizziamo i cookie di registro del traffico per identificare quali pagine vengono utilizzate. Questo ci aiuta ad analizzare i dati sul traffico della pagina web e a migliorare il nostro sito web per adattarlo alle esigenze dei clienti. Utilizziamo queste informazioni solo per scopi di analisi statistica e quindi i dati vengono rimossi dal sistema.</p>\r\n<p>Nel complesso, i cookie ci aiutano a fornirti un sito web migliore, consentendoci di monitorare quali pagine trovi utili e quali no. Un cookie non ci dà in alcun modo accesso al tuo computer oa qualsiasi informazione su di te, diversa dai dati che scegli di condividere con noi. È possibile scegliere di accettare o rifiutare i cookies. La maggior parte dei browser Web accetta automaticamente i cookie, ma di solito puoi modificare le impostazioni del browser per rifiutare i cookie, se preferisci. Ciò potrebbe impedirti di sfruttare appieno il sito web.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Links to other websites</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Il nostro sito Web può contenere collegamenti ad altri siti Web di interesse. Tuttavia, una volta che hai utilizzato questi collegamenti per lasciare il nostro sito, dovresti notare che non abbiamo alcun controllo su quell\'altro sito Web. Pertanto, non possiamo essere responsabili per la protezione e la privacy delle informazioni fornite durante la visita di tali siti e tali siti non sono regolati dalla presente informativa sulla privacy. È necessario prestare attenzione e guardare l\'informativa sulla privacy applicabile al sito Web in questione.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Controllo delle tue informazioni personali</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Puoi scegliere di limitare la raccolta o l\'uso delle tue informazioni personali nei seguenti modi:</p>\r\n<ul>\r\n<li>ogni volta che ti viene chiesto di compilare un modulo sul sito web, cerca la casella che puoi cliccare per indicare che non desideri che le informazioni vengano utilizzate da nessuno per scopi di marketing diretto</li>\r\n<li>se hai precedentemente acconsentito all\'utilizzo delle tue informazioni personali per scopi di marketing diretto, puoi cambiare idea in qualsiasi momento facendocelo sapere utilizzando le nostre informazioni Contattaci</li>\r\n</ul>\r\n<p>Non venderemo, distribuiremo o affitteremo le tue informazioni personali a terzi a meno che non abbiamo il tuo permesso o siamo obbligati dalla legge a farlo. Potremmo utilizzare le tue informazioni personali per inviarti informazioni promozionali su terze parti che riteniamo potresti trovare interessanti se ci dici che desideri che ciò accada.</p>\r\n<p>Puoi richiedere i dettagli delle informazioni personali che deteniamo su di te ai sensi del Data Protection Act 1998. Sarà pagata una piccola tassa. Se desideri una copia delle informazioni in tuo possesso, inviaci questa richiesta tramite e-mail utilizzando le nostre informazioni Contattaci.</p>\r\n<p>Se ritieni che qualsiasi informazione in nostro possesso sia errata o incompleta, ti preghiamo di scriverci o di inviarci un\'e-mail il prima possibile, all\'indirizzo sopra indicato. Correggeremo tempestivamente tutte le informazioni ritenute errate.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">Elenco dei cookie che raccogliamo</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>La tabella seguente elenca i cookie che raccogliamo e quali informazioni memorizzano.</p></div><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><table style=\"border-collapse: collapse; width: 100%;\" border=\"1\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 49.96%;\"><strong>Nome cookie&nbsp;</strong></td>\r\n<td style=\"width: 49.96%;\"><strong>Descrizione cookie</strong></td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">FORM_KEY</td>\r\n<td style=\"width: 49.96%;\">Memorizza la chiave generata casualmente utilizzata per prevenire richieste contraffatte.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">PHPSESSID</td>\r\n<td style=\"width: 49.96%;\">Il tuo ID di sessione sul server.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">GUEST-VIEW</td>\r\n<td style=\"width: 49.96%;\">Consente agli ospiti di visualizzare e modificare i propri ordini.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">PERSISTENT_SHOPPING_CART</td>\r\n<td style=\"width: 49.96%;\">Un collegamento alle informazioni sul carrello e alla cronologia di visualizzazione, se richiesto.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">STF</td>\r\n<td style=\"width: 49.96%;\">Informazioni sui prodotti che hai inviato via email agli amici.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">STORE</td>\r\n<td style=\"width: 49.96%;\">La visualizzazione del negozio o la lingua che hai selezionato.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">USER_ALLOWED_SAVE_COOKIE</td>\r\n<td style=\"width: 49.96%;\">Indica se un cliente ha autorizzato l\'utilizzo dei cookie.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">MAGE-CACHE-SESSID</td>\r\n<td style=\"width: 49.96%;\">Facilita la memorizzazione nella cache dei contenuti sul browser per velocizzare il caricamento delle pagine.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">MAGE-CACHE-STORAGE</td>\r\n<td style=\"width: 49.96%;\">Facilita la memorizzazione nella cache dei contenuti sul browser per velocizzare il caricamento delle pagine.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">MAGE-CACHE-STORAGE-SECTION-INVALIDATION</td>\r\n<td style=\"width: 49.96%;\">Facilita la memorizzazione nella cache dei contenuti sul browser per velocizzare il caricamento delle pagine.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">MAGE-CACHE-TIMEOUT</td>\r\n<td style=\"width: 49.96%;\">Facilita la memorizzazione nella cache dei contenuti sul browser per velocizzare il caricamento delle pagine.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">SECTION-DATA-IDS</td>\r\n<td style=\"width: 49.96%;\">Facilita la memorizzazione nella cache dei contenuti sul browser per velocizzare il caricamento delle pagine.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">PRIVATE_CONTENT_VERSION</td>\r\n<td style=\"width: 49.96%;\">Facilita la memorizzazione nella cache dei contenuti sul browser per velocizzare il caricamento delle pagine.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">X-MAGENTO-VARY</td>\r\n<td style=\"width: 49.96%;\">Facilita la memorizzazione nella cache dei contenuti sul browser per velocizzare il caricamento delle pagine.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">MAGE-TRANSLATION-FILE-VERSION</td>\r\n<td style=\"width: 49.96%;\">Facilita la traduzione dei contenuti in altre lingue.</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 49.96%;\">MAGE-TRANSLATION-STORAGE</td>\r\n<td style=\"width: 49.96%;\">Facilita la traduzione dei contenuti in altre lingue.</td>\r\n</tr>\r\n</tbody>\r\n</table></div></div></div>','2022-07-31 09:47:40','2022-08-23 12:04:46',1,0,NULL,'','',NULL,NULL,NULL,NULL,''),(5,'Termini e condizioni del servizio','cms-full-width','','','termini-e-condizioni-del-servizio','Termini e condizioni del servizio','<style>#html-body [data-pb-style=KRESGFJ]{justify-content:flex-start;display:flex;flex-direction:column;background-position:left top;background-size:cover;background-repeat:no-repeat;background-attachment:scroll}</style><div data-content-type=\"row\" data-appearance=\"contained\" data-element=\"main\"><div data-enable-parallax=\"0\" data-parallax-speed=\"0.5\" data-background-images=\"{}\" data-background-type=\"image\" data-video-loop=\"true\" data-video-play-only-visible=\"true\" data-video-lazy-load=\"true\" data-video-fallback-src=\"\" data-element=\"inner\" data-pb-style=\"KRESGFJ\"><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Benvenuto nello shop online ufficiale INDACO ( www.indaco.store), servizio di proprietà di Indaco srl con sede in Trento in Kufstein, 5 - Iscrizione Registro Imprese TN | Cod. Fisc. e Part. IVA 00000000000 | Tel: 0461.123456 Fax: 0461.123456, Sito web www.indaco.store , E-mail: info@indaco.store | PEC: info@pec.indaco.store, (di seguito “INDACO”), offerto in collaborazione con le aziende aderenti (di seguito \"AZIENDE\"), che nelle presenti condizioni generali di vendita assumono la veste di venditore.</p>\r\n<p>Si invitano gli utenti a leggere attentamente le Condizioni Generali di Vendita sotto riportate che costituiscono un accordo legalmente vincolante per l’utilizzo dello shop online e l’acquisto dei beni ivi contenuti.</p>\r\n<p>Le Condizioni Generali di Vendita sono messe a disposizione degli utenti dello shop online anche al fine di consentirne la memorizzazione e la riproduzione ai sensi dell\'art. 12 del Decreto Legislativo 9 aprile 2003, n. 70.</p>\r\n<p>Qualora necessiti assistenza, è possibile contattare direttamente INDACO telefonando dal lunedì al venerdì (dalle 08.30 alle 12.30 e dalle 13.30 alle 17.30) al seguente numero: 0461 123456, oppure scrivendo via e-mail a: info@indaco.store . INDACO si impegna a rispondere entro 24 ore lavorative dal lunedì al venerdì.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">1. OGGETTO</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p id=\"WPEV8B9\">1.1. Le presenti Condizioni Generali di Vendita online (di seguito “CGV”) disciplinano il contratto (di seguito “CONTRATTO”) per la vendita dei prodotti (di seguito “PRODOTTI”) venduti dalle AZIENDE tramite il sito Internet www.indaco.store (di seguito “sito”) di proprietà di INDACO agli utenti del sito (di seguito “CLIENTE” o “CLIENTI”).</p>\r\n<p>1.2. Nelle presenti CGV con il termine CLIENTE o CLIENTI si intende il “consumatore” o i “consumatori” ai sensi dell’articolo 3, co. 1, lett. a), del D.Lgs. 6 settembre 2005, n. 206 (di seguito “CODICE”), ossia “la persona fisica che agisce per scopi estranei all’attività imprenditoriale o professionale eventualmente svolta”.</p>\r\n<p>1.3. La veste grafica dei prodotti consegnati potrebbe non coincidere con quella rappresentata sul sito nel caso in cui sia stata modificata la confezione. Le fotografie dei PRODOTTI sono presenti sul sito solo a scopo illustrativo e gli articoli potrebbero subire variazioni grafiche del packaging rispetto alla presentazione.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">2. EFFICACIA E MODIFICA DELLE CGV</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>2.1. Le CGV sono disponibili sul sito per essere agevolmente lette dal CLIENTE prima della registrazione e prima di effettuare l’acquisto dei PRODOTTI; si intendono accettate unitamente alla registrazione del CLIENTE sul sito e/o unitamente all’inoltro del modulo d’ordine d’acquisto in caso di CLIENTE non registrato, e possono essere memorizzate sul computer del CLIENTE e riproducibili su supporto cartaceo tramite stampa del file in cui sono contenute.</p>\r\n<p>2.2. Le CGV applicabili alla vendita dei PRODOTTI sono quelle pubblicate sul sito, alla data dell’ordine relativo ai PRODOTTI. Il CLIENTE, pertanto, dovrà prendere visione delle CGV, ogni volta che intenda procedere ad un acquisto sul sito. Le eventuali nuove CGV saranno efficaci dal momento della pubblicazione sul sito e si applicheranno alle sole vendite concluse successivamente alla pubblicazione medesima.</p>\r\n<p>Il CLIENTE dichiara di essere consapevole che le presenti CGV sono a sua disposizione direttamente sulla piattaforma e-commerce di proprietà di INDACO all’indirizzo www.indaco.store e che INDACO ha ottemperato ai requisiti di legge sia in relazione alla messa a disposizione delle CGV che in relazione alla comunicazione delle informazioni al consumatore.</p>\r\n<p>2.3. La mera tolleranza o la mancata contestazione da parte di INDACO o di AZIENDE di eventuali inadempimenti del CLIENTE rispetto a quanto contenuto nelle CGV non potrà essere interpretata come tacita accettazione di tali inadempimenti, né come volontà di derogare a quanto convenuto tra le parti.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">3. REGISTRAZIONE E PROCEDURA DI ACQUISTO</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>3.1. Il CLIENTE che intenda procedere all’acquisto dei PRODOTTI può manifestare tale volontà attraverso due distinte modalità.</p>\r\n<p>Creando il proprio account mediante compilazione dei propri i dati personali richiesti dal modulo presente nell’apposita sezione del sito. Una volta registrato, sarà possibile:</p>\r\n<p>Accedere al sito col proprio profilo;<br>Mantenere memorizzato il carrello prima di eseguire il pagamento;<br>Evitare la procedura di inserimento dati personali/spedizione/fatturazione in fase di ordine;<br>Modificare i propri dati personali;<br>Salvare gli ordini nella sezione “storico ordini”.<br>I dati bancari non vengono richiesti nella fase di registrazione o di inserimento di un ordine, ma direttamente al momento del pagamento dal circuito PayPal e Shopify il quale, ne conserva l’accesso esclusivo.</p>\r\n<p>Inserendo una richiesta direttamente sul sito ove, seguendo la procedura di acquisto ivi indicata, effettuerà l’inoltro, per via telematica, del proprio ordine elettronico d’acquisto (di seguito “ORDINE”) e il relativo pagamento.<br>Il cliente dovrà conservare in modo assolutamente riservato le credenziali di accesso al sito perché la loro ingiustificata comunicazione a terzi, in caso di trasmissione da parte di questi, di un ordine di acquisto tramite il sito, impegnerà il cliente al pagamento del prezzo.</p>\r\n<p>3.2. Nel modulo d’ordine è contenuto un riepilogo delle informazioni sulle caratteristiche essenziali di ciascun prodotto ordinato ed il relativo prezzo (comprensivo di tutte le tasse e imposte applicabili), del mezzo di pagamento prescelto, delle modalità di consegna dei prodotti acquistati, dei costi di spedizione e di consegna: il CLIENTE prima di inviare l’ORDINE dovrà leggerne attentamente l’intero contenuto ed individuare e correggere eventuali errori di inserimento dei dati utilizzando le apposite funzionalità del sito.</p>\r\n<p>3.3. L’ordine inviato dal CLIENTE sarà vincolante per la AZIENDE solamente se l’intera procedura dell’ordine sarà stata completata regolarmente ed in modo corretto senza nessuna evidenziazione di messaggi di errori da parte del sito. Tutti gli ordini di acquisto dei PRODOTTI sono soggetti alla disponibilità degli stessi e, quindi, alla conferma di INDACO, la quale comunicherà tale disponibilità inviando un’e-mail al CLIENTE di CONFERMA DI ORDINE. Solo con l’invio di tale email il contratto si intenderà concluso e perfezionato.</p>\r\n<p>3.4. In caso di mancata esecuzione dell’ORDINE, dovuta a indisponibilità di uno dei PRODOTTI ordinati, INDACO informerà il CLIENTE via e-mail e chiederà la conferma dell’ORDINE del CLIENTE, per l’acquisto degli eventuali restanti PRODOTTI ordinati e disponibili.</p>\r\n<p>In ogni caso l’indisponibilità di uno o più dei PRODOTTI ordinati non implica automaticamente l’annullamento della totalità dell’ORDINE, che rimane a discrezione del cliente, previa comunicazione a INDACO via e-mail all’indirizzo info@iondaco.store.</p>\r\n<p>3.5. Il CONTRATTO tra il CLIENTE e AZIENDE è regolato dall’ORDINE, dalla CONFERMA D’ORDINE, dalle CGV e dalla Privacy Policy (di seguito “PRIVACY”), queste ultime entrambe pubblicate sul sito.</p>\r\n<p>3.6 Si informano i CLIENTI che il contratto concluso verrà conservato presso gli archivi di INDACO ed essi potranno accedervi inviando richiesta motivata all’indirizzo info@indaco.store oppure scrivendo alla sede di INDACO a mezzo raccomandata AR.</p>\r\n<p>3.7. L’emissione della fattura non è obbligatoria se non è richiesta dal Cliente non oltre il momento dell’effettuazione dell’ordine, come indicato nel D.P.R. del 26/10/1972 n. 633 – art.22.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">4. DIRITTI E OBBLIGHI DELLE AZIENDE</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>4.1. AZIENDE si impegna a consegnare i PRODOTTI presso l’indirizzo indicato dal CLIENTE nell’ORDINE. INDACO e AZIENDE non saranno responsabili per errori di consegna dovuti a inesattezze o incompletezze nella compilazione della scheda anagrafica del cliente o dell’ORDINE o per irreperibilità del CLIENTE stesso. La consegna viene effettuata tramite corriere espresso, pertanto non possono essere accettate le caselle postali.</p>\r\n<p>4.2. In caso di restituzione totale di PRODOTTI danneggiati o diversi dal contenuto dell’ORDINE, AZIENDE, provvederà alla sostituzione della merce o al rimborso dell\'ordine, come indicato nel paragrafo 9 ‘RESI E RIMBORSI’.</p>\r\n<p>4.3 Salvo quanto previsto al paragrafo 1.3, sui PRODOTTI venduti, AZIENDE riconosce al CLIENTE la garanzia legale di conformità prevista dalle norme del Codice del Consumo.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">5. DIRITTI E OBBLIGHI DEL CLIENTE</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>5.1. Il CLIENTE è l’unico responsabile della veridicità dei dati e della correttezza delle informazioni fornite a INDACO in fase di registrazione o di acquisto dei PRODOTTI tramite il sito e si impegna a comunicare tempestivamente eventuali variazioni dei dati inseriti. Per ciò che attiene gli ORDINI, le variazioni potranno essere comunicate esclusivamente entro i termini previsti dal paragrafo 10.1.</p>\r\n<p>5.2. Il CLIENTE, in fase di registrazione e/o di invio dell’ORDINE, dichiara di aver letto, compreso e accettato le CGV e le ulteriori informazioni contenute nel sito compresa la PRIVACY.</p>\r\n<p>5.3. Il CLIENTE si impegna, una volta terminata la procedura di acquisto sul sito, a provvedere sia al salvataggio di una copia elettronica, che alla stampa dell’ORDINE e delle CGV ai fini della loro conservazione, come indicato al precedente articolo 2.1.</p>\r\n<p>5.4 Il CLIENTE si impegna ad effettuare ORDINI per un controvalore minimo di € 25,00 al netto delle spese di spedizione. ORDINI di valore inferiore non saranno ritenuti validi e/o efficaci e non verranno consegnati.</p>\r\n<p>Il sistema provvederà ad avvisare il CLIENTE del mancato raggiungimento del minimo di acquisto stabilito.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">6. UTILIZZO DEL SITO</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>6.1. Le caratteristiche essenziali dei PRODOTTI sono presentate sul sito all’interno di ciascuna scheda prodotto. Le immagini ed i colori dei prodotti offerti in vendita sul sito potrebbero non essere corrispondenti perfettamente a quelli reali per effetto del browser Internet e del monitor utilizzato al momento della connessione al sito.</p>\r\n<p>6.2. INDACO non assume alcuna responsabilità in merito ai problemi causati al CLIENTE dall’utilizzo del sito e delle tecnologie impiegate qualora non dipendenti da propria volontà, quali, a titolo esemplificativo: a) errori, ritardi o impossibilità nell’accesso al sito da parte del CLIENTE in occasione dell’esecuzione della procedura di acquisto; b) errori, ritardi o impossibilità nella ricezione, da parte del CLIENTE, delle comunicazioni effettuate da INDACO in relazione alla vendita dei PRODOTTI.</p>\r\n<p>6.3. In ogni caso, INDACO si impegna, per quanto nella propria possibilità, a risolvere i problemi che possono verificarsi e offrire l’assistenza necessaria al CLIENTE per ottenere una soluzione rapida e soddisfacente ai suddetti problemi.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">7. PREZZI E PAGAMENTI</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>7.1. I prezzi dei PRODOTTI sono quelli effettivamente visualizzati sul sito al momento dell’emissione dell’ORDINE e, se non diversamente specificato, si intendono comprensivi di I.V.A. Ai prezzi che figurano sul sito, per ognuno dei PRODOTTI, dovranno essere aggiunte le spese di spedizione e consegna degli stessi che saranno debitamente evidenziate e riepilogate prima dell’emissione dell’ORDINE e successivamente anche nella CONFERMA D’ORDINE.</p>\r\n<p>7.2. Il prezzo totale per l’acquisto dei PRODOTTI e le spese di spedizione, come indicato nell’ORDINE, saranno addebitati al CLIENTE nel momento in cui effettua il pagamento.</p>\r\n<p>7.3 Il CLIENTE può utilizzare diversi metodi di pagamento per effettuare acquisti sul sito www.indaco.store : Paypal, carte di credito, carte prepagate.</p>\r\n<p>Sono accettati i seguenti metodi di pagamento:</p>\r\n<p>Carte di credito</p>\r\n<p>I circuiti accettati sono:<br>MasterCard<br>Maestro<br>Visa<br>Visa Electron<br>American Express<br>Aura<br>Discover<br>Tutte le transazioni avvengono tramite il circuito Shopify ad esclusione degli acquisti fatti con il circuito PayPal, al quale il CLIENTE verrà reindirizzato nel momento dell’acquisto, senza necessità di ulteriore registrazione. I dati relativi ai mezzi di pagamento utilizzati resteranno nell’esclusiva sfera di conoscenza/conoscibilità del circuito PayPal. Il sito www.indaco.store utilizza un sistema di crittografia SSL che garantisce la riservatezza delle informazioni trasmesse attraverso Internet. Al momento della conferma d’ordine, basta selezionare l’opzione di pagamento “carta di credito o Paypal”, per essere direttamente trasferiti sul sito di Paypal, seleziona quindi il link “non hai un conto Paypal?”.<br>Paypal<br>Paypal permette di effettuare il pagamento dell’ordine accedendo direttamente all\'account del CLIENTE. I dati relativi al conto e alla carta di credito sono gestiti direttamente da Paypal, che fornisce allo shop www.indaco.store semplicemente una comunicazione di avvenuto pagamento. Al momento della conferma d’ordine, basta selezionare l’opzione di pagamento “carta di credito o Paypal”, per essere direttamente trasferiti sul sito di Paypal, e seguire le istruzioni del sito PayPal per completare il pagamento.<br>Contrassegno<br>Per “spedizione in contrassegno” s’intende una spedizione i cui prodotti vengono pagati dal CLIENTE in contanti al momento della consegna in base ad un accordo tra INDACO e CLIENTE.<br>Tale accordo tra CLIENTE e INDACO è possibile solo ove il sito www.indaco.store consenta al CLIENTE stesso di selezionare l’opzione “Pagamento in contrassegno”. Tale opzione prevede solo ed esclusivamente il pagamento in contanti.<br>Il servizio di gestione della consegna con pagamento in contrassegno prevede un costo supplementare già incluso nelle spese di spedizione.<br>I maggiori costi di spedizione con pagamento in contrassegno non sono rimborsabili in caso di restituzione della merce tranne il caso di annullamento dell\'ordine.<br>In ogni caso, l’opzione di pagamento in contrassegno è possibile per contrassegni di valore totale non superiore Euro 999,00 (novecentonovantanove/00).<br>Qualora l’opzione di pagamento in contrassegno sia possibile, lo Spedizioniere Designato curerà la raccolta, presso il CLIENTE, del denaro, solo ed unicamente in contanti, dovuto dal CLIENTE stesso a INDACO per poi consegnarlo a quest’ultima.<br>Una volta prenotato un ordine non è possibile aggiungere e/o modificare il servizio del contrassegno.  </p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">8. CONSEGNA DEI PRODOTTI</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>8.1 I prodotti sono conferiti dalle AZIENDE aderenti al centro logistico di spedizione. Per garantire la freschezza e genuinità dei prodotti, le spedizioni avvengono con cadenza settimanale, il lunedì e mercoledì.</p>\r\n<p>Gli ordini contenenti articoli contrassegnati come “DISPONIBILI” saranno spediti nel primo giorno di spedizione utile e consegnati al cliente entro 4 giorni lavorativi in Italia come descritto in dettaglio nel link \"condizioni di spedizione\".</p>\r\n<p>Gli utenti registrati potranno monitorare lo stato dell’ORDINE all’interno della sezione “I miei Ordini” del sito accedendo mediante username e password oppure seguendo il codice di tracciabilità inviato nel documento di riepilogo dell\'ordine.</p>\r\n<p>8.2 Al momento della consegna dei PRODOTTI al CLIENTE da parte del vettore incaricato del loro trasporto, il CLIENTE dovrà controllare: a) che la quantità e la tipologia dei PRODOTTI ordinati corrisponda a quanto indicato nel documento di trasporto; b) che l’imballaggio utilizzato per il trasporto risulti integro, non danneggiato, bagnato o comunque alterato, anche solo nei materiali di chiusura.</p>\r\n<p>8.3. Eventuali anomalie devono essere contestate immediatamente al vettore al momento del ricevimento dei PRODOTTI, mediante loro indicazione nella bolla di consegna. Il CLIENTE al fine di agevolare e velocizzare la procedura di controllo di eventuali anomalie da parte di INDACO, potrà scrivere una e-mail all’indirizzo info@indaco.store.</p>\r\n<p>8.4 Per la consegna è necessaria la presenza del Cliente o di un suo incaricato maggiore di anni 18 all’indirizzo indicato nell’ORDINE. In caso di mancata consegna dovuta ad assenza del CLIENTE o di un suo incaricato, saranno addebiti al CLIENTE i costi aggiuntivi dovuto allo stoccaggio e riconsegna degli articoli dell’ORDINE.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">9. RECESSO RESI E RIMBORSI</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Trattandosi di prodotti alimentari freschi e deperibili che per loro natura non possono essere rispediti visto il rischio di loro veloce deterioramento, alterazione o rapida scadenza, è escluso il diritto di recesso dal contratto a favore del CLIENTE.</p>\r\n<p>Diversamente, qualora il CLIENTE ricevesse PRODOTTI danneggiati o diversi rispetto all’ordine effettuato, essi saranno ritirati dal corriere e saranno sostituiti senza spese aggiuntive.</p>\r\n<p>In quest’ultimo caso, il CLIENTE deve denunciare il vizio entro due mesi dalla scoperta inviando una comunicazione PEC, una raccomandata AR alla sede legale di INDACO o un’e-mail a: info@indaco.store, in cui si informa del prodotto difettoso allegando relative foto in cui sia visibile il difetto, il lotto di produzione e la data di scadenza, insieme ai recapiti necessari per concordare il ritiro.</p>\r\n<p>La denuncia rimarrà invalida/inefficace se inviata dopo due anni dall’acquisto.</p>\r\n<p>In nessun caso potranno essere sostituiti prodotti sigillati che siano stati aperti dal CLIENTE.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">10. ANNULLAMENTO E MODIFICA DELL’ORDINE</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>10.1 Il Cliente può annullare l\'intero ORDINE o modificarlo entro le ore 10.00 del giorno successivo all’inserimento dell’ORDINE.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">11. PROTEZIONE DEI DATI PERSONALI</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>11.1. INDACO e le AZIENDE aderenti garantiscono al CLIENTE che i dati personali acquisiti in relazione alla vendita dei PRODOTTI saranno sempre trattati in modo lecito e corretto, nella piena osservanza delle disposizioni del Regolamento UE 679/2016 e del D.Lgs. 30 giugno 2003, n. 196 (di seguito “DECRETO”) conformemente a quanto riportato nel documento Politica sulla PRIVACY, pubblicata sul sito e stampabile.</p>\r\n<p>11.2. Per ogni informazione relativa al trattamento dei dati personali si rinvia all’informativa sul trattamento dei dati resa da INDACO, ai sensi dell’art. 13 del Regolamento UE 679/2016, al CLIENTE al momento della registrazione sul sito.</p>\r\n<p>I dati personali dei CLIENTI inseriti sul sito saranno trattati anche da INDACO sempre nel rispetto delle norme di legge nazionali ed internazionali. L’informativa privacy resa da INDACO è consultabile al link in calce alla home page del sito.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">12. COMUNICAZIONI</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Per qualsiasi necessità di assistenza o reclamo relativi ai PRODOTTI acquistati, il CLIENTE potrà contattare INDACO al seguente indirizzo e-mail: info@indaco.store o agli altri recapiti aziendali contenuti nelle presenti CGV.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">13. SOSPENSIONE DEL SERVIZIO</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>In caso di gravi inadempimenti imputabili al CLIENTE (a titolo esemplificativo ma non esaustivo: mancato pagamento degli acquisti effettuati, assenza ripetuta del CLIENTE al momento della consegna della spesa, non corretto utilizzo di modalità di effettuazione della spesa), INDACO si riserva la facoltà di sospendere il servizio e/o cancellare il profilo del CLIENTE registrato dandogliene tempestiva comunicazione scritta.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">14. RESPONSABILITÀ</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>INDACO garantisce il rispetto della catena del freddo e, in generale, delle norme di qualità relative ai prodotti esclusivamente fino al momento della consegna dei prodotti presso il luogo indicato dal Cliente. È esclusa ogni responsabilità relativa al cattivo stato dei prodotti dovuta ad impropria conservazione successiva al momento della consegna.</p>\r\n<p>Salve le ipotesi di dolo o colpa grave, INDACO declina ogni responsabilità per danni diretti o indiretti di qualunque natura essi siano o sotto qualunque forma si manifestino, conseguenti all\'utilizzo del sito e/o delle notizie, foto ed informazioni ivi contenute.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">15. STRUMENTI DI COMPOSIZIONE DELLE CONTROVERSIE</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Ai sensi e per gli effetti dell’art. 14 del regolamento UE n.524/2013, si informano i consumatori residenti negli Stati appartenenti all’Unione Europea che per la risoluzione delle controversie relative al presente contratto e ai servizi online offerti da questo sito, vi è la possibilità di ricorrere al procedimento di Online Dispute Resolution (ODR), previsto dalla Commissione Europea, e raggiungibile al seguente link: https://webgate.ec.europa.eu/odr/. È possibile inoltre accedere ad altre piattaforme di ODR quali quello della Camera Arbitrale di Milano Risolvionline.com oppure quello predisposto da un pool di Camere di Commercio italiane Concilianet. AZIENDE e INDACO non aderiscono ai sistemi di Alternative Dispute Resolution (ADR) per la composizione extra-giudiziale delle controversie (confermare).</p>\r\n<p>In ottemperanza a quanto previsto dalla suddetta normativa, si comunica altresì che l’indirizzo di posta elettronica di INDACO è info@indaco.store.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">16. LINGUA DEL CONTRATTO E LEGGE APPLICABILE</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Le CGV sono regolate dalla legge italiana ed in particolare dal decreto legislativo 6 settembre 2005 n. 206 “CODICE DEL CONSUMO” e dal decreto legislativo 9 aprile 2003 n. 70 relativamente ad alcune peculiarità del commercio elettronico.</p>\r\n<p>Essendo la consegna dei prodotti limitata all’Italia, la lingua a disposizione per concludere il contratto è l\'italiano.</p></div><h2 data-content-type=\"heading\" data-appearance=\"default\" data-element=\"main\">17. FORO COMPETENTE</h2><div data-content-type=\"text\" data-appearance=\"default\" data-element=\"main\"><p>Salvo quanto previsto per le cause che coinvolgono il consumatore, per ogni controversia relativa alla vendita dei PRODOTTI, comprese quelle relative alla validità, interpretazione, esecuzione o risoluzione delle presenti CGV, sarà esclusivamente competente il Foro di Trento.</p></div></div></div>','2022-08-23 07:46:43','2022-08-23 07:58:43',1,0,NULL,'','',NULL,NULL,NULL,NULL,'');
/*!40000 ALTER TABLE `cms_page` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cms_page_store`
--

DROP TABLE IF EXISTS `cms_page_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cms_page_store` (
  `page_id` smallint(6) NOT NULL COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`page_id`,`store_id`),
  KEY `CMS_PAGE_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `CMS_PAGE_STORE_PAGE_ID_CMS_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `cms_page` (`page_id`) ON DELETE CASCADE,
  CONSTRAINT `CMS_PAGE_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='CMS Page To Store Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cms_page_store`
--

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

--
-- Table structure for table `core_config_data`
--

DROP TABLE IF EXISTS `core_config_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `core_config_data` (
  `config_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Config ID',
  `scope` varchar(8) NOT NULL DEFAULT 'default' COMMENT 'Config Scope',
  `scope_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Config Scope ID',
  `path` varchar(255) NOT NULL DEFAULT 'general' COMMENT 'Config Path',
  `value` text DEFAULT NULL COMMENT 'Config Value',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`config_id`),
  UNIQUE KEY `CORE_CONFIG_DATA_SCOPE_SCOPE_ID_PATH` (`scope`,`scope_id`,`path`)
) ENGINE=InnoDB AUTO_INCREMENT=221 DEFAULT CHARSET=utf8 COMMENT='Config Data';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `core_config_data`
--

LOCK TABLES `core_config_data` WRITE;
/*!40000 ALTER TABLE `core_config_data` DISABLE KEYS */;
INSERT INTO `core_config_data` VALUES (1,'default',0,'web/seo/use_rewrites','1','2022-07-31 09:47:34'),(2,'default',0,'web/unsecure/base_url','http://magento.test.indaco.store/','2022-08-04 09:17:16'),(3,'default',0,'general/locale/code','it_IT','2022-07-31 09:47:34'),(4,'default',0,'general/locale/timezone','Europe/Rome','2022-07-31 09:47:34'),(5,'default',0,'currency/options/base','EUR','2022-07-31 09:47:34'),(6,'default',0,'currency/options/default','EUR','2022-07-31 09:47:34'),(7,'default',0,'currency/options/allow','EUR','2022-07-31 09:47:34'),(8,'default',0,'general/region/display_all','1','2022-07-31 09:47:35'),(9,'default',0,'general/region/state_required','AL,AR,AU,BY,BO,BR,BG,CA,CL,CN,CO,HR,DK,EC,EE,GR,GY,IS,IN,IT,LV,LT,MX,PY,PE,PL,PT,RO,ES,SR,SE,CH,US,UY,VE','2022-07-31 11:54:50'),(10,'default',0,'catalog/category/root_id','2','2022-07-31 09:47:41'),(11,'default',0,'analytics/subscription/enabled','1','2022-07-31 09:47:43'),(13,'default',0,'crontab/default/jobs/analytics_collect_data/schedule/cron_expr','00 02 * * *','2022-07-31 09:47:43'),(14,'default',0,'msp_securitysuite_recaptcha/frontend/enabled','0','2022-07-31 09:47:43'),(15,'default',0,'msp_securitysuite_recaptcha/backend/enabled','0','2022-07-31 09:47:43'),(16,'default',0,'twofactorauth/duo/application_key','OZXtQvUSaNrBmKswkyf5sowmt1nWzTE5ERZIm3rjBpjEoRqm5FLOOzhcI1iSV74I','2022-07-31 09:47:43'),(17,'default',0,'admin/usage/enabled','0','2022-07-31 09:53:29'),(18,'default',0,'general/country/default','IT','2022-07-31 11:54:50'),(19,'default',0,'general/country/destinations',NULL,'2022-07-31 11:54:50'),(20,'default',0,'general/locale/weight_unit','kgs','2022-07-31 11:54:50'),(21,'default',0,'general/locale/firstday','1','2022-07-31 11:54:50'),(22,'default',0,'general/store_information/name','Indaco','2022-07-31 11:54:50'),(23,'default',0,'general/store_information/phone','+39 0461 123456','2022-07-31 11:54:50'),(24,'default',0,'general/store_information/hours',NULL,'2022-07-31 11:54:50'),(25,'default',0,'general/store_information/country_id','IT','2022-07-31 11:54:50'),(26,'default',0,'general/store_information/region_id','909','2022-07-31 11:54:50'),(27,'default',0,'general/store_information/postcode','38121','2022-07-31 11:54:50'),(28,'default',0,'general/store_information/city','Trento','2022-07-31 11:54:50'),(29,'default',0,'general/store_information/street_line1',NULL,'2022-07-31 11:54:50'),(30,'default',0,'general/store_information/street_line2',NULL,'2022-07-31 11:54:50'),(31,'default',0,'general/store_information/merchant_vat_number','01234567890','2022-07-31 11:54:50'),(32,'default',0,'general/single_store_mode/enabled','0','2022-07-31 11:54:50'),(33,'default',0,'free/module/email','roberto@torresani.eu','2022-07-31 13:31:11'),(34,'default',0,'free/module/name','Roberto Torresani','2022-07-31 13:31:11'),(35,'default',0,'free/module/create','1','2022-07-31 13:31:11'),(36,'default',0,'free/module/subscribe','1','2022-07-31 13:31:11'),(37,'default',0,'smtp/module/active','1','2022-07-31 13:31:11'),(38,'default',0,'smtp/module/product_key','SMTP-M2Z6AERV7JUQ6C0I2FNC','2022-07-31 13:31:11'),(39,'default',0,'smtp/module/email','roberto@torresani.eu','2022-07-31 13:31:11'),(40,'default',0,'smtp/module/name','Roberto Torresani','2022-07-31 13:31:11'),(41,'default',0,'smtp/module/create','1','2022-07-31 13:31:11'),(42,'default',0,'smtp/module/subscribe','1','2022-07-31 13:31:11'),(43,'default',0,'smtp/general/enabled','1','2022-07-31 13:32:47'),(44,'default',0,'smtp/general/log_email','1','2022-07-31 13:32:47'),(45,'default',0,'smtp/general/clean_email','10','2022-07-31 13:32:47'),(46,'default',0,'smtp/general/blacklist',NULL,'2022-07-31 13:32:47'),(47,'default',0,'smtp/configuration_option/host','smtps.aruba.it','2022-07-31 13:32:47'),(48,'default',0,'smtp/configuration_option/port','465','2022-07-31 13:32:47'),(49,'default',0,'smtp/configuration_option/protocol','ssl','2022-07-31 13:32:47'),(50,'default',0,'smtp/configuration_option/authentication','plain','2022-07-31 13:32:47'),(51,'default',0,'smtp/configuration_option/username','posit@servicemail.biz','2022-07-31 13:32:47'),(52,'default',0,'smtp/configuration_option/password','0:3:m3+rGUK3gxmzWyOeod3sNkLR7ki7C9KixjK83990pli8aooAwf31','2022-07-31 13:32:47'),(53,'default',0,'smtp/configuration_option/return_path_email',NULL,'2022-07-31 13:32:47'),(54,'default',0,'smtp/configuration_option/test_email/from','general','2022-07-31 13:32:47'),(55,'default',0,'smtp/configuration_option/test_email/to',NULL,'2022-07-31 13:32:47'),(56,'default',0,'smtp/developer/developer_mode','0','2022-07-31 13:32:47'),(57,'default',0,'mageplaza/general/notice_enable','0','2022-07-31 13:33:51'),(58,'default',0,'mageplaza/general/menu','0','2022-07-31 13:33:51'),(59,'default',0,'buybutton/general_settings/access_key','6733f1af4dbc12f39ab4812ab0b0048cb15882db','2022-08-08 13:59:13'),(60,'default',0,'buybutton/general_settings/do_redirect','0','2022-08-08 13:59:13'),(61,'default',0,'oauth/consumer/enable_integration_as_bearer','0','2022-08-09 13:17:04'),(62,'default',0,'pr_gdpr_addon/general/enabled','1','2022-08-11 09:26:51'),(63,'default',0,'pr_gdpr_addon/general/serial','6kXqOVVCMpdJEnTXXahmrFd60KdC4WnL','2022-08-11 09:10:54'),(64,'default',0,'prgdpr/dashboard/protection_officer_email','dpo_TEST@indaco.store','2022-08-11 09:26:51'),(65,'default',0,'plumbase/notifications/enabled','1','2022-08-11 09:16:05'),(66,'default',0,'plumbase/menu/enabled','1','2022-08-11 09:16:05'),(67,'default',0,'plumbase/system/enabled_statistic','0','2022-08-11 09:16:05'),(68,'default',0,'plumbase/general/new_changes','1','2022-08-11 09:16:05'),(69,'default',0,'prgdpr/general/serial','6kXqOVVCMpdJEnTXXahmrFd60KdC4WnL','2022-08-11 09:16:16'),(70,'default',0,'prgdpr/general/enabled','1','2022-08-11 09:41:27'),(71,'default',0,'prgdpr/dashboard/privacy_policy_page','5','2022-08-23 07:59:48'),(72,'default',0,'prgdpr/dashboard/cookie_policy_page','5','2022-08-23 07:59:48'),(73,'default',0,'prgdpr/dashboard/guest_enable','1','2022-08-11 09:39:47'),(74,'default',0,'prgdpr/dashboard/guest_expiration_link','1','2022-08-11 09:39:47'),(75,'default',0,'prgdpr/removal_settings/anonymization_key','Deleted','2022-08-11 09:39:47'),(76,'default',0,'prgdpr/removal_settings/automatic_delete_requests/enabled','0','2022-08-11 09:39:47'),(77,'default',0,'prgdpr/email/sender_name','Support Team','2022-08-11 09:39:47'),(78,'default',0,'prgdpr/email/sender_email','data-privacy-support@example.com','2022-08-11 09:39:47'),(79,'default',0,'prgdpr/email/download_confirmation_template','prgdpr_email_download_confirmation_template','2022-08-11 09:39:47'),(80,'default',0,'prgdpr/email/removal_request_template','prgdpr_email_removal_request_template','2022-08-11 09:39:47'),(81,'default',0,'prgdpr/email/admin_removal_request_template','prgdpr_email_admin_removal_request_template','2022-08-11 09:39:47'),(82,'default',0,'prgdpr/email/automatic_removal_request_template','prgdpr_email_automatic_removal_request_template','2022-08-11 09:39:47'),(83,'default',0,'prgdpr/email/guest_email_template','prgdpr_email_guest_email_template','2022-08-11 09:39:47'),(84,'default',0,'pr_cookie/general/serial','6kXqOVVCMpdJEnTXXahmrFd60KdC4WnL','2022-08-11 09:40:44'),(85,'default',0,'pr_cookie/general/enabled','1','2022-08-11 09:58:13'),(86,'default',0,'pr_cookie/main_settings/geo_targeting','all','2022-08-11 09:58:13'),(87,'default',0,'pr_cookie/main_settings/states_geo_targeting','all','2022-08-11 09:58:13'),(88,'default',0,'pr_cookie/main_settings/use_cookie_before_opt_in','0','2022-08-11 09:58:13'),(89,'default',0,'pr_cookie/main_settings/consent_expiry','365','2022-08-11 09:58:13'),(90,'default',0,'pr_cookie/main_settings/block_unknown_cookie','0','2022-08-11 09:58:13'),(91,'default',0,'pr_cookie/main_settings/reload_after_accept','1','2022-08-11 09:58:13'),(92,'default',0,'pr_cookie/main_settings/reload_after_decline','0','2022-08-11 09:58:13'),(93,'default',0,'pr_cookie/cookie_notice/display_style','wall','2022-08-11 10:17:44'),(94,'default',0,'pr_cookie/cookie_notice/hide_on_urls',NULL,'2022-08-11 09:58:13'),(95,'default',0,'pr_cookie/cookie_notice/text','<p>Questo sito web richiede i cookie per fornire tutte le sue funzionalità. Per maggiori informazioni su quali dati sono contenuti nei cookie, consultare la nostra pagina Cookie Policy. Per accettare i cookie da questo sito, fare clic sul pulsante Accetta i cookie di seguito.</p>','2022-08-23 13:36:30'),(96,'default',0,'pr_cookie/cookie_notice/text_color','#e6e6e6','2022-08-11 09:58:13'),(97,'default',0,'pr_cookie/cookie_notice/background_color','#002244E3','2022-08-11 09:58:13'),(98,'default',0,'pr_cookie/cookie_notice/accept_button/label','Accetta i cookie','2022-08-23 13:36:30'),(99,'default',0,'pr_cookie/cookie_notice/accept_button/text_color',NULL,'2022-08-11 09:58:13'),(100,'default',0,'pr_cookie/cookie_notice/accept_button/text_color_on_hover',NULL,'2022-08-11 09:58:13'),(101,'default',0,'pr_cookie/cookie_notice/accept_button/background_color',NULL,'2022-08-11 09:58:13'),(102,'default',0,'pr_cookie/cookie_notice/accept_button/background_color_on_hover',NULL,'2022-08-11 09:58:13'),(103,'default',0,'pr_cookie/cookie_notice/decline_button/enabled','1','2022-08-11 09:58:13'),(104,'default',0,'pr_cookie/cookie_notice/decline_button/label','Rifiuta','2022-08-23 13:36:30'),(105,'default',0,'pr_cookie/cookie_notice/decline_button/text_color',NULL,'2022-08-11 09:58:13'),(106,'default',0,'pr_cookie/cookie_notice/decline_button/text_color_on_hover',NULL,'2022-08-11 09:58:13'),(107,'default',0,'pr_cookie/cookie_notice/decline_button/background_color',NULL,'2022-08-11 09:58:13'),(108,'default',0,'pr_cookie/cookie_notice/decline_button/background_color_on_hover',NULL,'2022-08-11 09:58:13'),(109,'default',0,'pr_cookie/cookie_notice/settings_button/enabled','1','2022-08-11 09:58:13'),(110,'default',0,'pr_cookie/cookie_notice/settings_button/label','Personalizza le impostazioni','2022-08-23 13:36:30'),(111,'default',0,'pr_cookie/cookie_notice/settings_button/type','link','2022-08-11 09:58:13'),(112,'default',0,'pr_cookie/cookie_notice/settings_button/link_color',NULL,'2022-08-11 09:58:13'),(113,'default',0,'pr_cookie/cookie_notice/settings_button/link_color_on_hover',NULL,'2022-08-11 09:58:13'),(114,'default',0,'pr_cookie/settings_bar/show_details','1','2022-08-11 09:58:13'),(115,'default',0,'pr_cookie/settings_bar/overview_title','Privacy e Cookie','2022-08-23 13:36:30'),(116,'default',0,'pr_cookie/settings_bar/overview_text','<p>Un cookie è un\'informazione memorizzata sul tuo computer da un sito web che visiti. I cookie consentono al sito di riconoscerti e tenere traccia delle tue preferenze. I siti Web di e-commerce inseriscono cookie nei browser dei visitatori per conservare le credenziali di accesso, identificare i clienti e fornire un\'esperienza di acquisto personalizzata.</p>\r\n<p>Rispettiamo la privacy delle persone e riconosciamo l\'importanza dei dati personali a noi affidati dai nostri clienti. Qualsiasi visitatore del sito web può scegliere di non consentire alcuni tipi di cookie. Fare clic sulle intestazioni delle categorie dei cookie e sui dettagli dei cookie per saperne di più e modificare le nostre impostazioni predefinite. Tuttavia, il blocco di alcuni tipi di cookie potrebbe influire sulla tua esperienza sul sito Web e impedirti di utilizzare tutte le funzionalità del nostro negozio.</p>','2022-08-23 13:36:30'),(117,'default',0,'pr_cookie/settings_bar/text_color','inherit','2022-08-11 09:58:13'),(118,'default',0,'pr_cookie/settings_bar/background_color','inherit','2022-08-11 09:58:13'),(119,'default',0,'pr_cookie/settings_bar/accept_button/label','Accetta tutti','2022-08-23 13:36:30'),(120,'default',0,'pr_cookie/settings_bar/accept_button/text_color',NULL,'2022-08-11 09:58:13'),(121,'default',0,'pr_cookie/settings_bar/accept_button/text_color_on_hover',NULL,'2022-08-11 09:58:13'),(122,'default',0,'pr_cookie/settings_bar/accept_button/background_color',NULL,'2022-08-11 09:58:13'),(123,'default',0,'pr_cookie/settings_bar/accept_button/background_color_on_hover',NULL,'2022-08-11 09:58:13'),(124,'default',0,'pr_cookie/settings_bar/decline_button/enabled','1','2022-08-11 09:58:13'),(125,'default',0,'pr_cookie/settings_bar/decline_button/label','Rifiuta tutti','2022-08-23 13:36:30'),(126,'default',0,'pr_cookie/settings_bar/decline_button/text_color',NULL,'2022-08-11 09:58:13'),(127,'default',0,'pr_cookie/settings_bar/decline_button/text_color_on_hover',NULL,'2022-08-11 09:58:13'),(128,'default',0,'pr_cookie/settings_bar/decline_button/background_color',NULL,'2022-08-11 09:58:13'),(129,'default',0,'pr_cookie/settings_bar/decline_button/background_color_on_hover',NULL,'2022-08-11 09:58:13'),(130,'default',0,'pr_cookie/settings_bar/confirm_button/label','Conferma le mie scelte','2022-08-23 13:36:30'),(131,'default',0,'pr_cookie/settings_bar/confirm_button/text_color',NULL,'2022-08-11 09:58:13'),(132,'default',0,'pr_cookie/settings_bar/confirm_button/text_color_on_hover',NULL,'2022-08-11 09:58:13'),(133,'default',0,'pr_cookie/settings_bar/confirm_button/background_color',NULL,'2022-08-11 09:58:13'),(134,'default',0,'pr_cookie/settings_bar/confirm_button/background_color_on_hover',NULL,'2022-08-11 09:58:13'),(135,'default',0,'pr_cookie/settings_link/show_footer_link','1','2022-08-11 09:58:13'),(136,'default',0,'pr_cookie/settings_link/widget_code','{{widget type=\"Plumrocket\\CookieConsent\\Block\\Widget\\CookieSettingsButton\" title=\"Cookie Settings\" template=\"widget/cookie_settings_button.phtml\"}}','2022-08-11 09:58:13'),(137,'default',0,'prgdpr/gtm/enabled','0','2022-08-11 09:58:13'),(138,'default',0,'web/unsecure/base_static_url',NULL,'2022-08-11 10:05:06'),(139,'default',0,'web/unsecure/base_media_url',NULL,'2022-08-11 10:05:06'),(140,'default',0,'web/secure/base_url','http://magento.test.indaco.store/','2022-08-11 10:05:06'),(141,'default',0,'web/secure/base_static_url',NULL,'2022-08-11 10:05:06'),(142,'default',0,'web/secure/base_media_url',NULL,'2022-08-11 10:05:06'),(143,'default',0,'web/secure/enable_hsts','0','2022-08-11 10:05:06'),(144,'default',0,'web/secure/enable_upgrade_insecure','0','2022-08-11 10:05:06'),(145,'default',0,'web/default_layouts/default_product_layout','product-full-width','2022-08-11 10:05:06'),(146,'default',0,'web/default_layouts/default_category_layout','category-full-width','2022-08-11 10:05:06'),(147,'default',0,'web/default_layouts/default_cms_layout','cms-full-width','2022-08-11 10:05:06'),(148,'default',0,'web/cookie/cookie_path',NULL,'2022-08-11 10:05:06'),(149,'default',0,'web/cookie/cookie_domain',NULL,'2022-08-11 10:05:06'),(150,'default',0,'web/cookie/cookie_httponly','0','2022-08-11 10:05:06'),(151,'default',0,'pr_cookie/cookie_notice/title','Utilizziamo i cookie','2022-08-23 13:36:30'),(152,'default',0,'pr_cookie/cookie_notice/title_color','#f6f6f6','2022-08-11 10:15:05'),(153,'default',0,'pr_cookie/cookie_notice/overlay_background_color',NULL,'2022-08-11 10:15:05'),(154,'default',0,'pr_cookie/cookie_notice/overlay_blur','0','2022-08-11 10:15:05'),(155,'default',0,'design/theme/theme_id','5','2022-08-19 15:41:19'),(156,'default',0,'design/pagination/pagination_frame','5','2022-08-19 15:41:19'),(157,'default',0,'design/pagination/pagination_frame_skip',NULL,'2022-08-19 15:41:19'),(158,'default',0,'design/pagination/anchor_text_for_previous',NULL,'2022-08-19 15:41:19'),(159,'default',0,'design/pagination/anchor_text_for_next',NULL,'2022-08-19 15:41:19'),(160,'default',0,'design/head/default_title','Magento Commerce','2022-08-19 15:41:19'),(161,'default',0,'design/head/title_prefix',NULL,'2022-08-19 15:41:19'),(162,'default',0,'design/head/title_suffix',NULL,'2022-08-19 15:41:19'),(163,'default',0,'design/head/default_description',NULL,'2022-08-19 15:41:19'),(164,'default',0,'design/head/default_keywords',NULL,'2022-08-19 15:41:19'),(165,'default',0,'design/head/includes',NULL,'2022-08-19 15:41:19'),(166,'default',0,'design/head/demonotice','0','2022-08-19 15:41:19'),(167,'default',0,'design/header/logo_width',NULL,'2022-08-19 15:41:19'),(168,'default',0,'design/header/logo_height',NULL,'2022-08-19 15:41:19'),(169,'default',0,'design/header/logo_alt',NULL,'2022-08-19 15:41:19'),(170,'default',0,'design/header/welcome','Default welcome msg!','2022-08-19 15:41:19'),(171,'default',0,'design/header/translate_title','1','2022-08-19 15:41:19'),(172,'default',0,'design/footer/copyright','Copyright © 2013-present Magento, Inc. All rights reserved.','2022-08-19 15:41:19'),(173,'default',0,'design/footer/absolute_footer',NULL,'2022-08-19 15:41:19'),(174,'default',0,'design/footer/report_bugs','1','2022-08-19 15:41:19'),(175,'default',0,'design/search_engine_robots/default_robots','INDEX,FOLLOW','2022-08-19 15:41:19'),(176,'default',0,'design/search_engine_robots/custom_instructions',NULL,'2022-08-19 15:41:19'),(177,'default',0,'design/watermark/image_size',NULL,'2022-08-19 15:41:19'),(178,'default',0,'design/watermark/image_imageOpacity',NULL,'2022-08-19 15:41:19'),(179,'default',0,'design/watermark/image_position','stretch','2022-08-19 15:41:19'),(180,'default',0,'design/watermark/small_image_size',NULL,'2022-08-19 15:41:19'),(181,'default',0,'design/watermark/small_image_imageOpacity',NULL,'2022-08-19 15:41:19'),(182,'default',0,'design/watermark/small_image_position','stretch','2022-08-19 15:41:19'),(183,'default',0,'design/watermark/thumbnail_size',NULL,'2022-08-19 15:41:19'),(184,'default',0,'design/watermark/thumbnail_imageOpacity',NULL,'2022-08-19 15:41:19'),(185,'default',0,'design/watermark/thumbnail_position','stretch','2022-08-19 15:41:19'),(186,'default',0,'design/email/logo_alt',NULL,'2022-08-19 15:41:19'),(187,'default',0,'design/email/logo_width',NULL,'2022-08-19 15:41:19'),(188,'default',0,'design/email/logo_height',NULL,'2022-08-19 15:41:19'),(189,'default',0,'design/email/header_template','design_email_header_template','2022-08-19 15:41:19'),(190,'default',0,'design/email/footer_template','design_email_footer_template','2022-08-19 15:41:19'),(191,'default',0,'prgeoiplookup/general/serial','6kXqOVVCMpdJEnTXXahmrFd60KdC4WnL','2022-08-23 13:37:58'),(192,'default',0,'prgeoiplookup/general/enabled','0','2022-08-23 13:37:58'),(193,'default',0,'system/full_page_cache/varnish/access_list','localhost','2022-09-06 10:40:12'),(194,'default',0,'system/full_page_cache/varnish/backend_host','localhost','2022-09-06 10:40:12'),(195,'default',0,'system/full_page_cache/varnish/backend_port','8080','2022-09-06 10:40:12'),(196,'default',0,'system/full_page_cache/varnish/grace_period','300','2022-09-06 10:40:12'),(197,'default',0,'cataloginventory/options/show_out_of_stock','1','2022-09-14 14:31:56'),(198,'default',0,'cataloginventory/source_selection_distance_based_google/api_key',NULL,'2022-09-14 14:31:56'),(199,'default',0,'catalog/review/active','0','2022-09-15 05:23:22'),(200,'default',0,'catalog/productalert_cron/frequency','D','2022-09-15 05:23:22'),(201,'default',0,'crontab/default/jobs/catalog_product_alert/schedule/cron_expr','0 0 * * *','2022-09-15 05:23:22'),(202,'default',0,'crontab/default/jobs/catalog_product_alert/run/model',NULL,'2022-09-15 05:23:22'),(203,'default',0,'catalog/productalert_cron/time','00,00,00','2022-09-15 05:23:22'),(204,'default',0,'catalog/productalert_cron/error_email',NULL,'2022-09-15 05:23:22'),(205,'default',0,'catalog/product_video/youtube_api_key',NULL,'2022-09-15 05:23:22'),(206,'default',0,'catalog/price/scope','0','2022-09-15 05:23:22'),(207,'default',0,'catalog/search/elasticsearch7_server_hostname','localhost','2022-09-15 05:23:22'),(208,'default',0,'catalog/search/elasticsearch7_server_port','9200','2022-09-15 05:23:22'),(209,'default',0,'catalog/search/elasticsearch7_index_prefix','magento2','2022-09-15 05:23:22'),(210,'default',0,'catalog/search/elasticsearch7_enable_auth','0','2022-09-15 05:23:22'),(211,'default',0,'catalog/search/elasticsearch7_server_timeout','15','2022-09-15 05:23:22'),(212,'default',0,'catalog/search/elasticsearch7_minimum_should_match',NULL,'2022-09-15 05:23:22'),(213,'default',0,'catalog/custom_options/use_calendar','0','2022-09-15 05:23:22'),(214,'default',0,'catalog/custom_options/year_range',',','2022-09-15 05:23:22'),(215,'default',0,'catalog/placeholder/image_placeholder',NULL,'2022-09-15 05:23:22'),(216,'default',0,'catalog/placeholder/small_image_placeholder',NULL,'2022-09-15 05:23:22'),(217,'default',0,'catalog/placeholder/thumbnail_placeholder',NULL,'2022-09-15 05:23:22'),(218,'default',0,'catalog/placeholder/swatch_image_placeholder',NULL,'2022-09-15 05:23:22'),(219,'default',0,'blog/general/enabled','0','2022-09-15 05:25:29'),(220,'default',0,'multishipping/options/checkout_multiple','0','2022-09-15 12:13:42');
/*!40000 ALTER TABLE `core_config_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cron_schedule`
--

DROP TABLE IF EXISTS `cron_schedule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cron_schedule` (
  `schedule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Schedule ID',
  `job_code` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Job Code',
  `status` varchar(7) NOT NULL DEFAULT 'pending' COMMENT 'Status',
  `messages` text DEFAULT NULL COMMENT 'Messages',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `scheduled_at` timestamp NULL DEFAULT NULL COMMENT 'Scheduled At',
  `executed_at` timestamp NULL DEFAULT NULL COMMENT 'Executed At',
  `finished_at` timestamp NULL DEFAULT NULL COMMENT 'Finished At',
  PRIMARY KEY (`schedule_id`),
  KEY `CRON_SCHEDULE_JOB_CODE_STATUS_SCHEDULED_AT` (`job_code`,`status`,`scheduled_at`)
) ENGINE=InnoDB AUTO_INCREMENT=227890 DEFAULT CHARSET=utf8 COMMENT='Cron Schedule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cron_schedule`
--

LOCK TABLES `cron_schedule` WRITE;
/*!40000 ALTER TABLE `cron_schedule` DISABLE KEYS */;
INSERT INTO `cron_schedule` VALUES (161124,'catalog_index_refresh_price','error','SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens, query was: SELECT `cat`.`entity_id` FROM `catalog_product_entity_datetime` AS `attr`\n LEFT JOIN `catalog_product_entity` AS `cat` ON cat.entity_id= attr.entity_id WHERE (attr.attribute_id = \'79\') AND (attr.store_id = \'0\') AND (attr.value = DATE_FORMAT(\'2022-09-14\', \'%Y-%m-%d %H:%i:%s\'))','2022-09-13 21:45:02','2022-09-13 22:00:00','2022-09-13 22:00:02',NULL),(186149,'catalog_index_refresh_price','error','SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens, query was: SELECT `cat`.`entity_id` FROM `catalog_product_entity_datetime` AS `attr`\n LEFT JOIN `catalog_product_entity` AS `cat` ON cat.entity_id= attr.entity_id WHERE (attr.attribute_id = \'79\') AND (attr.store_id = \'0\') AND (attr.value = DATE_FORMAT(\'2022-09-15\', \'%Y-%m-%d %H:%i:%s\'))','2022-09-14 21:55:02','2022-09-14 22:00:00','2022-09-14 22:00:02',NULL),(210864,'catalog_index_refresh_price','error','SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens, query was: SELECT `cat`.`entity_id` FROM `catalog_product_entity_datetime` AS `attr`\n LEFT JOIN `catalog_product_entity` AS `cat` ON cat.entity_id= attr.entity_id WHERE (attr.attribute_id = \'79\') AND (attr.store_id = \'0\') AND (attr.value = DATE_FORMAT(\'2022-09-16\', \'%Y-%m-%d %H:%i:%s\'))','2022-09-15 21:46:01','2022-09-15 22:00:00','2022-09-15 22:00:02',NULL),(226450,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:02:00','2022-09-16 13:02:02','2022-09-16 13:02:02'),(226451,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:03:00','2022-09-16 13:03:03','2022-09-16 13:03:03'),(226452,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226453,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226454,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226455,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:07:00','2022-09-16 13:07:01','2022-09-16 13:07:02'),(226465,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:02:00','2022-09-16 13:02:02','2022-09-16 13:02:02'),(226466,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:03:00','2022-09-16 13:03:03','2022-09-16 13:03:03'),(226467,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226468,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226469,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226470,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226473,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226483,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:02:00','2022-09-16 13:02:02','2022-09-16 13:02:02'),(226484,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:03:00','2022-09-16 13:03:03','2022-09-16 13:03:03'),(226485,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226486,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226487,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226488,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226500,'sales_grid_order_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:02:00','2022-09-16 13:02:02','2022-09-16 13:02:02'),(226501,'sales_grid_order_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:03:00','2022-09-16 13:03:03','2022-09-16 13:03:03'),(226502,'sales_grid_order_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226503,'sales_grid_order_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226504,'sales_grid_order_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226505,'sales_grid_order_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226515,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:02:00','2022-09-16 13:02:02','2022-09-16 13:02:02'),(226516,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:03:00','2022-09-16 13:03:03','2022-09-16 13:03:03'),(226517,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226518,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226519,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226520,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226532,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 12:48:02','2022-09-16 13:02:00','2022-09-16 13:02:02','2022-09-16 13:02:02'),(226533,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:03:00','2022-09-16 13:03:03','2022-09-16 13:03:04'),(226534,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226535,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226536,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226537,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226547,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:02:00','2022-09-16 13:02:02','2022-09-16 13:02:02'),(226548,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:03:00','2022-09-16 13:03:04','2022-09-16 13:03:04'),(226549,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226550,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226551,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226552,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226562,'sales_send_order_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:02:00','2022-09-16 13:02:03','2022-09-16 13:02:03'),(226563,'sales_send_order_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:03:00','2022-09-16 13:03:04','2022-09-16 13:03:04'),(226564,'sales_send_order_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226565,'sales_send_order_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226566,'sales_send_order_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226567,'sales_send_order_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226577,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:02:00','2022-09-16 13:02:03','2022-09-16 13:02:03'),(226578,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:03:00','2022-09-16 13:03:04','2022-09-16 13:03:04'),(226579,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226580,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226581,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226582,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226592,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:02:00','2022-09-16 13:02:03','2022-09-16 13:02:03'),(226593,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:03:00','2022-09-16 13:03:04','2022-09-16 13:03:04'),(226594,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226595,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226596,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226597,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226607,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:02:00','2022-09-16 13:02:02','2022-09-16 13:02:02'),(226608,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:03:00','2022-09-16 13:03:04','2022-09-16 13:03:04'),(226609,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226610,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226611,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226612,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226624,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:02:00','2022-09-16 13:02:02','2022-09-16 13:02:02'),(226625,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:03:00','2022-09-16 13:03:04','2022-09-16 13:03:04'),(226626,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226627,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226628,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:06:00','2022-09-16 13:06:02','2022-09-16 13:06:02'),(226629,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226635,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:02:00','2022-09-16 13:02:02','2022-09-16 13:02:02'),(226636,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226637,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:06:00','2022-09-16 13:06:03','2022-09-16 13:06:03'),(226640,'newsletter_send_all','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226650,'bulk_cleanup','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:02:00','2022-09-16 13:02:02','2022-09-16 13:02:02'),(226651,'bulk_cleanup','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:03:00','2022-09-16 13:03:04','2022-09-16 13:03:04'),(226652,'bulk_cleanup','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:04:00','2022-09-16 13:04:02','2022-09-16 13:04:02'),(226653,'bulk_cleanup','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:05:00','2022-09-16 13:05:02','2022-09-16 13:05:02'),(226654,'bulk_cleanup','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:06:00','2022-09-16 13:06:03','2022-09-16 13:06:03'),(226655,'bulk_cleanup','success',NULL,'2022-09-16 12:48:03','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226673,'consumers_runner','success',NULL,'2022-09-16 12:50:02','2022-09-16 13:05:00','2022-09-16 13:05:03','2022-09-16 13:05:03'),(226674,'consumers_runner','success',NULL,'2022-09-16 12:50:02','2022-09-16 13:06:00','2022-09-16 13:06:03','2022-09-16 13:06:04'),(226675,'consumers_runner','success',NULL,'2022-09-16 12:50:02','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:03'),(226676,'consumers_runner','success',NULL,'2022-09-16 12:50:02','2022-09-16 13:08:00','2022-09-16 13:08:03','2022-09-16 13:08:03'),(226677,'consumers_runner','success',NULL,'2022-09-16 12:50:02','2022-09-16 13:09:00','2022-09-16 13:09:03','2022-09-16 13:09:04'),(226700,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:02:03','2022-09-16 13:05:00','2022-09-16 13:05:03','2022-09-16 13:05:03'),(226702,'indexer_update_all_views','success',NULL,'2022-09-16 13:02:03','2022-09-16 13:05:00','2022-09-16 13:05:03','2022-09-16 13:05:03'),(226703,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226704,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:09:00','2022-09-16 13:09:02','2022-09-16 13:09:02'),(226705,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226706,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226707,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:12:00','2022-09-16 13:12:02','2022-09-16 13:12:02'),(226708,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226709,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:14:00','2022-09-16 13:14:01','2022-09-16 13:14:01'),(226710,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226711,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226712,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226713,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:18:00','2022-09-16 13:18:01','2022-09-16 13:18:01'),(226714,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:19:00','2022-09-16 13:19:01','2022-09-16 13:19:01'),(226715,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226716,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226717,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226718,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226719,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:09:00','2022-09-16 13:09:02','2022-09-16 13:09:02'),(226720,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226721,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226722,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:12:00','2022-09-16 13:12:02','2022-09-16 13:12:02'),(226723,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226724,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:14:00','2022-09-16 13:14:01','2022-09-16 13:14:01'),(226725,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226726,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226727,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226728,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:18:00','2022-09-16 13:18:01','2022-09-16 13:18:01'),(226729,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:19:00','2022-09-16 13:19:01','2022-09-16 13:19:01'),(226730,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226731,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226732,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226733,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226734,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226735,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226736,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226737,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:09:00','2022-09-16 13:09:02','2022-09-16 13:09:02'),(226738,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226739,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226740,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:12:00','2022-09-16 13:12:02','2022-09-16 13:12:02'),(226741,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226742,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:14:00','2022-09-16 13:14:01','2022-09-16 13:14:01'),(226743,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226744,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226745,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226746,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:18:00','2022-09-16 13:18:01','2022-09-16 13:18:01'),(226747,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:19:00','2022-09-16 13:19:01','2022-09-16 13:19:01'),(226748,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226749,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226750,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226751,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226752,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:09:00','2022-09-16 13:09:02','2022-09-16 13:09:02'),(226753,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226754,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226755,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226756,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226757,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:14:00','2022-09-16 13:14:01','2022-09-16 13:14:01'),(226758,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226759,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226760,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226761,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:18:00','2022-09-16 13:18:01','2022-09-16 13:18:01'),(226762,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:19:00','2022-09-16 13:19:01','2022-09-16 13:19:01'),(226763,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226764,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226765,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226766,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226767,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:09:00','2022-09-16 13:09:02','2022-09-16 13:09:02'),(226768,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226769,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226770,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226771,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226772,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(226773,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226774,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226775,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226776,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:18:00','2022-09-16 13:18:01','2022-09-16 13:18:01'),(226777,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:19:00','2022-09-16 13:19:01','2022-09-16 13:19:01'),(226778,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226779,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226780,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:03:02','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226781,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226782,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:09:00','2022-09-16 13:09:02','2022-09-16 13:09:02'),(226783,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226784,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226785,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226786,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226787,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(226788,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226789,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226790,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226791,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:18:00','2022-09-16 13:18:01','2022-09-16 13:18:01'),(226792,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:19:00','2022-09-16 13:19:01','2022-09-16 13:19:01'),(226793,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226794,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226795,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226796,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226797,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:09:00','2022-09-16 13:09:02','2022-09-16 13:09:02'),(226798,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226799,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226800,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226801,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226802,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(226803,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226804,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226805,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226806,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:18:00','2022-09-16 13:18:01','2022-09-16 13:18:01'),(226807,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:19:00','2022-09-16 13:19:02','2022-09-16 13:19:02'),(226808,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226809,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226810,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226811,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226812,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:09:00','2022-09-16 13:09:03','2022-09-16 13:09:03'),(226813,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226814,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:06:00','2022-09-16 13:06:03','2022-09-16 13:06:03'),(226815,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226816,'indexer_update_all_views','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:06:00','2022-09-16 13:06:03','2022-09-16 13:06:03'),(226817,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226818,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226819,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(226820,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226821,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226822,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226823,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:18:00','2022-09-16 13:18:01','2022-09-16 13:18:01'),(226824,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:19:00','2022-09-16 13:19:02','2022-09-16 13:19:02'),(226825,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226826,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226827,'sales_send_order_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226828,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226829,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:09:00','2022-09-16 13:09:03','2022-09-16 13:09:03'),(226830,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226831,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226832,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226833,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226834,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(226835,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226836,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226837,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226838,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:18:00','2022-09-16 13:18:01','2022-09-16 13:18:01'),(226839,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:19:00','2022-09-16 13:19:02','2022-09-16 13:19:02'),(226840,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226841,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226842,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226843,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226844,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:09:00','2022-09-16 13:09:03','2022-09-16 13:09:03'),(226845,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226846,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226847,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226848,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226849,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(226850,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226851,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226852,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226853,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:18:00','2022-09-16 13:18:01','2022-09-16 13:18:01'),(226854,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:19:00','2022-09-16 13:19:02','2022-09-16 13:19:02'),(226855,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226856,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226857,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226858,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226859,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:09:00','2022-09-16 13:09:03','2022-09-16 13:09:03'),(226860,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226861,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226862,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226863,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226864,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(226865,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226866,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226867,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226868,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:18:00','2022-09-16 13:18:01','2022-09-16 13:18:01'),(226869,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:19:00','2022-09-16 13:19:02','2022-09-16 13:19:02'),(226870,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226871,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226872,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226873,'captcha_delete_expired_images','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226874,'captcha_delete_expired_images','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226875,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226876,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:09:00','2022-09-16 13:09:03','2022-09-16 13:09:03'),(226877,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226878,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226879,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226880,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226881,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(226882,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226883,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:16:00','2022-09-16 13:16:02','2022-09-16 13:16:02'),(226884,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226885,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:18:00','2022-09-16 13:18:02','2022-09-16 13:18:02'),(226886,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:19:00','2022-09-16 13:19:02','2022-09-16 13:19:02'),(226887,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226888,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226889,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226890,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226891,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226892,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226893,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(226894,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:16:00','2022-09-16 13:16:03','2022-09-16 13:16:03'),(226895,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:18:00','2022-09-16 13:18:02','2022-09-16 13:18:02'),(226896,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226897,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226898,'newsletter_send_all','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226899,'newsletter_send_all','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226900,'newsletter_send_all','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226901,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:08:00','2022-09-16 13:08:02','2022-09-16 13:08:02'),(226902,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:09:00','2022-09-16 13:09:03','2022-09-16 13:09:03'),(226903,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226904,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:11:00','2022-09-16 13:11:04','2022-09-16 13:11:04'),(226905,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226906,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:13:00','2022-09-16 13:13:02','2022-09-16 13:13:02'),(226907,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(226908,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(226909,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:16:00','2022-09-16 13:16:03','2022-09-16 13:16:03'),(226910,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:17:00','2022-09-16 13:17:02','2022-09-16 13:17:02'),(226911,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:18:00','2022-09-16 13:18:02','2022-09-16 13:18:02'),(226912,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:19:00','2022-09-16 13:19:02','2022-09-16 13:19:02'),(226913,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226914,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(226915,'bulk_cleanup','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:22:00','2022-09-16 13:22:02','2022-09-16 13:22:02'),(226916,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226917,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2022-09-16 13:03:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(226918,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:05:02','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226919,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:05:02','2022-09-16 13:08:00','2022-09-16 13:08:03','2022-09-16 13:08:03'),(226920,'indexer_update_all_views','success',NULL,'2022-09-16 13:05:02','2022-09-16 13:07:00','2022-09-16 13:07:02','2022-09-16 13:07:02'),(226921,'indexer_update_all_views','success',NULL,'2022-09-16 13:05:02','2022-09-16 13:08:00','2022-09-16 13:08:03','2022-09-16 13:08:03'),(226922,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:10:00','2022-09-16 13:10:03','2022-09-16 13:10:03'),(226923,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:11:00','2022-09-16 13:11:03','2022-09-16 13:11:04'),(226924,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226925,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:13:00','2022-09-16 13:13:03','2022-09-16 13:13:04'),(226926,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:03'),(226927,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:03'),(226928,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:16:00','2022-09-16 13:16:03','2022-09-16 13:16:03'),(226929,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:17:00','2022-09-16 13:17:03','2022-09-16 13:17:04'),(226930,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:18:00','2022-09-16 13:18:02','2022-09-16 13:18:03'),(226931,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:19:00','2022-09-16 13:19:02','2022-09-16 13:19:03'),(226932,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:03'),(226933,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:03'),(226934,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:22:00','2022-09-16 13:22:03','2022-09-16 13:22:03'),(226935,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:23:00','2022-09-16 13:23:03','2022-09-16 13:23:03'),(226936,'consumers_runner','success',NULL,'2022-09-16 13:05:03','2022-09-16 13:24:00','2022-09-16 13:24:03','2022-09-16 13:24:04'),(226937,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:06:03','2022-09-16 13:09:00','2022-09-16 13:09:03','2022-09-16 13:09:03'),(226938,'indexer_update_all_views','success',NULL,'2022-09-16 13:06:03','2022-09-16 13:09:00','2022-09-16 13:09:03','2022-09-16 13:09:03'),(226939,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:08:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226940,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:08:03','2022-09-16 13:11:00','2022-09-16 13:11:03','2022-09-16 13:11:03'),(226941,'indexer_update_all_views','success',NULL,'2022-09-16 13:08:03','2022-09-16 13:10:00','2022-09-16 13:10:02','2022-09-16 13:10:02'),(226942,'indexer_update_all_views','success',NULL,'2022-09-16 13:08:03','2022-09-16 13:11:00','2022-09-16 13:11:03','2022-09-16 13:11:03'),(226943,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:09:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226944,'indexer_update_all_views','success',NULL,'2022-09-16 13:09:03','2022-09-16 13:12:00','2022-09-16 13:12:03','2022-09-16 13:12:03'),(226945,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(226946,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:24:00','2022-09-16 13:24:02','2022-09-16 13:24:02'),(226947,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:25:00','2022-09-16 13:25:01','2022-09-16 13:25:02'),(226948,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(226949,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:27:00','2022-09-16 13:27:01','2022-09-16 13:27:01'),(226950,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:28:00','2022-09-16 13:28:01','2022-09-16 13:28:02'),(226951,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(226952,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(226953,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(226954,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:24:00','2022-09-16 13:24:02','2022-09-16 13:24:02'),(226955,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:25:00','2022-09-16 13:25:01','2022-09-16 13:25:01'),(226956,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(226957,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:27:00','2022-09-16 13:27:01','2022-09-16 13:27:01'),(226958,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(226959,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(226960,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(226961,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:25:00','2022-09-16 13:25:01','2022-09-16 13:25:01'),(226962,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(226963,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(226964,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:24:00','2022-09-16 13:24:02','2022-09-16 13:24:02'),(226965,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(226966,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(226967,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:27:00','2022-09-16 13:27:01','2022-09-16 13:27:01'),(226968,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(226969,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(226970,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(226971,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(226972,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:24:00','2022-09-16 13:24:02','2022-09-16 13:24:02'),(226973,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(226974,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(226975,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:27:00','2022-09-16 13:27:01','2022-09-16 13:27:01'),(226976,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(226977,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(226978,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(226979,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(226980,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:24:00','2022-09-16 13:24:02','2022-09-16 13:24:02'),(226981,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(226982,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(226983,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:27:00','2022-09-16 13:27:01','2022-09-16 13:27:01'),(226984,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(226985,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(226986,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(226987,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(226988,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:24:00','2022-09-16 13:24:02','2022-09-16 13:24:02'),(226989,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(226990,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(226991,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:27:00','2022-09-16 13:27:01','2022-09-16 13:27:01'),(226992,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(226993,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(226994,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(226995,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(226996,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:24:00','2022-09-16 13:24:02','2022-09-16 13:24:02'),(226997,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(226998,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(226999,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:27:00','2022-09-16 13:27:01','2022-09-16 13:27:01'),(227000,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(227001,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(227002,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227003,'sales_send_order_emails','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(227004,'sales_send_order_emails','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:24:00','2022-09-16 13:24:03','2022-09-16 13:24:03'),(227005,'sales_send_order_emails','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(227006,'sales_send_order_emails','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(227007,'sales_send_order_emails','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:27:00','2022-09-16 13:27:01','2022-09-16 13:27:01'),(227008,'sales_send_order_emails','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(227009,'sales_send_order_emails','success',NULL,'2022-09-16 13:11:02','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(227010,'sales_send_order_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227011,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(227012,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:24:00','2022-09-16 13:24:03','2022-09-16 13:24:03'),(227013,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(227014,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(227015,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:27:00','2022-09-16 13:27:01','2022-09-16 13:27:01'),(227016,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(227017,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(227018,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227019,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(227020,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:24:00','2022-09-16 13:24:03','2022-09-16 13:24:03'),(227021,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(227022,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(227023,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:27:00','2022-09-16 13:27:01','2022-09-16 13:27:01'),(227024,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(227025,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(227026,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227027,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(227028,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:24:00','2022-09-16 13:24:02','2022-09-16 13:24:02'),(227029,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(227030,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(227031,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:27:00','2022-09-16 13:27:01','2022-09-16 13:27:01'),(227032,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(227033,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(227034,'consumers_runner','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:03'),(227035,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227036,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:13:00','2022-09-16 13:13:03','2022-09-16 13:13:03'),(227037,'captcha_delete_old_attempts','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227038,'consumers_runner','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:26:00','2022-09-16 13:26:02','2022-09-16 13:26:03'),(227039,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(227040,'captcha_delete_expired_images','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227041,'consumers_runner','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:27:00','2022-09-16 13:27:02','2022-09-16 13:27:03'),(227042,'indexer_update_all_views','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:13:00','2022-09-16 13:13:03','2022-09-16 13:13:03'),(227043,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(227044,'consumers_runner','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:03'),(227045,'indexer_update_all_views','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:14:00','2022-09-16 13:14:02','2022-09-16 13:14:02'),(227046,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:24:00','2022-09-16 13:24:02','2022-09-16 13:24:02'),(227047,'consumers_runner','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:03'),(227048,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(227049,'consumers_runner','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:30:00','2022-09-16 13:30:03','2022-09-16 13:30:03'),(227050,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(227051,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:27:00','2022-09-16 13:27:02','2022-09-16 13:27:02'),(227052,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(227053,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(227054,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227055,'mysqlmq_clean_messages','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227056,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:24:00','2022-09-16 13:24:02','2022-09-16 13:24:02'),(227057,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:26:00','2022-09-16 13:26:03','2022-09-16 13:26:03'),(227058,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(227059,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227060,'newsletter_send_all','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(227061,'newsletter_send_all','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227062,'bulk_cleanup','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:23:00','2022-09-16 13:23:02','2022-09-16 13:23:02'),(227063,'bulk_cleanup','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:24:00','2022-09-16 13:24:02','2022-09-16 13:24:02'),(227064,'bulk_cleanup','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:25:00','2022-09-16 13:25:01','2022-09-16 13:25:01'),(227065,'bulk_cleanup','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:26:00','2022-09-16 13:26:04','2022-09-16 13:26:04'),(227066,'bulk_cleanup','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:27:00','2022-09-16 13:27:02','2022-09-16 13:27:02'),(227067,'bulk_cleanup','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(227068,'bulk_cleanup','success',NULL,'2022-09-16 13:11:03','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(227069,'bulk_cleanup','success',NULL,'2022-09-16 13:11:04','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227070,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2022-09-16 13:11:04','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227071,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:12:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(227072,'indexer_update_all_views','success',NULL,'2022-09-16 13:12:03','2022-09-16 13:15:00','2022-09-16 13:15:02','2022-09-16 13:15:02'),(227073,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:13:03','2022-09-16 13:16:00','2022-09-16 13:16:03','2022-09-16 13:16:03'),(227074,'indexer_update_all_views','success',NULL,'2022-09-16 13:13:03','2022-09-16 13:16:00','2022-09-16 13:16:03','2022-09-16 13:16:03'),(227075,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:15:02','2022-09-16 13:17:00','2022-09-16 13:17:03','2022-09-16 13:17:03'),(227076,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:15:02','2022-09-16 13:18:00','2022-09-16 13:18:02','2022-09-16 13:18:02'),(227077,'indexer_update_all_views','success',NULL,'2022-09-16 13:15:02','2022-09-16 13:17:00','2022-09-16 13:17:03','2022-09-16 13:17:03'),(227078,'indexer_update_all_views','success',NULL,'2022-09-16 13:15:02','2022-09-16 13:18:00','2022-09-16 13:18:02','2022-09-16 13:18:02'),(227079,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:16:03','2022-09-16 13:19:00','2022-09-16 13:19:02','2022-09-16 13:19:02'),(227080,'indexer_update_all_views','success',NULL,'2022-09-16 13:16:03','2022-09-16 13:19:00','2022-09-16 13:19:02','2022-09-16 13:19:02'),(227081,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:17:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(227082,'indexer_update_all_views','success',NULL,'2022-09-16 13:17:03','2022-09-16 13:20:00','2022-09-16 13:20:02','2022-09-16 13:20:02'),(227083,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:19:02','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(227084,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:19:02','2022-09-16 13:22:00','2022-09-16 13:22:03','2022-09-16 13:22:03'),(227085,'indexer_update_all_views','success',NULL,'2022-09-16 13:19:02','2022-09-16 13:21:00','2022-09-16 13:21:02','2022-09-16 13:21:02'),(227086,'indexer_update_all_views','success',NULL,'2022-09-16 13:19:02','2022-09-16 13:22:00','2022-09-16 13:22:03','2022-09-16 13:22:03'),(227087,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:20:02','2022-09-16 13:23:00','2022-09-16 13:23:03','2022-09-16 13:23:03'),(227088,'indexer_update_all_views','success',NULL,'2022-09-16 13:20:02','2022-09-16 13:23:00','2022-09-16 13:23:03','2022-09-16 13:23:03'),(227089,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:21:02','2022-09-16 13:24:00','2022-09-16 13:24:03','2022-09-16 13:24:03'),(227090,'indexer_update_all_views','success',NULL,'2022-09-16 13:21:02','2022-09-16 13:24:00','2022-09-16 13:24:03','2022-09-16 13:24:03'),(227091,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:22:03','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(227092,'indexer_update_all_views','success',NULL,'2022-09-16 13:22:03','2022-09-16 13:25:00','2022-09-16 13:25:02','2022-09-16 13:25:02'),(227093,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:23:03','2022-09-16 13:26:00','2022-09-16 13:26:02','2022-09-16 13:26:02'),(227094,'indexer_update_all_views','success',NULL,'2022-09-16 13:23:03','2022-09-16 13:26:00','2022-09-16 13:26:02','2022-09-16 13:26:02'),(227095,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:24:03','2022-09-16 13:27:00','2022-09-16 13:27:02','2022-09-16 13:27:02'),(227096,'indexer_update_all_views','success',NULL,'2022-09-16 13:24:03','2022-09-16 13:27:00','2022-09-16 13:27:02','2022-09-16 13:27:02'),(227097,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227098,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227099,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:33:00','2022-09-16 13:33:01','2022-09-16 13:33:01'),(227100,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227101,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227102,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227103,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227104,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:38:00','2022-09-16 13:38:02','2022-09-16 13:38:02'),(227105,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:39:00','2022-09-16 13:39:01','2022-09-16 13:39:01'),(227106,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227107,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:41:00','2022-09-16 13:41:03','2022-09-16 13:41:03'),(227108,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227109,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227110,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227111,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227112,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227113,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227114,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:33:00','2022-09-16 13:33:01','2022-09-16 13:33:01'),(227115,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227116,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227117,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227118,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227119,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:38:00','2022-09-16 13:38:02','2022-09-16 13:38:02'),(227120,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:39:00','2022-09-16 13:39:01','2022-09-16 13:39:01'),(227121,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227122,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227123,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227124,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227125,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227126,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227127,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227128,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227129,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227130,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227131,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227132,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:33:00','2022-09-16 13:33:01','2022-09-16 13:33:01'),(227133,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227134,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227135,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227136,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227137,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:38:00','2022-09-16 13:38:02','2022-09-16 13:38:02'),(227138,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:39:00','2022-09-16 13:39:01','2022-09-16 13:39:02'),(227139,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227140,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227141,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227142,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227143,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227144,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227145,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227146,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227147,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:33:00','2022-09-16 13:33:01','2022-09-16 13:33:01'),(227148,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227149,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227150,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227151,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227152,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:38:00','2022-09-16 13:38:02','2022-09-16 13:38:02'),(227153,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:39:00','2022-09-16 13:39:02','2022-09-16 13:39:02'),(227154,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227155,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227156,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227157,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227158,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227159,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227160,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227161,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227162,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:33:00','2022-09-16 13:33:01','2022-09-16 13:33:02'),(227163,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227164,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227165,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227166,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227167,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:38:00','2022-09-16 13:38:02','2022-09-16 13:38:02'),(227168,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:39:00','2022-09-16 13:39:02','2022-09-16 13:39:02'),(227169,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227170,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227171,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227172,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227173,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227174,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227175,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227176,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227177,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:33:00','2022-09-16 13:33:02','2022-09-16 13:33:02'),(227178,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227179,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227180,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227181,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227182,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:38:00','2022-09-16 13:38:02','2022-09-16 13:38:02'),(227183,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:39:00','2022-09-16 13:39:02','2022-09-16 13:39:02'),(227184,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227185,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227186,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227187,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227188,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227189,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227190,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227191,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(227192,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227193,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(227194,'indexer_update_all_views','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:28:00','2022-09-16 13:28:02','2022-09-16 13:28:02'),(227195,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:33:00','2022-09-16 13:33:02','2022-09-16 13:33:02'),(227196,'indexer_update_all_views','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:29:00','2022-09-16 13:29:02','2022-09-16 13:29:02'),(227197,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227198,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227199,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227200,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227201,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:38:00','2022-09-16 13:38:02','2022-09-16 13:38:02'),(227202,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:39:00','2022-09-16 13:39:02','2022-09-16 13:39:02'),(227203,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227204,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227205,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227206,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227207,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227208,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227209,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227210,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227211,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:33:00','2022-09-16 13:33:02','2022-09-16 13:33:02'),(227212,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227213,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227214,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227215,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227216,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:38:00','2022-09-16 13:38:03','2022-09-16 13:38:03'),(227217,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:39:00','2022-09-16 13:39:02','2022-09-16 13:39:02'),(227218,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227219,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227220,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227221,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227222,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227223,'sales_send_order_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227224,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227225,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227226,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:02','2022-09-16 13:33:00','2022-09-16 13:33:02','2022-09-16 13:33:02'),(227227,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227228,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227229,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227230,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227231,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:38:00','2022-09-16 13:38:03','2022-09-16 13:38:03'),(227232,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:39:00','2022-09-16 13:39:02','2022-09-16 13:39:02'),(227233,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227234,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227235,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227236,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227237,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227238,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227239,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227240,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227241,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:33:00','2022-09-16 13:33:02','2022-09-16 13:33:02'),(227242,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227243,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227244,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227245,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227246,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:38:00','2022-09-16 13:38:03','2022-09-16 13:38:03'),(227247,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:39:00','2022-09-16 13:39:02','2022-09-16 13:39:02'),(227248,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227249,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227250,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227251,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227252,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227253,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227254,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227255,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227256,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:33:00','2022-09-16 13:33:02','2022-09-16 13:33:02'),(227257,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227258,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227259,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227260,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227261,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:38:00','2022-09-16 13:38:03','2022-09-16 13:38:03'),(227262,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:39:00','2022-09-16 13:39:02','2022-09-16 13:39:02'),(227263,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227264,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227265,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227266,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227267,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227268,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227269,'captcha_delete_expired_images','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227270,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227271,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:01'),(227272,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:33:00','2022-09-16 13:33:02','2022-09-16 13:33:02'),(227273,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227274,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227275,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227276,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227277,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:38:00','2022-09-16 13:38:02','2022-09-16 13:38:02'),(227278,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:39:00','2022-09-16 13:39:01','2022-09-16 13:39:01'),(227279,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227280,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227281,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227282,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227283,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227284,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227285,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:32:00','2022-09-16 13:32:01','2022-09-16 13:32:02'),(227286,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227287,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227288,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:38:00','2022-09-16 13:38:02','2022-09-16 13:38:02'),(227289,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227290,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227291,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227292,'newsletter_send_all','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227293,'newsletter_send_all','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227294,'newsletter_send_all','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227295,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:31:00','2022-09-16 13:31:02','2022-09-16 13:31:02'),(227296,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:32:00','2022-09-16 13:32:02','2022-09-16 13:32:02'),(227297,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:33:00','2022-09-16 13:33:02','2022-09-16 13:33:02'),(227298,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227299,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227300,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:36:00','2022-09-16 13:36:02','2022-09-16 13:36:02'),(227301,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:37:00','2022-09-16 13:37:02','2022-09-16 13:37:02'),(227302,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:38:00','2022-09-16 13:38:02','2022-09-16 13:38:02'),(227303,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:39:00','2022-09-16 13:39:01','2022-09-16 13:39:01'),(227304,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:40:00','2022-09-16 13:40:01','2022-09-16 13:40:01'),(227305,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:41:00','2022-09-16 13:41:04','2022-09-16 13:41:04'),(227306,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227307,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227308,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:44:00','2022-09-16 13:44:02','2022-09-16 13:44:02'),(227309,'bulk_cleanup','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:45:00','2022-09-16 13:45:02','2022-09-16 13:45:02'),(227310,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2022-09-16 13:26:03','2022-09-16 13:40:00','2022-09-16 13:40:01','2022-09-16 13:40:02'),(227311,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:30:00','2022-09-16 13:30:02','2022-09-16 13:30:02'),(227312,'indexer_update_all_views','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:30:00','2022-09-16 13:30:03','2022-09-16 13:30:03'),(227313,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:31:00','2022-09-16 13:31:03','2022-09-16 13:31:03'),(227314,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:32:00','2022-09-16 13:32:02','2022-09-16 13:32:03'),(227315,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:33:00','2022-09-16 13:33:02','2022-09-16 13:33:03'),(227316,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:03'),(227317,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:03'),(227318,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:36:00','2022-09-16 13:36:03','2022-09-16 13:36:03'),(227319,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:37:00','2022-09-16 13:37:03','2022-09-16 13:37:03'),(227320,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:38:00','2022-09-16 13:38:03','2022-09-16 13:38:04'),(227321,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:39:00','2022-09-16 13:39:02','2022-09-16 13:39:03'),(227322,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:03'),(227323,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:41:00','2022-09-16 13:41:02','2022-09-16 13:41:03'),(227324,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:03'),(227325,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:43:00','2022-09-16 13:43:03','2022-09-16 13:43:03'),(227326,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:44:00','2022-09-16 13:44:03','2022-09-16 13:44:03'),(227327,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:45:00','2022-09-16 13:45:03','2022-09-16 13:45:03'),(227328,'consumers_runner','success',NULL,'2022-09-16 13:27:02','2022-09-16 13:46:00','2022-09-16 13:46:03','2022-09-16 13:46:04'),(227329,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:28:02','2022-09-16 13:31:00','2022-09-16 13:31:03','2022-09-16 13:31:03'),(227330,'indexer_update_all_views','success',NULL,'2022-09-16 13:28:02','2022-09-16 13:31:00','2022-09-16 13:31:03','2022-09-16 13:31:03'),(227331,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:29:02','2022-09-16 13:32:00','2022-09-16 13:32:02','2022-09-16 13:32:02'),(227332,'indexer_update_all_views','success',NULL,'2022-09-16 13:29:02','2022-09-16 13:32:00','2022-09-16 13:32:02','2022-09-16 13:32:02'),(227333,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:30:02','2022-09-16 13:33:00','2022-09-16 13:33:02','2022-09-16 13:33:02'),(227334,'indexer_update_all_views','success',NULL,'2022-09-16 13:30:02','2022-09-16 13:33:00','2022-09-16 13:33:02','2022-09-16 13:33:02'),(227335,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:31:03','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227336,'indexer_update_all_views','success',NULL,'2022-09-16 13:31:03','2022-09-16 13:34:00','2022-09-16 13:34:02','2022-09-16 13:34:02'),(227337,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:33:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227338,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:33:02','2022-09-16 13:36:00','2022-09-16 13:36:03','2022-09-16 13:36:03'),(227339,'indexer_update_all_views','success',NULL,'2022-09-16 13:33:02','2022-09-16 13:35:00','2022-09-16 13:35:02','2022-09-16 13:35:02'),(227340,'indexer_update_all_views','success',NULL,'2022-09-16 13:33:02','2022-09-16 13:36:00','2022-09-16 13:36:03','2022-09-16 13:36:03'),(227341,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:34:02','2022-09-16 13:37:00','2022-09-16 13:37:03','2022-09-16 13:37:03'),(227342,'indexer_update_all_views','success',NULL,'2022-09-16 13:34:02','2022-09-16 13:37:00','2022-09-16 13:37:03','2022-09-16 13:37:03'),(227343,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:35:02','2022-09-16 13:38:00','2022-09-16 13:38:03','2022-09-16 13:38:03'),(227344,'indexer_update_all_views','success',NULL,'2022-09-16 13:35:02','2022-09-16 13:38:00','2022-09-16 13:38:03','2022-09-16 13:38:03'),(227345,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:36:02','2022-09-16 13:39:00','2022-09-16 13:39:02','2022-09-16 13:39:02'),(227346,'indexer_update_all_views','success',NULL,'2022-09-16 13:36:03','2022-09-16 13:39:00','2022-09-16 13:39:02','2022-09-16 13:39:02'),(227347,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:37:03','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227348,'indexer_update_all_views','success',NULL,'2022-09-16 13:37:03','2022-09-16 13:40:00','2022-09-16 13:40:02','2022-09-16 13:40:02'),(227349,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:38:03','2022-09-16 13:41:00','2022-09-16 13:41:02','2022-09-16 13:41:02'),(227350,'indexer_update_all_views','success',NULL,'2022-09-16 13:38:03','2022-09-16 13:41:00','2022-09-16 13:41:02','2022-09-16 13:41:02'),(227351,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:40:02','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227352,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:40:02','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227353,'indexer_update_all_views','success',NULL,'2022-09-16 13:40:02','2022-09-16 13:42:00','2022-09-16 13:42:02','2022-09-16 13:42:02'),(227354,'indexer_update_all_views','success',NULL,'2022-09-16 13:40:02','2022-09-16 13:43:00','2022-09-16 13:43:02','2022-09-16 13:43:02'),(227355,'security_deactivate_expired_users','success',NULL,'2022-09-16 13:41:02','2022-09-16 14:00:00','2022-09-16 14:00:02','2022-09-16 14:00:02'),(227356,'catalog_index_refresh_price','success',NULL,'2022-09-16 13:41:02','2022-09-16 14:00:00','2022-09-16 14:00:02','2022-09-16 14:00:02'),(227357,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227358,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227359,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:48:00','2022-09-16 13:48:01','2022-09-16 13:48:01'),(227360,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:49:00','2022-09-16 13:49:01','2022-09-16 13:49:01'),(227361,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227362,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227363,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227364,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227365,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:54:00','2022-09-16 13:54:02','2022-09-16 13:54:02'),(227366,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:55:00','2022-09-16 13:55:01','2022-09-16 13:55:01'),(227367,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:56:00','2022-09-16 13:56:01','2022-09-16 13:56:02'),(227368,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227369,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227370,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227371,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 14:00:00','2022-09-16 14:00:02','2022-09-16 14:00:02'),(227372,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227373,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227374,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:48:00','2022-09-16 13:48:01','2022-09-16 13:48:01'),(227375,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:49:00','2022-09-16 13:49:01','2022-09-16 13:49:01'),(227376,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227377,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227378,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227379,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227380,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:54:00','2022-09-16 13:54:02','2022-09-16 13:54:02'),(227381,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:55:00','2022-09-16 13:55:01','2022-09-16 13:55:01'),(227382,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:56:00','2022-09-16 13:56:01','2022-09-16 13:56:01'),(227383,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227384,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227385,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227386,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:41:02','2022-09-16 14:00:00','2022-09-16 14:00:02','2022-09-16 14:00:02'),(227387,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227388,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:55:00','2022-09-16 13:55:01','2022-09-16 13:55:01'),(227389,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:41:02','2022-09-16 14:00:00','2022-09-16 14:00:02','2022-09-16 14:00:02'),(227390,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227391,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227392,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:48:00','2022-09-16 13:48:01','2022-09-16 13:48:01'),(227393,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:49:00','2022-09-16 13:49:01','2022-09-16 13:49:01'),(227394,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227395,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227396,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227397,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227398,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:54:00','2022-09-16 13:54:02','2022-09-16 13:54:02'),(227399,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:55:00','2022-09-16 13:55:01','2022-09-16 13:55:01'),(227400,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227401,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227402,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227403,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227404,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 14:00:00','2022-09-16 14:00:02','2022-09-16 14:00:02'),(227405,'expired_tokens_cleanup','success',NULL,'2022-09-16 13:41:02','2022-09-16 14:00:00','2022-09-16 14:00:02','2022-09-16 14:00:02'),(227406,'sales_clean_orders','success',NULL,'2022-09-16 13:41:02','2022-09-16 14:00:00','2022-09-16 14:00:02','2022-09-16 14:00:02'),(227407,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227408,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227409,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227410,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227411,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227412,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227413,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227414,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227415,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:54:00','2022-09-16 13:54:02','2022-09-16 13:54:02'),(227416,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:55:00','2022-09-16 13:55:01','2022-09-16 13:55:01'),(227417,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227418,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227419,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227420,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227421,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 14:00:00','2022-09-16 14:00:02','2022-09-16 14:00:02'),(227422,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227423,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227424,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227425,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227426,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227427,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227428,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227429,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227430,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:54:00','2022-09-16 13:54:02','2022-09-16 13:54:03'),(227431,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:55:00','2022-09-16 13:55:02','2022-09-16 13:55:02'),(227432,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227433,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227434,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227435,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227436,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 14:00:00','2022-09-16 14:00:02','2022-09-16 14:00:03'),(227437,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:44:00','2022-09-16 13:44:03','2022-09-16 13:44:03'),(227438,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227439,'indexer_update_all_views','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:44:00','2022-09-16 13:44:03','2022-09-16 13:44:03'),(227440,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227441,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227442,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227443,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227444,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227445,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227446,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227447,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:54:00','2022-09-16 13:54:03','2022-09-16 13:54:03'),(227448,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:55:00','2022-09-16 13:55:02','2022-09-16 13:55:02'),(227449,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227450,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227451,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227452,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227453,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227454,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227455,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:02','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227456,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227457,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227458,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227459,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227460,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227461,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227462,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:54:00','2022-09-16 13:54:02','2022-09-16 13:54:02'),(227463,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:55:00','2022-09-16 13:55:01','2022-09-16 13:55:01'),(227464,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227465,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227466,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227467,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227468,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227469,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227470,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227471,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227472,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227473,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227474,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227475,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227476,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227477,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:54:00','2022-09-16 13:54:03','2022-09-16 13:54:03'),(227478,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:55:00','2022-09-16 13:55:02','2022-09-16 13:55:02'),(227479,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227480,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227481,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227482,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227483,'sales_send_order_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227484,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227485,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227486,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227487,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227488,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227489,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227490,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227491,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227492,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:54:00','2022-09-16 13:54:03','2022-09-16 13:54:03'),(227493,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:55:00','2022-09-16 13:55:02','2022-09-16 13:55:02'),(227494,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227495,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227496,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227497,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227498,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227499,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227500,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227501,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227502,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227503,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227504,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227505,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227506,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227507,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:54:00','2022-09-16 13:54:03','2022-09-16 13:54:03'),(227508,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:55:00','2022-09-16 13:55:02','2022-09-16 13:55:02'),(227509,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227510,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227511,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227512,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227513,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227514,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227515,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227516,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227517,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227518,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227519,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227520,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227521,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227522,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:54:00','2022-09-16 13:54:03','2022-09-16 13:54:03'),(227523,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:55:00','2022-09-16 13:55:02','2022-09-16 13:55:02'),(227524,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227525,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227526,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227527,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227528,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227529,'captcha_delete_old_attempts','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227530,'captcha_delete_expired_images','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227531,'captcha_delete_expired_images','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227532,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227533,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:47:00','2022-09-16 13:47:01','2022-09-16 13:47:01'),(227534,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227535,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227536,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227537,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227538,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227539,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227540,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:54:00','2022-09-16 13:54:02','2022-09-16 13:54:02'),(227541,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:55:00','2022-09-16 13:55:01','2022-09-16 13:55:01'),(227542,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227543,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227544,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227545,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227546,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227547,'messagequeue_clean_outdated_locks','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227548,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227549,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227550,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227551,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227552,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:54:00','2022-09-16 13:54:02','2022-09-16 13:54:02'),(227553,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227554,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227555,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227556,'newsletter_send_all','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227557,'newsletter_send_all','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:55:00','2022-09-16 13:55:01','2022-09-16 13:55:01'),(227558,'newsletter_send_all','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227559,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:46:00','2022-09-16 13:46:02','2022-09-16 13:46:02'),(227560,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:47:00','2022-09-16 13:47:02','2022-09-16 13:47:02'),(227561,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227562,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227563,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227564,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227565,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:02'),(227566,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:53:00','2022-09-16 13:53:02','2022-09-16 13:53:02'),(227567,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:54:00','2022-09-16 13:54:02','2022-09-16 13:54:02'),(227568,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:55:00','2022-09-16 13:55:01','2022-09-16 13:55:01'),(227569,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:56:00','2022-09-16 13:56:01','2022-09-16 13:56:01'),(227570,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227571,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:58:00','2022-09-16 13:58:02','2022-09-16 13:58:02'),(227572,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:59:00','2022-09-16 13:59:02','2022-09-16 13:59:02'),(227573,'bulk_cleanup','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227574,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2022-09-16 13:41:03','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227575,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227576,'prgdpr_delete_schedule','success',NULL,'2022-09-16 13:41:03','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227577,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:45:00','2022-09-16 13:45:03','2022-09-16 13:45:03'),(227578,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:47:00','2022-09-16 13:47:02','2022-09-16 13:47:03'),(227579,'indexer_update_all_views','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:45:00','2022-09-16 13:45:03','2022-09-16 13:45:03'),(227580,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:03'),(227581,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:03'),(227582,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:03'),(227583,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:03'),(227584,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:52:00','2022-09-16 13:52:03','2022-09-16 13:52:03'),(227585,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:53:00','2022-09-16 13:53:03','2022-09-16 13:53:03'),(227586,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:54:00','2022-09-16 13:54:03','2022-09-16 13:54:04'),(227587,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:55:00','2022-09-16 13:55:02','2022-09-16 13:55:03'),(227588,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:03'),(227589,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:57:00','2022-09-16 13:57:03','2022-09-16 13:57:03'),(227590,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:58:00','2022-09-16 13:58:03','2022-09-16 13:58:03'),(227591,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 13:59:00','2022-09-16 13:59:03','2022-09-16 13:59:03'),(227592,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:04'),(227593,'consumers_runner','success',NULL,'2022-09-16 13:42:02','2022-09-16 14:01:00','2022-09-16 14:01:03','2022-09-16 14:01:03'),(227594,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:43:02','2022-09-16 13:46:00','2022-09-16 13:46:03','2022-09-16 13:46:03'),(227595,'indexer_update_all_views','success',NULL,'2022-09-16 13:43:02','2022-09-16 13:46:00','2022-09-16 13:46:03','2022-09-16 13:46:03'),(227596,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:44:03','2022-09-16 13:47:00','2022-09-16 13:47:02','2022-09-16 13:47:02'),(227597,'indexer_update_all_views','success',NULL,'2022-09-16 13:44:03','2022-09-16 13:47:00','2022-09-16 13:47:02','2022-09-16 13:47:02'),(227598,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:45:03','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227599,'indexer_update_all_views','success',NULL,'2022-09-16 13:45:03','2022-09-16 13:48:00','2022-09-16 13:48:02','2022-09-16 13:48:02'),(227600,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:46:03','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227601,'indexer_update_all_views','success',NULL,'2022-09-16 13:46:03','2022-09-16 13:49:00','2022-09-16 13:49:02','2022-09-16 13:49:02'),(227602,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:48:02','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227603,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:48:02','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227604,'indexer_update_all_views','success',NULL,'2022-09-16 13:48:02','2022-09-16 13:50:00','2022-09-16 13:50:02','2022-09-16 13:50:02'),(227605,'indexer_update_all_views','success',NULL,'2022-09-16 13:48:02','2022-09-16 13:51:00','2022-09-16 13:51:02','2022-09-16 13:51:02'),(227606,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:49:02','2022-09-16 13:52:00','2022-09-16 13:52:02','2022-09-16 13:52:03'),(227607,'indexer_update_all_views','success',NULL,'2022-09-16 13:49:02','2022-09-16 13:52:00','2022-09-16 13:52:03','2022-09-16 13:52:03'),(227608,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:50:02','2022-09-16 13:53:00','2022-09-16 13:53:03','2022-09-16 13:53:03'),(227609,'indexer_update_all_views','success',NULL,'2022-09-16 13:50:02','2022-09-16 13:53:00','2022-09-16 13:53:03','2022-09-16 13:53:03'),(227610,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:51:02','2022-09-16 13:54:00','2022-09-16 13:54:03','2022-09-16 13:54:03'),(227611,'indexer_update_all_views','success',NULL,'2022-09-16 13:51:02','2022-09-16 13:54:00','2022-09-16 13:54:03','2022-09-16 13:54:03'),(227612,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:52:02','2022-09-16 13:55:00','2022-09-16 13:55:02','2022-09-16 13:55:02'),(227613,'indexer_update_all_views','success',NULL,'2022-09-16 13:52:02','2022-09-16 13:55:00','2022-09-16 13:55:02','2022-09-16 13:55:02'),(227614,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:53:03','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227615,'indexer_update_all_views','success',NULL,'2022-09-16 13:53:03','2022-09-16 13:56:00','2022-09-16 13:56:02','2022-09-16 13:56:02'),(227616,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:54:03','2022-09-16 13:57:00','2022-09-16 13:57:02','2022-09-16 13:57:02'),(227617,'indexer_update_all_views','success',NULL,'2022-09-16 13:54:03','2022-09-16 13:57:00','2022-09-16 13:57:02','2022-09-16 13:57:02'),(227618,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:56:02','2022-09-16 13:58:00','2022-09-16 13:58:03','2022-09-16 13:58:03'),(227619,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:56:02','2022-09-16 13:59:00','2022-09-16 13:59:03','2022-09-16 13:59:03'),(227620,'indexer_update_all_views','success',NULL,'2022-09-16 13:56:02','2022-09-16 13:58:00','2022-09-16 13:58:03','2022-09-16 13:58:03'),(227621,'indexer_update_all_views','success',NULL,'2022-09-16 13:56:02','2022-09-16 13:59:00','2022-09-16 13:59:03','2022-09-16 13:59:03'),(227622,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227623,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227624,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:03:00','2022-09-16 14:03:01','2022-09-16 14:03:01'),(227625,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227626,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227627,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227628,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:07:00','2022-09-16 14:07:01','2022-09-16 14:07:01'),(227629,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227630,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227631,'catalog_product_outdated_price_values_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227632,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:11:00',NULL,NULL),(227633,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:12:00',NULL,NULL),(227634,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:13:00',NULL,NULL),(227635,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:14:00',NULL,NULL),(227636,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227637,'catalog_product_outdated_price_values_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:16:00',NULL,NULL),(227638,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227639,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227640,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:03:00','2022-09-16 14:03:01','2022-09-16 14:03:01'),(227641,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227642,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227643,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227644,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:07:00','2022-09-16 14:07:01','2022-09-16 14:07:02'),(227645,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227646,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227647,'catalog_product_frontend_actions_flush','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227648,'catalog_product_frontend_actions_flush','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:11:00',NULL,NULL),(227649,'catalog_product_frontend_actions_flush','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:12:00',NULL,NULL),(227650,'catalog_product_frontend_actions_flush','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:13:00',NULL,NULL),(227651,'catalog_product_frontend_actions_flush','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:14:00',NULL,NULL),(227652,'catalog_product_frontend_actions_flush','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227653,'catalog_product_frontend_actions_flush','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:16:00',NULL,NULL),(227654,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227655,'catalog_product_attribute_value_synchronize','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227656,'catalog_product_attribute_value_synchronize','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227657,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227658,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227659,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227660,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227661,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227662,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227663,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227664,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227665,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227666,'outdated_authentication_failures_cleanup','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227667,'outdated_authentication_failures_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:11:00',NULL,NULL),(227668,'outdated_authentication_failures_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:12:00',NULL,NULL),(227669,'outdated_authentication_failures_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:13:00',NULL,NULL),(227670,'outdated_authentication_failures_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:14:00',NULL,NULL),(227671,'outdated_authentication_failures_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227672,'outdated_authentication_failures_cleanup','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:16:00',NULL,NULL),(227673,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227674,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227675,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227676,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227677,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227678,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227679,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227680,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227681,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227682,'sales_grid_order_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227683,'sales_grid_order_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:11:00',NULL,NULL),(227684,'sales_grid_order_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:12:00',NULL,NULL),(227685,'sales_grid_order_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:13:00',NULL,NULL),(227686,'sales_grid_order_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:14:00',NULL,NULL),(227687,'sales_grid_order_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227688,'sales_grid_order_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:16:00',NULL,NULL),(227689,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227690,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227691,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227692,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227693,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227694,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227695,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227696,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227697,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227698,'sales_grid_order_invoice_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227699,'sales_grid_order_invoice_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:11:00',NULL,NULL),(227700,'sales_grid_order_invoice_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:12:00',NULL,NULL),(227701,'sales_grid_order_invoice_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:13:00',NULL,NULL),(227702,'sales_grid_order_invoice_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:14:00',NULL,NULL),(227703,'sales_grid_order_invoice_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227704,'sales_grid_order_invoice_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:16:00',NULL,NULL),(227705,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227706,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227707,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227708,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227709,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227710,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227711,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227712,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227713,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227714,'sales_grid_order_shipment_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227715,'sales_grid_order_shipment_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:11:00',NULL,NULL),(227716,'sales_grid_order_shipment_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:12:00',NULL,NULL),(227717,'sales_grid_order_shipment_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:13:00',NULL,NULL),(227718,'sales_grid_order_shipment_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:14:00',NULL,NULL),(227719,'sales_grid_order_shipment_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227720,'sales_grid_order_shipment_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:16:00',NULL,NULL),(227721,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227722,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227723,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227724,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227725,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227726,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227727,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227728,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227729,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227730,'sales_grid_order_creditmemo_async_insert','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227731,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:11:00',NULL,NULL),(227732,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:12:00',NULL,NULL),(227733,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:13:00',NULL,NULL),(227734,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:14:00',NULL,NULL),(227735,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227736,'sales_grid_order_creditmemo_async_insert','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:16:00',NULL,NULL),(227737,'sales_send_order_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227738,'sales_send_order_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227739,'sales_send_order_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227740,'sales_send_order_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227741,'sales_send_order_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227742,'sales_send_order_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227743,'sales_send_order_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227744,'sales_send_order_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227745,'sales_send_order_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227746,'sales_send_order_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227747,'sales_send_order_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:11:00',NULL,NULL),(227748,'sales_send_order_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:12:00',NULL,NULL),(227749,'sales_send_order_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:13:00',NULL,NULL),(227750,'sales_send_order_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:14:00',NULL,NULL),(227751,'sales_send_order_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227752,'sales_send_order_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:16:00',NULL,NULL),(227753,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227754,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227755,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227756,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227757,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227758,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227759,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227760,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227761,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227762,'sales_send_order_invoice_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227763,'sales_send_order_invoice_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:11:00',NULL,NULL),(227764,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227765,'sales_send_order_invoice_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:12:00',NULL,NULL),(227766,'indexer_update_all_views','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227767,'sales_send_order_invoice_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:13:00',NULL,NULL),(227768,'indexer_clean_all_changelogs','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:00:00','2022-09-16 14:00:03','2022-09-16 14:00:03'),(227769,'sales_send_order_invoice_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:14:00',NULL,NULL),(227770,'sales_send_order_invoice_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227771,'sales_send_order_invoice_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:16:00',NULL,NULL),(227772,'consumers_runner','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:02:00','2022-09-16 14:02:03','2022-09-16 14:02:04'),(227773,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227774,'consumers_runner','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:03'),(227775,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227776,'consumers_runner','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:03'),(227777,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227778,'consumers_runner','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:03','2022-09-16 14:05:03'),(227779,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227780,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227781,'consumers_runner','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:06:00','2022-09-16 14:06:03','2022-09-16 14:06:04'),(227782,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227783,'consumers_runner','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:03'),(227784,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227785,'consumers_runner','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:03'),(227786,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227787,'consumers_runner','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:09:00','2022-09-16 14:09:03','2022-09-16 14:09:03'),(227788,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227789,'consumers_runner','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:03','2022-09-16 14:10:03'),(227790,'sales_send_order_shipment_emails','success',NULL,'2022-09-16 13:57:02','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227791,'consumers_runner','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:11:00',NULL,NULL),(227792,'sales_send_order_shipment_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:11:00',NULL,NULL),(227793,'consumers_runner','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:12:00',NULL,NULL),(227794,'sales_send_order_shipment_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:12:00',NULL,NULL),(227795,'consumers_runner','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:13:00',NULL,NULL),(227796,'sales_send_order_shipment_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:13:00',NULL,NULL),(227797,'consumers_runner','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:14:00',NULL,NULL),(227798,'sales_send_order_shipment_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:14:00',NULL,NULL),(227799,'consumers_runner','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227800,'sales_send_order_shipment_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:15:00',NULL,NULL),(227801,'consumers_runner','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:16:00',NULL,NULL),(227802,'sales_send_order_shipment_emails','pending',NULL,'2022-09-16 13:57:02','2022-09-16 14:16:00',NULL,NULL),(227803,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227804,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227805,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227806,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227807,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227808,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227809,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227810,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227811,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227812,'sales_send_order_creditmemo_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227813,'sales_send_order_creditmemo_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:11:00',NULL,NULL),(227814,'sales_send_order_creditmemo_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:12:00',NULL,NULL),(227815,'sales_send_order_creditmemo_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:13:00',NULL,NULL),(227816,'sales_send_order_creditmemo_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:14:00',NULL,NULL),(227817,'sales_send_order_creditmemo_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:15:00',NULL,NULL),(227818,'sales_send_order_creditmemo_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:16:00',NULL,NULL),(227819,'captcha_delete_expired_images','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227820,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227821,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227822,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227823,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227824,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227825,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227826,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227827,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227828,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227829,'inventory_in_store_pickup_sales_send_order_notified_emails','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227830,'inventory_in_store_pickup_sales_send_order_notified_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:11:00',NULL,NULL),(227831,'inventory_in_store_pickup_sales_send_order_notified_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:12:00',NULL,NULL),(227832,'inventory_in_store_pickup_sales_send_order_notified_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:13:00',NULL,NULL),(227833,'inventory_in_store_pickup_sales_send_order_notified_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:14:00',NULL,NULL),(227834,'inventory_in_store_pickup_sales_send_order_notified_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:15:00',NULL,NULL),(227835,'inventory_in_store_pickup_sales_send_order_notified_emails','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:16:00',NULL,NULL),(227836,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:02'),(227837,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227838,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:02'),(227839,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227840,'magento_newrelicreporting_cron','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227841,'magento_newrelicreporting_cron','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:12:00',NULL,NULL),(227842,'magento_newrelicreporting_cron','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:14:00',NULL,NULL),(227843,'magento_newrelicreporting_cron','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:16:00',NULL,NULL),(227844,'newsletter_send_all','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227845,'newsletter_send_all','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227846,'newsletter_send_all','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:15:00',NULL,NULL),(227847,'bulk_cleanup','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227848,'bulk_cleanup','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:02:00','2022-09-16 14:02:02','2022-09-16 14:02:03'),(227849,'bulk_cleanup','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227850,'bulk_cleanup','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:04:00','2022-09-16 14:04:02','2022-09-16 14:04:02'),(227851,'bulk_cleanup','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:05:00','2022-09-16 14:05:02','2022-09-16 14:05:02'),(227852,'bulk_cleanup','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:06:00','2022-09-16 14:06:02','2022-09-16 14:06:03'),(227853,'bulk_cleanup','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227854,'bulk_cleanup','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227855,'bulk_cleanup','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:09:00','2022-09-16 14:09:02','2022-09-16 14:09:02'),(227856,'bulk_cleanup','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227857,'bulk_cleanup','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:11:00',NULL,NULL),(227858,'bulk_cleanup','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:12:00',NULL,NULL),(227859,'bulk_cleanup','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:13:00',NULL,NULL),(227860,'bulk_cleanup','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:14:00',NULL,NULL),(227861,'bulk_cleanup','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:15:00',NULL,NULL),(227862,'bulk_cleanup','pending',NULL,'2022-09-16 13:57:03','2022-09-16 14:16:00',NULL,NULL),(227863,'bulk_mark_incomplete_operations_as_failed','success',NULL,'2022-09-16 13:57:03','2022-09-16 14:10:00','2022-09-16 14:10:02','2022-09-16 14:10:02'),(227864,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:58:03','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227865,'indexer_update_all_views','success',NULL,'2022-09-16 13:58:03','2022-09-16 14:01:00','2022-09-16 14:01:02','2022-09-16 14:01:02'),(227866,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 13:59:03','2022-09-16 14:02:00','2022-09-16 14:02:03','2022-09-16 14:02:03'),(227867,'indexer_update_all_views','success',NULL,'2022-09-16 13:59:03','2022-09-16 14:02:00','2022-09-16 14:02:03','2022-09-16 14:02:03'),(227868,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 14:00:03','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227869,'indexer_update_all_views','success',NULL,'2022-09-16 14:00:03','2022-09-16 14:03:00','2022-09-16 14:03:02','2022-09-16 14:03:02'),(227870,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 14:02:03','2022-09-16 14:04:00','2022-09-16 14:04:03','2022-09-16 14:04:03'),(227871,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 14:02:03','2022-09-16 14:05:00','2022-09-16 14:05:03','2022-09-16 14:05:03'),(227872,'indexer_update_all_views','success',NULL,'2022-09-16 14:02:03','2022-09-16 14:04:00','2022-09-16 14:04:03','2022-09-16 14:04:03'),(227873,'indexer_update_all_views','success',NULL,'2022-09-16 14:02:03','2022-09-16 14:05:00','2022-09-16 14:05:03','2022-09-16 14:05:03'),(227874,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 14:04:02','2022-09-16 14:06:00','2022-09-16 14:06:03','2022-09-16 14:06:03'),(227875,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 14:04:02','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227876,'indexer_update_all_views','success',NULL,'2022-09-16 14:04:02','2022-09-16 14:06:00','2022-09-16 14:06:03','2022-09-16 14:06:03'),(227877,'indexer_update_all_views','success',NULL,'2022-09-16 14:04:02','2022-09-16 14:07:00','2022-09-16 14:07:02','2022-09-16 14:07:02'),(227878,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 14:05:03','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227879,'indexer_update_all_views','success',NULL,'2022-09-16 14:05:03','2022-09-16 14:08:00','2022-09-16 14:08:02','2022-09-16 14:08:02'),(227880,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 14:06:03','2022-09-16 14:09:00','2022-09-16 14:09:03','2022-09-16 14:09:03'),(227881,'indexer_update_all_views','success',NULL,'2022-09-16 14:06:03','2022-09-16 14:09:00','2022-09-16 14:09:03','2022-09-16 14:09:03'),(227882,'indexer_reindex_all_invalid','success',NULL,'2022-09-16 14:08:02','2022-09-16 14:10:00','2022-09-16 14:10:03','2022-09-16 14:10:03'),(227883,'indexer_reindex_all_invalid','pending',NULL,'2022-09-16 14:08:02','2022-09-16 14:11:00',NULL,NULL),(227884,'indexer_update_all_views','success',NULL,'2022-09-16 14:08:02','2022-09-16 14:10:00','2022-09-16 14:10:03','2022-09-16 14:10:03'),(227885,'indexer_update_all_views','pending',NULL,'2022-09-16 14:08:02','2022-09-16 14:11:00',NULL,NULL),(227886,'indexer_reindex_all_invalid','pending',NULL,'2022-09-16 14:09:03','2022-09-16 14:12:00',NULL,NULL),(227887,'indexer_update_all_views','pending',NULL,'2022-09-16 14:09:03','2022-09-16 14:12:00',NULL,NULL),(227888,'indexer_reindex_all_invalid','pending',NULL,'2022-09-16 14:10:03','2022-09-16 14:13:00',NULL,NULL),(227889,'indexer_update_all_views','pending',NULL,'2022-09-16 14:10:03','2022-09-16 14:13:00',NULL,NULL);
/*!40000 ALTER TABLE `cron_schedule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_address_entity`
--

DROP TABLE IF EXISTS `customer_address_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Active',
  `city` varchar(255) NOT NULL COMMENT 'City',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `country_id` varchar(255) NOT NULL COMMENT 'Country',
  `fax` varchar(255) DEFAULT NULL COMMENT 'Fax',
  `firstname` varchar(255) NOT NULL COMMENT 'First Name',
  `lastname` varchar(255) NOT NULL COMMENT 'Last Name',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middle Name',
  `postcode` varchar(255) DEFAULT NULL COMMENT 'Zip/Postal Code',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Name Prefix',
  `region` varchar(255) DEFAULT NULL COMMENT 'State/Province',
  `region_id` int(10) unsigned DEFAULT NULL COMMENT 'State/Province',
  `street` text NOT NULL COMMENT 'Street Address',
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Name Suffix',
  `telephone` varchar(255) NOT NULL COMMENT 'Phone Number',
  `vat_id` varchar(255) DEFAULT NULL COMMENT 'VAT number',
  `vat_is_valid` int(10) unsigned DEFAULT NULL COMMENT 'VAT number validity',
  `vat_request_date` varchar(255) DEFAULT NULL COMMENT 'VAT number validation request date',
  `vat_request_id` varchar(255) DEFAULT NULL COMMENT 'VAT number validation request ID',
  `vat_request_success` int(10) unsigned DEFAULT NULL COMMENT 'VAT number validation request success',
  PRIMARY KEY (`entity_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_PARENT_ID` (`parent_id`),
  CONSTRAINT `CUSTOMER_ADDRESS_ENTITY_PARENT_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity`
--

LOCK TABLES `customer_address_entity` WRITE;
/*!40000 ALTER TABLE `customer_address_entity` DISABLE KEYS */;
INSERT INTO `customer_address_entity` VALUES (1,NULL,1,'2022-08-04 16:23:32','2022-08-04 16:23:32',1,'Trento',NULL,'IT',NULL,'Roberto','Torresani',NULL,'38121',NULL,'Trento',909,'Via Trentino',NULL,'3404922491',NULL,NULL,NULL,NULL,NULL),(2,NULL,2,'2022-08-09 08:08:25','2022-08-09 08:08:25',1,'Trento',NULL,'IT',NULL,'Daniele','Dellagiacoma',NULL,'38121',NULL,'Trento',909,'via Kufstein, 5',NULL,'3462547685',NULL,NULL,NULL,NULL,NULL),(3,NULL,3,'2022-08-25 06:18:02','2022-08-25 06:18:02',1,'trento','Test','IT',NULL,'Mara','Giongo',NULL,'38122',NULL,'Trento',909,'test',NULL,'333333333333',NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `customer_address_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_address_entity_datetime`
--

DROP TABLE IF EXISTS `customer_address_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_DTIME_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Datetime';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_datetime`
--

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

--
-- Table structure for table `customer_address_entity_decimal`
--

DROP TABLE IF EXISTS `customer_address_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_DEC_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Decimal';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_decimal`
--

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

--
-- Table structure for table `customer_address_entity_int`
--

DROP TABLE IF EXISTS `customer_address_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` int(11) NOT NULL DEFAULT 0 COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_INT_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Int';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_int`
--

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

--
-- Table structure for table `customer_address_entity_text`
--

DROP TABLE IF EXISTS `customer_address_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CSTR_ADDR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_TEXT_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Text';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_text`
--

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

--
-- Table structure for table `customer_address_entity_varchar`
--

DROP TABLE IF EXISTS `customer_address_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_address_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ADDRESS_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CSTR_ADDR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_ADDR_ENTT_VCHR_ENTT_ID_CSTR_ADDR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_address_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Address Entity Varchar';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_address_entity_varchar`
--

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

--
-- Table structure for table `customer_eav_attribute`
--

DROP TABLE IF EXISTS `customer_eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_eav_attribute` (
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `is_visible` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Visible',
  `input_filter` varchar(255) DEFAULT NULL COMMENT 'Input Filter',
  `multiline_count` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Multiline Count',
  `validate_rules` text DEFAULT NULL COMMENT 'Validate Rules',
  `is_system` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is System',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `data_model` varchar(255) DEFAULT NULL COMMENT 'Data Model',
  `is_used_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Used in Grid',
  `is_visible_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible in Grid',
  `is_filterable_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Filterable in Grid',
  `is_searchable_in_grid` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Searchable in Grid',
  `grid_filter_condition_type` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Grid Filter Condition Type',
  PRIMARY KEY (`attribute_id`),
  KEY `CUSTOMER_EAV_ATTRIBUTE_SORT_ORDER` (`sort_order`),
  CONSTRAINT `CUSTOMER_EAV_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_eav_attribute`
--

LOCK TABLES `customer_eav_attribute` WRITE;
/*!40000 ALTER TABLE `customer_eav_attribute` DISABLE KEYS */;
INSERT INTO `customer_eav_attribute` VALUES (1,1,NULL,0,NULL,1,10,NULL,1,1,1,0,0),(2,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(3,1,NULL,0,NULL,1,20,NULL,1,1,0,1,0),(4,0,NULL,0,NULL,0,30,NULL,0,0,0,0,0),(5,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,40,NULL,0,0,0,0,0),(6,0,'trim',0,NULL,0,50,NULL,0,0,0,0,0),(7,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,60,NULL,0,0,0,0,0),(8,0,NULL,0,NULL,0,70,NULL,0,0,0,0,0),(9,1,NULL,0,'{\"input_validation\":\"email\"}',1,80,NULL,1,1,1,1,0),(10,1,NULL,0,NULL,1,25,NULL,1,1,1,0,0),(11,0,'date',0,'{\"input_validation\":\"date\"}',0,90,NULL,1,1,1,0,0),(12,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(13,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(14,0,NULL,0,'{\"input_validation\":\"date\"}',1,0,NULL,0,0,0,0,0),(15,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(16,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(17,0,NULL,0,'{\"max_text_length\":255}',0,100,NULL,1,1,0,1,0),(18,0,NULL,0,NULL,1,0,NULL,1,1,1,0,0),(19,0,NULL,0,NULL,0,0,NULL,1,1,1,0,0),(20,0,NULL,0,'[]',0,110,NULL,1,1,1,0,0),(21,1,NULL,0,NULL,1,28,NULL,0,0,0,0,0),(22,0,NULL,0,NULL,0,10,NULL,0,0,0,0,0),(23,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,20,NULL,1,0,0,1,0),(24,0,'trim',0,NULL,0,30,NULL,0,0,0,0,0),(25,1,'trim',0,'{\"max_text_length\":255,\"min_text_length\":1}',1,40,NULL,1,0,0,1,0),(26,0,NULL,0,NULL,0,50,NULL,0,0,0,0,0),(27,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,60,NULL,1,0,0,1,0),(28,1,NULL,2,'{\"max_text_length\":255,\"min_text_length\":1}',1,70,NULL,1,0,0,1,0),(29,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,100,NULL,1,0,0,1,0),(30,1,NULL,0,NULL,1,80,NULL,1,1,1,0,0),(31,1,NULL,0,NULL,1,90,NULL,1,1,0,1,0),(32,1,NULL,0,NULL,1,90,NULL,0,0,0,0,0),(33,1,NULL,0,'[]',1,110,'Magento\\Customer\\Model\\Attribute\\Data\\Postcode',1,1,1,1,0),(34,1,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',1,120,NULL,1,1,1,1,0),(35,0,NULL,0,'{\"max_text_length\":255,\"min_text_length\":1}',0,130,NULL,1,0,0,1,0),(36,1,NULL,0,NULL,1,140,NULL,0,0,0,0,0),(37,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(38,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(39,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(40,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(41,0,NULL,0,NULL,0,0,NULL,0,0,0,0,0),(42,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(43,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(44,0,NULL,0,NULL,1,0,NULL,0,0,0,0,0),(189,0,NULL,0,NULL,0,90,NULL,0,0,0,0,0);
/*!40000 ALTER TABLE `customer_eav_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_eav_attribute_website`
--

DROP TABLE IF EXISTS `customer_eav_attribute_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_eav_attribute_website` (
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `is_visible` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Visible',
  `is_required` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Required',
  `default_value` text DEFAULT NULL COMMENT 'Default Value',
  `multiline_count` smallint(5) unsigned DEFAULT NULL COMMENT 'Multiline Count',
  PRIMARY KEY (`attribute_id`,`website_id`),
  KEY `CUSTOMER_EAV_ATTRIBUTE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `CSTR_EAV_ATTR_WS_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CSTR_EAV_ATTR_WS_WS_ID_STORE_WS_WS_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Eav Attribute Website';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_eav_attribute_website`
--

LOCK TABLES `customer_eav_attribute_website` WRITE;
/*!40000 ALTER TABLE `customer_eav_attribute_website` DISABLE KEYS */;
INSERT INTO `customer_eav_attribute_website` VALUES (1,1,NULL,NULL,NULL,NULL),(3,1,NULL,NULL,NULL,NULL),(5,1,NULL,NULL,NULL,NULL),(6,1,NULL,NULL,NULL,NULL),(7,1,NULL,NULL,NULL,NULL),(9,1,NULL,NULL,NULL,NULL),(10,1,NULL,NULL,NULL,NULL),(11,1,NULL,NULL,NULL,NULL),(17,1,NULL,NULL,NULL,NULL),(18,1,NULL,NULL,NULL,NULL),(19,1,NULL,NULL,NULL,NULL),(20,1,NULL,NULL,NULL,NULL),(21,1,NULL,NULL,NULL,NULL),(23,1,NULL,NULL,NULL,NULL),(24,1,NULL,NULL,NULL,NULL),(25,1,NULL,NULL,NULL,NULL),(27,1,NULL,NULL,NULL,NULL),(28,1,NULL,NULL,NULL,NULL),(29,1,NULL,NULL,NULL,NULL),(30,1,NULL,NULL,NULL,NULL),(31,1,NULL,NULL,NULL,NULL),(32,1,NULL,NULL,NULL,NULL),(33,1,NULL,NULL,NULL,NULL),(34,1,NULL,NULL,NULL,NULL),(35,1,NULL,NULL,NULL,NULL),(36,1,NULL,NULL,NULL,NULL),(189,1,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `customer_eav_attribute_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_entity`
--

DROP TABLE IF EXISTS `customer_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `website_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Website ID',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `group_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Group ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `store_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Store ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Active',
  `disable_auto_group_change` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Disable automatic group change based on VAT ID',
  `created_in` varchar(255) DEFAULT NULL COMMENT 'Created From',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Name Prefix',
  `firstname` varchar(255) DEFAULT NULL COMMENT 'First Name',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middle Name/Initial',
  `lastname` varchar(255) DEFAULT NULL COMMENT 'Last Name',
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Name Suffix',
  `dob` date DEFAULT NULL COMMENT 'Date of Birth',
  `password_hash` varchar(128) DEFAULT NULL COMMENT 'Password_hash',
  `rp_token` varchar(128) DEFAULT NULL COMMENT 'Reset password token',
  `rp_token_created_at` datetime DEFAULT NULL COMMENT 'Reset password token creation time',
  `default_billing` int(10) unsigned DEFAULT NULL COMMENT 'Default Billing Address',
  `default_shipping` int(10) unsigned DEFAULT NULL COMMENT 'Default Shipping Address',
  `taxvat` varchar(50) DEFAULT NULL COMMENT 'Tax/VAT Number',
  `confirmation` varchar(64) DEFAULT NULL COMMENT 'Is Confirmed',
  `gender` smallint(5) unsigned DEFAULT NULL COMMENT 'Gender',
  `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 'Lock Expiration Date',
  `session_cutoff` timestamp NULL DEFAULT NULL COMMENT 'Session Cutoff Time',
  `mp_smtp_email_marketing_synced` smallint(6) DEFAULT 0 COMMENT 'Mp SMTP Email Marketing synced',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_EMAIL_WEBSITE_ID` (`email`,`website_id`),
  KEY `CUSTOMER_ENTITY_STORE_ID` (`store_id`),
  KEY `CUSTOMER_ENTITY_WEBSITE_ID` (`website_id`),
  KEY `CUSTOMER_ENTITY_FIRSTNAME` (`firstname`),
  KEY `CUSTOMER_ENTITY_LASTNAME` (`lastname`),
  CONSTRAINT `CUSTOMER_ENTITY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL,
  CONSTRAINT `CUSTOMER_ENTITY_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Customer Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity`
--

LOCK TABLES `customer_entity` WRITE;
/*!40000 ALTER TABLE `customer_entity` DISABLE KEYS */;
INSERT INTO `customer_entity` VALUES (1,1,'roberto@torresani.eu',1,NULL,1,'2022-08-04 16:23:32','2022-08-19 12:24:56',1,0,'Default Store View',NULL,'Roberto',NULL,'Torresani',NULL,NULL,'ab5a5c8ea579b26a4201833609c8f83bb5a6876da5925aabde26f6093288e27a:7eIp94Ripc81W9UXcEgMMeBiCw14Dj7r:3_32_2_67108864','0:3:JSJlpCp4/6whdxdefykbg+Z3okNSuQJV2hXDEfKbE1tRuiyrt/3alssSOU7eK9w/yzEN9OA9gW7Z0Bb9','2022-08-04 16:23:32',1,1,NULL,NULL,NULL,0,NULL,NULL,NULL,0),(2,1,'daniele.dellagiacoma@deltainformatica.eu',1,NULL,1,'2022-08-09 08:04:52','2022-08-09 08:08:25',1,0,'Default Store View',NULL,'Daniele',NULL,'Dellagiacoma',NULL,NULL,'3b714f75ccb6efae21667d9d9ea582ba54052e4a4b3219995ddd45f507abb32b:jJxaqZxYpMJM3j6r2gqttq4hGbp4603q:3_32_2_67108864','0:3:COqgUBBOJ8HfMUiO3mPa+fWn9EJO4jobjlGKNn0VBpUjFi5xcyuIdpVa3s35C38i8cOiO232ikI7pYAK','2022-08-09 08:04:52',2,2,NULL,NULL,NULL,0,NULL,NULL,NULL,0),(3,1,'mara.giongo@thread.solutions',1,NULL,1,'2022-08-25 06:15:23','2022-08-25 06:18:02',1,0,'Default Store View',NULL,'Mara',NULL,'Giongo',NULL,NULL,'637471e3ff3f78e72caf89e1b220a5575b9b66514cd36d99687d1281b386d946:I8LIdsS7h51vtWxURv8WNOiGnL6F2KwG:3_32_2_67108864','0:3:26LwrZzFEt+tLJpCVVqU8XSrM7N7djzam77JyjrWv89oSyLnEwpO0VE5ceXoTSrPpfFePkdk/nRLCMRG','2022-08-25 06:15:23',3,3,NULL,NULL,NULL,0,NULL,NULL,NULL,0),(4,1,'laura.berto@ftcoop.it',1,NULL,1,'2022-08-25 12:26:10','2022-08-25 12:51:53',1,0,'Default Store View',NULL,'Laura',NULL,'Bertò',NULL,NULL,'318dc8454ba549a07126a34bd88b495aa2003537ce9d9cd8a3f522dca87ca85f:JYklMVBBhnXIjq20BdxDFnK5TZzltSQB:3_32_2_67108864','0:3:yZYvgafHivbz5RU896mr+lmYWRQxJvGuIc6iQakkX0EwwyYMt39JzamvOn2+ZM+PXfsFcU5RR3uPBrLH','2022-08-25 12:26:10',NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0),(5,1,'michelabranchi@gmail.com',1,NULL,1,'2022-08-25 16:28:56','2022-08-31 10:19:48',1,0,'Default Store View',NULL,'MICHELA',NULL,'BRANCHI',NULL,NULL,'b974ddf448c1aeeb937609a03364ad588eabce6033c2d4a6b35223616a0290dd:G6UmaajMtvIjGC1LLuT40Wa9b9RPx5rX:3_32_2_67108864',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-08-31 10:19:48',0);
/*!40000 ALTER TABLE `customer_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_entity_datetime`
--

DROP TABLE IF EXISTS `customer_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_DATETIME_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_DATETIME_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Datetime';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_datetime`
--

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

--
-- Table structure for table `customer_entity_decimal`
--

DROP TABLE IF EXISTS `customer_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_DECIMAL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_DECIMAL_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Decimal';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_decimal`
--

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

--
-- Table structure for table `customer_entity_int`
--

DROP TABLE IF EXISTS `customer_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` int(11) NOT NULL DEFAULT 0 COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_INT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_INT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Int';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_int`
--

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

--
-- Table structure for table `customer_entity_text`
--

DROP TABLE IF EXISTS `customer_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CUSTOMER_ENTITY_TEXT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_TEXT_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Text';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_text`
--

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

--
-- Table structure for table `customer_entity_varchar`
--

DROP TABLE IF EXISTS `customer_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID` (`entity_id`,`attribute_id`),
  KEY `CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
  KEY `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_VALUE` (`entity_id`,`attribute_id`,`value`),
  CONSTRAINT `CUSTOMER_ENTITY_VARCHAR_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `CUSTOMER_ENTITY_VARCHAR_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Entity Varchar';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_entity_varchar`
--

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

--
-- Table structure for table `customer_form_attribute`
--

DROP TABLE IF EXISTS `customer_form_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_form_attribute` (
  `form_code` varchar(32) NOT NULL COMMENT 'Form Code',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  PRIMARY KEY (`form_code`,`attribute_id`),
  KEY `CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `CUSTOMER_FORM_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Customer Form Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_form_attribute`
--

LOCK TABLES `customer_form_attribute` WRITE;
/*!40000 ALTER TABLE `customer_form_attribute` DISABLE KEYS */;
INSERT INTO `customer_form_attribute` VALUES ('adminhtml_checkout',9),('adminhtml_checkout',10),('adminhtml_checkout',11),('adminhtml_checkout',17),('adminhtml_checkout',20),('adminhtml_customer',1),('adminhtml_customer',3),('adminhtml_customer',4),('adminhtml_customer',5),('adminhtml_customer',6),('adminhtml_customer',7),('adminhtml_customer',8),('adminhtml_customer',9),('adminhtml_customer',10),('adminhtml_customer',11),('adminhtml_customer',17),('adminhtml_customer',19),('adminhtml_customer',20),('adminhtml_customer',21),('adminhtml_customer',189),('adminhtml_customer_address',22),('adminhtml_customer_address',23),('adminhtml_customer_address',24),('adminhtml_customer_address',25),('adminhtml_customer_address',26),('adminhtml_customer_address',27),('adminhtml_customer_address',28),('adminhtml_customer_address',29),('adminhtml_customer_address',30),('adminhtml_customer_address',31),('adminhtml_customer_address',32),('adminhtml_customer_address',33),('adminhtml_customer_address',34),('adminhtml_customer_address',35),('adminhtml_customer_address',36),('customer_account_create',4),('customer_account_create',5),('customer_account_create',6),('customer_account_create',7),('customer_account_create',8),('customer_account_create',9),('customer_account_create',11),('customer_account_create',17),('customer_account_create',19),('customer_account_create',20),('customer_account_edit',4),('customer_account_edit',5),('customer_account_edit',6),('customer_account_edit',7),('customer_account_edit',8),('customer_account_edit',9),('customer_account_edit',11),('customer_account_edit',17),('customer_account_edit',19),('customer_account_edit',20),('customer_address_edit',22),('customer_address_edit',23),('customer_address_edit',24),('customer_address_edit',25),('customer_address_edit',26),('customer_address_edit',27),('customer_address_edit',28),('customer_address_edit',29),('customer_address_edit',30),('customer_address_edit',31),('customer_address_edit',32),('customer_address_edit',33),('customer_address_edit',34),('customer_address_edit',35),('customer_address_edit',36),('customer_register_address',22),('customer_register_address',23),('customer_register_address',24),('customer_register_address',25),('customer_register_address',26),('customer_register_address',27),('customer_register_address',28),('customer_register_address',29),('customer_register_address',30),('customer_register_address',31),('customer_register_address',32),('customer_register_address',33),('customer_register_address',34),('customer_register_address',35),('customer_register_address',36);
/*!40000 ALTER TABLE `customer_form_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_grid_flat`
--

DROP TABLE IF EXISTS `customer_grid_flat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_grid_flat` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `name` text DEFAULT NULL COMMENT 'Name',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `group_id` int(11) DEFAULT NULL COMMENT 'Group_id',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created_at',
  `website_id` int(11) DEFAULT NULL COMMENT 'Website_id',
  `confirmation` varchar(255) DEFAULT NULL COMMENT 'Confirmation',
  `created_in` text DEFAULT NULL COMMENT 'Created_in',
  `dob` date DEFAULT NULL COMMENT 'Dob',
  `gender` int(11) DEFAULT NULL COMMENT 'Gender',
  `taxvat` varchar(255) DEFAULT NULL COMMENT 'Taxvat',
  `lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Lock_expires',
  `shipping_full` text DEFAULT NULL COMMENT 'Shipping_full',
  `billing_full` text DEFAULT NULL COMMENT 'Billing_full',
  `billing_firstname` varchar(255) DEFAULT NULL COMMENT 'Billing_firstname',
  `billing_lastname` varchar(255) DEFAULT NULL COMMENT 'Billing_lastname',
  `billing_telephone` varchar(255) DEFAULT NULL COMMENT 'Billing_telephone',
  `billing_postcode` varchar(255) DEFAULT NULL COMMENT 'Billing_postcode',
  `billing_country_id` varchar(255) DEFAULT NULL COMMENT 'Billing_country_id',
  `billing_region` varchar(255) DEFAULT NULL COMMENT 'Billing_region',
  `billing_region_id` int(11) DEFAULT NULL COMMENT 'Billing_region_id',
  `billing_street` varchar(255) DEFAULT NULL COMMENT 'Billing_street',
  `billing_city` varchar(255) DEFAULT NULL COMMENT 'Billing_city',
  `billing_fax` varchar(255) DEFAULT NULL COMMENT 'Billing_fax',
  `billing_vat_id` varchar(255) DEFAULT NULL COMMENT 'Billing_vat_id',
  `billing_company` varchar(255) DEFAULT NULL COMMENT 'Billing_company',
  PRIMARY KEY (`entity_id`),
  KEY `CUSTOMER_GRID_FLAT_GROUP_ID` (`group_id`),
  KEY `CUSTOMER_GRID_FLAT_CREATED_AT` (`created_at`),
  KEY `CUSTOMER_GRID_FLAT_WEBSITE_ID` (`website_id`),
  KEY `CUSTOMER_GRID_FLAT_CONFIRMATION` (`confirmation`),
  KEY `CUSTOMER_GRID_FLAT_DOB` (`dob`),
  KEY `CUSTOMER_GRID_FLAT_GENDER` (`gender`),
  KEY `CUSTOMER_GRID_FLAT_BILLING_COUNTRY_ID` (`billing_country_id`),
  FULLTEXT KEY `FTI_8746F705702DD5F6D45B8C7CE7FE9F2F` (`name`,`email`,`created_in`,`taxvat`,`shipping_full`,`billing_full`,`billing_firstname`,`billing_lastname`,`billing_telephone`,`billing_postcode`,`billing_region`,`billing_city`,`billing_fax`,`billing_company`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='customer_grid_flat';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_grid_flat`
--

LOCK TABLES `customer_grid_flat` WRITE;
/*!40000 ALTER TABLE `customer_grid_flat` DISABLE KEYS */;
INSERT INTO `customer_grid_flat` VALUES (1,'Roberto Torresani','roberto@torresani.eu',1,'2022-08-04 16:23:32',1,NULL,'Default Store View',NULL,NULL,NULL,NULL,'Via Trentino Trento Trento 38121','Via Trentino Trento Trento 38121','Roberto','Torresani','3404922491','38121','IT','Trento',909,'Via Trentino','Trento',NULL,NULL,NULL),(2,'Daniele Dellagiacoma','daniele.dellagiacoma@deltainformatica.eu',1,'2022-08-09 08:04:52',1,NULL,'Default Store View',NULL,NULL,NULL,NULL,'via Kufstein, 5 Trento Trento 38121','via Kufstein, 5 Trento Trento 38121','Daniele','Dellagiacoma','3462547685','38121','IT','Trento',909,'via Kufstein, 5','Trento',NULL,NULL,NULL),(3,'Mara Giongo','mara.giongo@thread.solutions',1,'2022-08-25 06:15:23',1,NULL,'Default Store View',NULL,NULL,NULL,NULL,'test trento Trento 38122','test trento Trento 38122','Mara','Giongo','333333333333','38122','IT','Trento',909,'test','trento',NULL,NULL,'Test'),(4,'Laura Bertò','laura.berto@ftcoop.it',1,'2022-08-25 12:26:10',1,NULL,'Default Store View',NULL,NULL,NULL,NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,'MICHELA BRANCHI','michelabranchi@gmail.com',1,'2022-08-25 16:28:56',1,NULL,'Default Store View',NULL,NULL,NULL,NULL,'','',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `customer_grid_flat` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_group`
--

DROP TABLE IF EXISTS `customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_group` (
  `customer_group_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_group_code` varchar(32) NOT NULL COMMENT 'Customer Group Code',
  `tax_class_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Tax Class ID',
  PRIMARY KEY (`customer_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Customer Group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_group`
--

LOCK TABLES `customer_group` WRITE;
/*!40000 ALTER TABLE `customer_group` DISABLE KEYS */;
INSERT INTO `customer_group` VALUES (0,'NOT LOGGED IN',3),(1,'General',3),(2,'Wholesale',3),(3,'Retailer',3);
/*!40000 ALTER TABLE `customer_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_group_excluded_website`
--

DROP TABLE IF EXISTS `customer_group_excluded_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_group_excluded_website` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Excluded Website ID from Customer Group',
  PRIMARY KEY (`entity_id`),
  KEY `CUSTOMER_GROUP_EXCLUDED_WEBSITE_CUSTOMER_GROUP_ID_WEBSITE_ID` (`customer_group_id`,`website_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Excluded Websites From Customer Group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_group_excluded_website`
--

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

--
-- Table structure for table `customer_log`
--

DROP TABLE IF EXISTS `customer_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_log` (
  `log_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `customer_id` int(11) NOT NULL COMMENT 'Customer ID',
  `last_login_at` timestamp NULL DEFAULT NULL COMMENT 'Last Login Time',
  `last_logout_at` timestamp NULL DEFAULT NULL COMMENT 'Last Logout Time',
  PRIMARY KEY (`log_id`),
  UNIQUE KEY `CUSTOMER_LOG_CUSTOMER_ID` (`customer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8 COMMENT='Customer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_log`
--

LOCK TABLES `customer_log` WRITE;
/*!40000 ALTER TABLE `customer_log` DISABLE KEYS */;
INSERT INTO `customer_log` VALUES (1,1,'2022-08-24 10:23:44','2022-08-11 09:53:02'),(3,2,'2022-08-09 11:59:07',NULL),(19,3,'2022-08-26 15:52:29',NULL),(20,4,'2022-08-25 12:26:11',NULL),(21,5,'2022-08-31 10:20:11',NULL);
/*!40000 ALTER TABLE `customer_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_visitor`
--

DROP TABLE IF EXISTS `customer_visitor`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_visitor` (
  `visitor_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Visitor ID',
  `customer_id` int(11) DEFAULT NULL COMMENT 'Customer ID',
  `session_id` varchar(1) DEFAULT NULL COMMENT 'Deprecated: Session ID value no longer used',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `last_visit_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Last Visit Time',
  PRIMARY KEY (`visitor_id`),
  KEY `CUSTOMER_VISITOR_CUSTOMER_ID` (`customer_id`),
  KEY `CUSTOMER_VISITOR_LAST_VISIT_AT` (`last_visit_at`)
) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8 COMMENT='Visitor Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_visitor`
--

LOCK TABLES `customer_visitor` WRITE;
/*!40000 ALTER TABLE `customer_visitor` DISABLE KEYS */;
INSERT INTO `customer_visitor` VALUES (56,NULL,NULL,'2022-09-15 12:12:09','2022-09-15 12:13:15'),(57,NULL,NULL,'2022-09-15 12:48:29','2022-09-15 12:48:29'),(58,NULL,NULL,'2022-09-16 10:00:24','2022-09-16 10:00:31');
/*!40000 ALTER TABLE `customer_visitor` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `design_change`
--

DROP TABLE IF EXISTS `design_change`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `design_change` (
  `design_change_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Design Change ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `design` varchar(255) DEFAULT NULL COMMENT 'Design',
  `date_from` date DEFAULT NULL COMMENT 'First Date of Design Activity',
  `date_to` date DEFAULT NULL COMMENT 'Last Date of Design Activity',
  PRIMARY KEY (`design_change_id`),
  KEY `DESIGN_CHANGE_STORE_ID` (`store_id`),
  CONSTRAINT `DESIGN_CHANGE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Design Changes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `design_change`
--

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

--
-- Table structure for table `design_config_grid_flat`
--

DROP TABLE IF EXISTS `design_config_grid_flat`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `design_config_grid_flat` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `store_website_id` int(11) DEFAULT NULL COMMENT 'Store_website_id',
  `store_group_id` int(11) DEFAULT NULL COMMENT 'Store_group_id',
  `store_id` int(11) DEFAULT NULL COMMENT 'Store_id',
  `theme_theme_id` varchar(255) DEFAULT NULL COMMENT 'Theme_theme_id',
  PRIMARY KEY (`entity_id`),
  KEY `DESIGN_CONFIG_GRID_FLAT_STORE_WEBSITE_ID` (`store_website_id`),
  KEY `DESIGN_CONFIG_GRID_FLAT_STORE_GROUP_ID` (`store_group_id`),
  KEY `DESIGN_CONFIG_GRID_FLAT_STORE_ID` (`store_id`),
  FULLTEXT KEY `DESIGN_CONFIG_GRID_FLAT_THEME_THEME_ID` (`theme_theme_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='design_config_grid_flat';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `design_config_grid_flat`
--

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

--
-- Table structure for table `directory_country`
--

DROP TABLE IF EXISTS `directory_country`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directory_country` (
  `country_id` varchar(2) NOT NULL COMMENT 'Country ID in ISO-2',
  `iso2_code` varchar(2) DEFAULT NULL COMMENT 'Country ISO-2 format',
  `iso3_code` varchar(3) DEFAULT NULL COMMENT 'Country ISO-3',
  PRIMARY KEY (`country_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country`
--

LOCK TABLES `directory_country` WRITE;
/*!40000 ALTER TABLE `directory_country` DISABLE KEYS */;
INSERT INTO `directory_country` VALUES ('AD','AD','AND'),('AE','AE','ARE'),('AF','AF','AFG'),('AG','AG','ATG'),('AI','AI','AIA'),('AL','AL','ALB'),('AM','AM','ARM'),('AN','AN','ANT'),('AO','AO','AGO'),('AQ','AQ','ATA'),('AR','AR','ARG'),('AS','AS','ASM'),('AT','AT','AUT'),('AU','AU','AUS'),('AW','AW','ABW'),('AX','AX','ALA'),('AZ','AZ','AZE'),('BA','BA','BIH'),('BB','BB','BRB'),('BD','BD','BGD'),('BE','BE','BEL'),('BF','BF','BFA'),('BG','BG','BGR'),('BH','BH','BHR'),('BI','BI','BDI'),('BJ','BJ','BEN'),('BL','BL','BLM'),('BM','BM','BMU'),('BN','BN','BRN'),('BO','BO','BOL'),('BQ','BQ','BES'),('BR','BR','BRA'),('BS','BS','BHS'),('BT','BT','BTN'),('BV','BV','BVT'),('BW','BW','BWA'),('BY','BY','BLR'),('BZ','BZ','BLZ'),('CA','CA','CAN'),('CC','CC','CCK'),('CD','CD','COD'),('CF','CF','CAF'),('CG','CG','COG'),('CH','CH','CHE'),('CI','CI','CIV'),('CK','CK','COK'),('CL','CL','CHL'),('CM','CM','CMR'),('CN','CN','CHN'),('CO','CO','COL'),('CR','CR','CRI'),('CU','CU','CUB'),('CV','CV','CPV'),('CW','CW','CUW'),('CX','CX','CXR'),('CY','CY','CYP'),('CZ','CZ','CZE'),('DE','DE','DEU'),('DJ','DJ','DJI'),('DK','DK','DNK'),('DM','DM','DMA'),('DO','DO','DOM'),('DZ','DZ','DZA'),('EC','EC','ECU'),('EE','EE','EST'),('EG','EG','EGY'),('EH','EH','ESH'),('ER','ER','ERI'),('ES','ES','ESP'),('ET','ET','ETH'),('FI','FI','FIN'),('FJ','FJ','FJI'),('FK','FK','FLK'),('FM','FM','FSM'),('FO','FO','FRO'),('FR','FR','FRA'),('GA','GA','GAB'),('GB','GB','GBR'),('GD','GD','GRD'),('GE','GE','GEO'),('GF','GF','GUF'),('GG','GG','GGY'),('GH','GH','GHA'),('GI','GI','GIB'),('GL','GL','GRL'),('GM','GM','GMB'),('GN','GN','GIN'),('GP','GP','GLP'),('GQ','GQ','GNQ'),('GR','GR','GRC'),('GS','GS','SGS'),('GT','GT','GTM'),('GU','GU','GUM'),('GW','GW','GNB'),('GY','GY','GUY'),('HK','HK','HKG'),('HM','HM','HMD'),('HN','HN','HND'),('HR','HR','HRV'),('HT','HT','HTI'),('HU','HU','HUN'),('ID','ID','IDN'),('IE','IE','IRL'),('IL','IL','ISR'),('IM','IM','IMN'),('IN','IN','IND'),('IO','IO','IOT'),('IQ','IQ','IRQ'),('IR','IR','IRN'),('IS','IS','ISL'),('IT','IT','ITA'),('JE','JE','JEY'),('JM','JM','JAM'),('JO','JO','JOR'),('JP','JP','JPN'),('KE','KE','KEN'),('KG','KG','KGZ'),('KH','KH','KHM'),('KI','KI','KIR'),('KM','KM','COM'),('KN','KN','KNA'),('KP','KP','PRK'),('KR','KR','KOR'),('KW','KW','KWT'),('KY','KY','CYM'),('KZ','KZ','KAZ'),('LA','LA','LAO'),('LB','LB','LBN'),('LC','LC','LCA'),('LI','LI','LIE'),('LK','LK','LKA'),('LR','LR','LBR'),('LS','LS','LSO'),('LT','LT','LTU'),('LU','LU','LUX'),('LV','LV','LVA'),('LY','LY','LBY'),('MA','MA','MAR'),('MC','MC','MCO'),('MD','MD','MDA'),('ME','ME','MNE'),('MF','MF','MAF'),('MG','MG','MDG'),('MH','MH','MHL'),('MK','MK','MKD'),('ML','ML','MLI'),('MM','MM','MMR'),('MN','MN','MNG'),('MO','MO','MAC'),('MP','MP','MNP'),('MQ','MQ','MTQ'),('MR','MR','MRT'),('MS','MS','MSR'),('MT','MT','MLT'),('MU','MU','MUS'),('MV','MV','MDV'),('MW','MW','MWI'),('MX','MX','MEX'),('MY','MY','MYS'),('MZ','MZ','MOZ'),('NA','NA','NAM'),('NC','NC','NCL'),('NE','NE','NER'),('NF','NF','NFK'),('NG','NG','NGA'),('NI','NI','NIC'),('NL','NL','NLD'),('NO','NO','NOR'),('NP','NP','NPL'),('NR','NR','NRU'),('NU','NU','NIU'),('NZ','NZ','NZL'),('OM','OM','OMN'),('PA','PA','PAN'),('PE','PE','PER'),('PF','PF','PYF'),('PG','PG','PNG'),('PH','PH','PHL'),('PK','PK','PAK'),('PL','PL','POL'),('PM','PM','SPM'),('PN','PN','PCN'),('PS','PS','PSE'),('PT','PT','PRT'),('PW','PW','PLW'),('PY','PY','PRY'),('QA','QA','QAT'),('RE','RE','REU'),('RO','RO','ROU'),('RS','RS','SRB'),('RU','RU','RUS'),('RW','RW','RWA'),('SA','SA','SAU'),('SB','SB','SLB'),('SC','SC','SYC'),('SD','SD','SDN'),('SE','SE','SWE'),('SG','SG','SGP'),('SH','SH','SHN'),('SI','SI','SVN'),('SJ','SJ','SJM'),('SK','SK','SVK'),('SL','SL','SLE'),('SM','SM','SMR'),('SN','SN','SEN'),('SO','SO','SOM'),('SR','SR','SUR'),('ST','ST','STP'),('SV','SV','SLV'),('SX','SX','SXM'),('SY','SY','SYR'),('SZ','SZ','SWZ'),('TC','TC','TCA'),('TD','TD','TCD'),('TF','TF','ATF'),('TG','TG','TGO'),('TH','TH','THA'),('TJ','TJ','TJK'),('TK','TK','TKL'),('TL','TL','TLS'),('TM','TM','TKM'),('TN','TN','TUN'),('TO','TO','TON'),('TR','TR','TUR'),('TT','TT','TTO'),('TV','TV','TUV'),('TW','TW','TWN'),('TZ','TZ','TZA'),('UA','UA','UKR'),('UG','UG','UGA'),('UM','UM','UMI'),('US','US','USA'),('UY','UY','URY'),('UZ','UZ','UZB'),('VA','VA','VAT'),('VC','VC','VCT'),('VE','VE','VEN'),('VG','VG','VGB'),('VI','VI','VIR'),('VN','VN','VNM'),('VU','VU','VUT'),('WF','WF','WLF'),('WS','WS','WSM'),('XK','XK','XKX'),('YE','YE','YEM'),('YT','YT','MYT'),('ZA','ZA','ZAF'),('ZM','ZM','ZMB'),('ZW','ZW','ZWE');
/*!40000 ALTER TABLE `directory_country` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `directory_country_format`
--

DROP TABLE IF EXISTS `directory_country_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directory_country_format` (
  `country_format_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Country Format ID',
  `country_id` varchar(2) DEFAULT NULL COMMENT 'Country ID in ISO-2',
  `type` varchar(30) DEFAULT NULL COMMENT 'Country Format Type',
  `format` text NOT NULL COMMENT 'Country Format',
  PRIMARY KEY (`country_format_id`),
  UNIQUE KEY `DIRECTORY_COUNTRY_FORMAT_COUNTRY_ID_TYPE` (`country_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country Format';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country_format`
--

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

--
-- Table structure for table `directory_country_region`
--

DROP TABLE IF EXISTS `directory_country_region`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directory_country_region` (
  `region_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Region ID',
  `country_id` varchar(4) NOT NULL DEFAULT '0' COMMENT 'Country ID in ISO-2',
  `code` varchar(32) DEFAULT NULL COMMENT 'Region code',
  `default_name` varchar(255) DEFAULT NULL COMMENT 'Region Name',
  PRIMARY KEY (`region_id`),
  KEY `DIRECTORY_COUNTRY_REGION_COUNTRY_ID` (`country_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1108 DEFAULT CHARSET=utf8 COMMENT='Directory Country Region';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country_region`
--

LOCK TABLES `directory_country_region` WRITE;
/*!40000 ALTER TABLE `directory_country_region` DISABLE KEYS */;
INSERT INTO `directory_country_region` VALUES (1,'US','AL','Alabama'),(2,'US','AK','Alaska'),(3,'US','AS','American Samoa'),(4,'US','AZ','Arizona'),(5,'US','AR','Arkansas'),(6,'US','AE','Armed Forces Africa'),(7,'US','AA','Armed Forces Americas'),(8,'US','AE','Armed Forces Canada'),(9,'US','AE','Armed Forces Europe'),(10,'US','AE','Armed Forces Middle East'),(11,'US','AP','Armed Forces Pacific'),(12,'US','CA','California'),(13,'US','CO','Colorado'),(14,'US','CT','Connecticut'),(15,'US','DE','Delaware'),(16,'US','DC','District of Columbia'),(17,'US','FM','Federated States Of Micronesia'),(18,'US','FL','Florida'),(19,'US','GA','Georgia'),(20,'US','GU','Guam'),(21,'US','HI','Hawaii'),(22,'US','ID','Idaho'),(23,'US','IL','Illinois'),(24,'US','IN','Indiana'),(25,'US','IA','Iowa'),(26,'US','KS','Kansas'),(27,'US','KY','Kentucky'),(28,'US','LA','Louisiana'),(29,'US','ME','Maine'),(30,'US','MH','Marshall Islands'),(31,'US','MD','Maryland'),(32,'US','MA','Massachusetts'),(33,'US','MI','Michigan'),(34,'US','MN','Minnesota'),(35,'US','MS','Mississippi'),(36,'US','MO','Missouri'),(37,'US','MT','Montana'),(38,'US','NE','Nebraska'),(39,'US','NV','Nevada'),(40,'US','NH','New Hampshire'),(41,'US','NJ','New Jersey'),(42,'US','NM','New Mexico'),(43,'US','NY','New York'),(44,'US','NC','North Carolina'),(45,'US','ND','North Dakota'),(46,'US','MP','Northern Mariana Islands'),(47,'US','OH','Ohio'),(48,'US','OK','Oklahoma'),(49,'US','OR','Oregon'),(50,'US','PW','Palau'),(51,'US','PA','Pennsylvania'),(52,'US','PR','Puerto Rico'),(53,'US','RI','Rhode Island'),(54,'US','SC','South Carolina'),(55,'US','SD','South Dakota'),(56,'US','TN','Tennessee'),(57,'US','TX','Texas'),(58,'US','UT','Utah'),(59,'US','VT','Vermont'),(60,'US','VI','Virgin Islands'),(61,'US','VA','Virginia'),(62,'US','WA','Washington'),(63,'US','WV','West Virginia'),(64,'US','WI','Wisconsin'),(65,'US','WY','Wyoming'),(66,'CA','AB','Alberta'),(67,'CA','BC','British Columbia'),(68,'CA','MB','Manitoba'),(69,'CA','NL','Newfoundland and Labrador'),(70,'CA','NB','New Brunswick'),(71,'CA','NS','Nova Scotia'),(72,'CA','NT','Northwest Territories'),(73,'CA','NU','Nunavut'),(74,'CA','ON','Ontario'),(75,'CA','PE','Prince Edward Island'),(76,'CA','QC','Quebec'),(77,'CA','SK','Saskatchewan'),(78,'CA','YT','Yukon Territory'),(79,'DE','NDS','Niedersachsen'),(80,'DE','BAW','Baden-Württemberg'),(81,'DE','BAY','Bayern'),(82,'DE','BER','Berlin'),(83,'DE','BRG','Brandenburg'),(84,'DE','BRE','Bremen'),(85,'DE','HAM','Hamburg'),(86,'DE','HES','Hessen'),(87,'DE','MEC','Mecklenburg-Vorpommern'),(88,'DE','NRW','Nordrhein-Westfalen'),(89,'DE','RHE','Rheinland-Pfalz'),(90,'DE','SAR','Saarland'),(91,'DE','SAS','Sachsen'),(92,'DE','SAC','Sachsen-Anhalt'),(93,'DE','SCN','Schleswig-Holstein'),(94,'DE','THE','Thüringen'),(95,'AT','WI','Wien'),(96,'AT','NO','Niederösterreich'),(97,'AT','OO','Oberösterreich'),(98,'AT','SB','Salzburg'),(99,'AT','KN','Kärnten'),(100,'AT','ST','Steiermark'),(101,'AT','TI','Tirol'),(102,'AT','BL','Burgenland'),(103,'AT','VB','Vorarlberg'),(104,'CH','AG','Aargau'),(105,'CH','AI','Appenzell Innerrhoden'),(106,'CH','AR','Appenzell Ausserrhoden'),(107,'CH','BE','Bern'),(108,'CH','BL','Basel-Landschaft'),(109,'CH','BS','Basel-Stadt'),(110,'CH','FR','Friburg'),(111,'CH','GE','Geneva'),(112,'CH','GL','Glarus'),(113,'CH','GR','Graubünden'),(114,'CH','JU','Jura'),(115,'CH','LU','Lucerne'),(116,'CH','NE','Neuchâtel'),(117,'CH','NW','Nidwalden'),(118,'CH','OW','Obwalden'),(119,'CH','SG','St. Gallen'),(120,'CH','SH','Schaffhausen'),(121,'CH','SO','Solothurn'),(122,'CH','SZ','Schwyz'),(123,'CH','TG','Thurgau'),(124,'CH','TI','Ticino'),(125,'CH','UR','Uri'),(126,'CH','VD','Vaud'),(127,'CH','VS','Wallis'),(128,'CH','ZG','Zug'),(129,'CH','ZH','Zürich'),(130,'ES','A Coruсa','A Coruña'),(131,'ES','Alava','Alava'),(132,'ES','Albacete','Albacete'),(133,'ES','Alicante','Alicante'),(134,'ES','Almeria','Almeria'),(135,'ES','Asturias','Asturias'),(136,'ES','Avila','Avila'),(137,'ES','Badajoz','Badajoz'),(138,'ES','Baleares','Baleares'),(139,'ES','Barcelona','Barcelona'),(140,'ES','Burgos','Burgos'),(141,'ES','Caceres','Caceres'),(142,'ES','Cadiz','Cadiz'),(143,'ES','Cantabria','Cantabria'),(144,'ES','Castellon','Castellon'),(145,'ES','Ceuta','Ceuta'),(146,'ES','Ciudad Real','Ciudad Real'),(147,'ES','Cordoba','Cordoba'),(148,'ES','Cuenca','Cuenca'),(149,'ES','Girona','Girona'),(150,'ES','Granada','Granada'),(151,'ES','Guadalajara','Guadalajara'),(152,'ES','Guipuzcoa','Guipuzcoa'),(153,'ES','Huelva','Huelva'),(154,'ES','Huesca','Huesca'),(155,'ES','Jaen','Jaen'),(156,'ES','La Rioja','La Rioja'),(157,'ES','Las Palmas','Las Palmas'),(158,'ES','Leon','Leon'),(159,'ES','Lleida','Lleida'),(160,'ES','Lugo','Lugo'),(161,'ES','Madrid','Madrid'),(162,'ES','Malaga','Malaga'),(163,'ES','Melilla','Melilla'),(164,'ES','Murcia','Murcia'),(165,'ES','Navarra','Navarra'),(166,'ES','Ourense','Ourense'),(167,'ES','Palencia','Palencia'),(168,'ES','Pontevedra','Pontevedra'),(169,'ES','Salamanca','Salamanca'),(170,'ES','Santa Cruz de Tenerife','Santa Cruz de Tenerife'),(171,'ES','Segovia','Segovia'),(172,'ES','Sevilla','Sevilla'),(173,'ES','Soria','Soria'),(174,'ES','Tarragona','Tarragona'),(175,'ES','Teruel','Teruel'),(176,'ES','Toledo','Toledo'),(177,'ES','Valencia','Valencia'),(178,'ES','Valladolid','Valladolid'),(179,'ES','Vizcaya','Vizcaya'),(180,'ES','Zamora','Zamora'),(181,'ES','Zaragoza','Zaragoza'),(182,'FR','1','Ain'),(183,'FR','2','Aisne'),(184,'FR','3','Allier'),(185,'FR','4','Alpes-de-Haute-Provence'),(186,'FR','5','Hautes-Alpes'),(187,'FR','6','Alpes-Maritimes'),(188,'FR','7','Ardèche'),(189,'FR','8','Ardennes'),(190,'FR','9','Ariège'),(191,'FR','10','Aube'),(192,'FR','11','Aude'),(193,'FR','12','Aveyron'),(194,'FR','13','Bouches-du-Rhône'),(195,'FR','14','Calvados'),(196,'FR','15','Cantal'),(197,'FR','16','Charente'),(198,'FR','17','Charente-Maritime'),(199,'FR','18','Cher'),(200,'FR','19','Corrèze'),(201,'FR','2A','Corse-du-Sud'),(202,'FR','2B','Haute-Corse'),(203,'FR','21','Côte-d\'Or'),(204,'FR','22','Côtes-d\'Armor'),(205,'FR','23','Creuse'),(206,'FR','24','Dordogne'),(207,'FR','25','Doubs'),(208,'FR','26','Drôme'),(209,'FR','27','Eure'),(210,'FR','28','Eure-et-Loir'),(211,'FR','29','Finistère'),(212,'FR','30','Gard'),(213,'FR','31','Haute-Garonne'),(214,'FR','32','Gers'),(215,'FR','33','Gironde'),(216,'FR','34','Hérault'),(217,'FR','35','Ille-et-Vilaine'),(218,'FR','36','Indre'),(219,'FR','37','Indre-et-Loire'),(220,'FR','38','Isère'),(221,'FR','39','Jura'),(222,'FR','40','Landes'),(223,'FR','41','Loir-et-Cher'),(224,'FR','42','Loire'),(225,'FR','43','Haute-Loire'),(226,'FR','44','Loire-Atlantique'),(227,'FR','45','Loiret'),(228,'FR','46','Lot'),(229,'FR','47','Lot-et-Garonne'),(230,'FR','48','Lozère'),(231,'FR','49','Maine-et-Loire'),(232,'FR','50','Manche'),(233,'FR','51','Marne'),(234,'FR','52','Haute-Marne'),(235,'FR','53','Mayenne'),(236,'FR','54','Meurthe-et-Moselle'),(237,'FR','55','Meuse'),(238,'FR','56','Morbihan'),(239,'FR','57','Moselle'),(240,'FR','58','Nièvre'),(241,'FR','59','Nord'),(242,'FR','60','Oise'),(243,'FR','61','Orne'),(244,'FR','62','Pas-de-Calais'),(245,'FR','63','Puy-de-Dôme'),(246,'FR','64','Pyrénées-Atlantiques'),(247,'FR','65','Hautes-Pyrénées'),(248,'FR','66','Pyrénées-Orientales'),(249,'FR','67','Bas-Rhin'),(250,'FR','68','Haut-Rhin'),(251,'FR','69','Rhône'),(252,'FR','70','Haute-Saône'),(253,'FR','71','Saône-et-Loire'),(254,'FR','72','Sarthe'),(255,'FR','73','Savoie'),(256,'FR','74','Haute-Savoie'),(257,'FR','75','Paris'),(258,'FR','76','Seine-Maritime'),(259,'FR','77','Seine-et-Marne'),(260,'FR','78','Yvelines'),(261,'FR','79','Deux-Sèvres'),(262,'FR','80','Somme'),(263,'FR','81','Tarn'),(264,'FR','82','Tarn-et-Garonne'),(265,'FR','83','Var'),(266,'FR','84','Vaucluse'),(267,'FR','85','Vendée'),(268,'FR','86','Vienne'),(269,'FR','87','Haute-Vienne'),(270,'FR','88','Vosges'),(271,'FR','89','Yonne'),(272,'FR','90','Territoire-de-Belfort'),(273,'FR','91','Essonne'),(274,'FR','92','Hauts-de-Seine'),(275,'FR','93','Seine-Saint-Denis'),(276,'FR','94','Val-de-Marne'),(277,'FR','95','Val-d\'Oise'),(278,'RO','AB','Alba'),(279,'RO','AR','Arad'),(280,'RO','AG','Argeş'),(281,'RO','BC','Bacău'),(282,'RO','BH','Bihor'),(283,'RO','BN','Bistriţa-Năsăud'),(284,'RO','BT','Botoşani'),(285,'RO','BV','Braşov'),(286,'RO','BR','Brăila'),(287,'RO','B','Bucureşti'),(288,'RO','BZ','Buzău'),(289,'RO','CS','Caraş-Severin'),(290,'RO','CL','Călăraşi'),(291,'RO','CJ','Cluj'),(292,'RO','CT','Constanţa'),(293,'RO','CV','Covasna'),(294,'RO','DB','Dâmboviţa'),(295,'RO','DJ','Dolj'),(296,'RO','GL','Galaţi'),(297,'RO','GR','Giurgiu'),(298,'RO','GJ','Gorj'),(299,'RO','HR','Harghita'),(300,'RO','HD','Hunedoara'),(301,'RO','IL','Ialomiţa'),(302,'RO','IS','Iaşi'),(303,'RO','IF','Ilfov'),(304,'RO','MM','Maramureş'),(305,'RO','MH','Mehedinţi'),(306,'RO','MS','Mureş'),(307,'RO','NT','Neamţ'),(308,'RO','OT','Olt'),(309,'RO','PH','Prahova'),(310,'RO','SM','Satu-Mare'),(311,'RO','SJ','Sălaj'),(312,'RO','SB','Sibiu'),(313,'RO','SV','Suceava'),(314,'RO','TR','Teleorman'),(315,'RO','TM','Timiş'),(316,'RO','TL','Tulcea'),(317,'RO','VS','Vaslui'),(318,'RO','VL','Vâlcea'),(319,'RO','VN','Vrancea'),(320,'FI','Lappi','Lappi'),(321,'FI','Pohjois-Pohjanmaa','Pohjois-Pohjanmaa'),(322,'FI','Kainuu','Kainuu'),(323,'FI','Pohjois-Karjala','Pohjois-Karjala'),(324,'FI','Pohjois-Savo','Pohjois-Savo'),(325,'FI','Etelä-Savo','Etelä-Savo'),(326,'FI','Etelä-Pohjanmaa','Etelä-Pohjanmaa'),(327,'FI','Pohjanmaa','Pohjanmaa'),(328,'FI','Pirkanmaa','Pirkanmaa'),(329,'FI','Satakunta','Satakunta'),(330,'FI','Keski-Pohjanmaa','Keski-Pohjanmaa'),(331,'FI','Keski-Suomi','Keski-Suomi'),(332,'FI','Varsinais-Suomi','Varsinais-Suomi'),(333,'FI','Etelä-Karjala','Etelä-Karjala'),(334,'FI','Päijät-Häme','Päijät-Häme'),(335,'FI','Kanta-Häme','Kanta-Häme'),(336,'FI','Uusimaa','Uusimaa'),(337,'FI','Itä-Uusimaa','Itä-Uusimaa'),(338,'FI','Kymenlaakso','Kymenlaakso'),(339,'FI','Ahvenanmaa','Ahvenanmaa'),(340,'EE','EE-37','Harjumaa'),(341,'EE','EE-39','Hiiumaa'),(342,'EE','EE-44','Ida-Virumaa'),(343,'EE','EE-49','Jõgevamaa'),(344,'EE','EE-51','Järvamaa'),(345,'EE','EE-57','Läänemaa'),(346,'EE','EE-59','Lääne-Virumaa'),(347,'EE','EE-65','Põlvamaa'),(348,'EE','EE-67','Pärnumaa'),(349,'EE','EE-70','Raplamaa'),(350,'EE','EE-74','Saaremaa'),(351,'EE','EE-78','Tartumaa'),(352,'EE','EE-82','Valgamaa'),(353,'EE','EE-84','Viljandimaa'),(354,'EE','EE-86','Võrumaa'),(355,'LV','LV-DGV','Daugavpils'),(356,'LV','LV-JEL','Jelgava'),(357,'LV','Jēkabpils','Jēkabpils'),(358,'LV','LV-JUR','Jūrmala'),(359,'LV','LV-LPX','Liepāja'),(360,'LV','LV-LE','Liepājas novads'),(361,'LV','LV-REZ','Rēzekne'),(362,'LV','LV-RIX','Rīga'),(363,'LV','LV-RI','Rīgas novads'),(364,'LV','Valmiera','Valmiera'),(365,'LV','LV-VEN','Ventspils'),(366,'LV','Aglonas novads','Aglonas novads'),(367,'LV','LV-AI','Aizkraukles novads'),(368,'LV','Aizputes novads','Aizputes novads'),(369,'LV','Aknīstes novads','Aknīstes novads'),(370,'LV','Alojas novads','Alojas novads'),(371,'LV','Alsungas novads','Alsungas novads'),(372,'LV','LV-AL','Alūksnes novads'),(373,'LV','Amatas novads','Amatas novads'),(374,'LV','Apes novads','Apes novads'),(375,'LV','Auces novads','Auces novads'),(376,'LV','Babītes novads','Babītes novads'),(377,'LV','Baldones novads','Baldones novads'),(378,'LV','Baltinavas novads','Baltinavas novads'),(379,'LV','LV-BL','Balvu novads'),(380,'LV','LV-BU','Bauskas novads'),(381,'LV','Beverīnas novads','Beverīnas novads'),(382,'LV','Brocēnu novads','Brocēnu novads'),(383,'LV','Burtnieku novads','Burtnieku novads'),(384,'LV','Carnikavas novads','Carnikavas novads'),(385,'LV','Cesvaines novads','Cesvaines novads'),(386,'LV','Ciblas novads','Ciblas novads'),(387,'LV','LV-CE','Cēsu novads'),(388,'LV','Dagdas novads','Dagdas novads'),(389,'LV','LV-DA','Daugavpils novads'),(390,'LV','LV-DO','Dobeles novads'),(391,'LV','Dundagas novads','Dundagas novads'),(392,'LV','Durbes novads','Durbes novads'),(393,'LV','Engures novads','Engures novads'),(394,'LV','Garkalnes novads','Garkalnes novads'),(395,'LV','Grobiņas novads','Grobiņas novads'),(396,'LV','LV-GU','Gulbenes novads'),(397,'LV','Iecavas novads','Iecavas novads'),(398,'LV','Ikšķiles novads','Ikšķiles novads'),(399,'LV','Ilūkstes novads','Ilūkstes novads'),(400,'LV','Inčukalna novads','Inčukalna novads'),(401,'LV','Jaunjelgavas novads','Jaunjelgavas novads'),(402,'LV','Jaunpiebalgas novads','Jaunpiebalgas novads'),(403,'LV','Jaunpils novads','Jaunpils novads'),(404,'LV','LV-JL','Jelgavas novads'),(405,'LV','LV-JK','Jēkabpils novads'),(406,'LV','Kandavas novads','Kandavas novads'),(407,'LV','Kokneses novads','Kokneses novads'),(408,'LV','Krimuldas novads','Krimuldas novads'),(409,'LV','Krustpils novads','Krustpils novads'),(410,'LV','LV-KR','Krāslavas novads'),(411,'LV','LV-KU','Kuldīgas novads'),(412,'LV','Kārsavas novads','Kārsavas novads'),(413,'LV','Lielvārdes novads','Lielvārdes novads'),(414,'LV','LV-LM','Limbažu novads'),(415,'LV','Lubānas novads','Lubānas novads'),(416,'LV','LV-LU','Ludzas novads'),(417,'LV','Līgatnes novads','Līgatnes novads'),(418,'LV','Līvānu novads','Līvānu novads'),(419,'LV','LV-MA','Madonas novads'),(420,'LV','Mazsalacas novads','Mazsalacas novads'),(421,'LV','Mālpils novads','Mālpils novads'),(422,'LV','Mārupes novads','Mārupes novads'),(423,'LV','Naukšēnu novads','Naukšēnu novads'),(424,'LV','Neretas novads','Neretas novads'),(425,'LV','Nīcas novads','Nīcas novads'),(426,'LV','LV-OG','Ogres novads'),(427,'LV','Olaines novads','Olaines novads'),(428,'LV','Ozolnieku novads','Ozolnieku novads'),(429,'LV','LV-PR','Preiļu novads'),(430,'LV','Priekules novads','Priekules novads'),(431,'LV','Priekuļu novads','Priekuļu novads'),(432,'LV','Pārgaujas novads','Pārgaujas novads'),(433,'LV','Pāvilostas novads','Pāvilostas novads'),(434,'LV','Pļaviņu novads','Pļaviņu novads'),(435,'LV','Raunas novads','Raunas novads'),(436,'LV','Riebiņu novads','Riebiņu novads'),(437,'LV','Rojas novads','Rojas novads'),(438,'LV','Ropažu novads','Ropažu novads'),(439,'LV','Rucavas novads','Rucavas novads'),(440,'LV','Rugāju novads','Rugāju novads'),(441,'LV','Rundāles novads','Rundāles novads'),(442,'LV','LV-RE','Rēzeknes novads'),(443,'LV','Rūjienas novads','Rūjienas novads'),(444,'LV','Salacgrīvas novads','Salacgrīvas novads'),(445,'LV','Salas novads','Salas novads'),(446,'LV','Salaspils novads','Salaspils novads'),(447,'LV','LV-SA','Saldus novads'),(448,'LV','Saulkrastu novads','Saulkrastu novads'),(449,'LV','Siguldas novads','Siguldas novads'),(450,'LV','Skrundas novads','Skrundas novads'),(451,'LV','Skrīveru novads','Skrīveru novads'),(452,'LV','Smiltenes novads','Smiltenes novads'),(453,'LV','Stopiņu novads','Stopiņu novads'),(454,'LV','Strenču novads','Strenču novads'),(455,'LV','Sējas novads','Sējas novads'),(456,'LV','LV-TA','Talsu novads'),(457,'LV','LV-TU','Tukuma novads'),(458,'LV','Tērvetes novads','Tērvetes novads'),(459,'LV','Vaiņodes novads','Vaiņodes novads'),(460,'LV','LV-VK','Valkas novads'),(461,'LV','LV-VM','Valmieras novads'),(462,'LV','Varakļānu novads','Varakļānu novads'),(463,'LV','Vecpiebalgas novads','Vecpiebalgas novads'),(464,'LV','Vecumnieku novads','Vecumnieku novads'),(465,'LV','LV-VE','Ventspils novads'),(466,'LV','Viesītes novads','Viesītes novads'),(467,'LV','Viļakas novads','Viļakas novads'),(468,'LV','Viļānu novads','Viļānu novads'),(469,'LV','Vārkavas novads','Vārkavas novads'),(470,'LV','Zilupes novads','Zilupes novads'),(471,'LV','Ādažu novads','Ādažu novads'),(472,'LV','Ērgļu novads','Ērgļu novads'),(473,'LV','Ķeguma novads','Ķeguma novads'),(474,'LV','Ķekavas novads','Ķekavas novads'),(475,'LT','LT-AL','Alytaus Apskritis'),(476,'LT','LT-KU','Kauno Apskritis'),(477,'LT','LT-KL','Klaipėdos Apskritis'),(478,'LT','LT-MR','Marijampolės Apskritis'),(479,'LT','LT-PN','Panevėžio Apskritis'),(480,'LT','LT-SA','Šiaulių Apskritis'),(481,'LT','LT-TA','Tauragės Apskritis'),(482,'LT','LT-TE','Telšių Apskritis'),(483,'LT','LT-UT','Utenos Apskritis'),(484,'LT','LT-VL','Vilniaus Apskritis'),(485,'BR','AC','Acre'),(486,'BR','AL','Alagoas'),(487,'BR','AP','Amapá'),(488,'BR','AM','Amazonas'),(489,'BR','BA','Bahia'),(490,'BR','CE','Ceará'),(491,'BR','ES','Espírito Santo'),(492,'BR','GO','Goiás'),(493,'BR','MA','Maranhão'),(494,'BR','MT','Mato Grosso'),(495,'BR','MS','Mato Grosso do Sul'),(496,'BR','MG','Minas Gerais'),(497,'BR','PA','Pará'),(498,'BR','PB','Paraíba'),(499,'BR','PR','Paraná'),(500,'BR','PE','Pernambuco'),(501,'BR','PI','Piauí'),(502,'BR','RJ','Rio de Janeiro'),(503,'BR','RN','Rio Grande do Norte'),(504,'BR','RS','Rio Grande do Sul'),(505,'BR','RO','Rondônia'),(506,'BR','RR','Roraima'),(507,'BR','SC','Santa Catarina'),(508,'BR','SP','São Paulo'),(509,'BR','SE','Sergipe'),(510,'BR','TO','Tocantins'),(511,'BR','DF','Distrito Federal'),(512,'AL','AL-01','Berat'),(513,'AL','AL-09','Dibër'),(514,'AL','AL-02','Durrës'),(515,'AL','AL-03','Elbasan'),(516,'AL','AL-04','Fier'),(517,'AL','AL-05','Gjirokastër'),(518,'AL','AL-06','Korçë'),(519,'AL','AL-07','Kukës'),(520,'AL','AL-08','Lezhë'),(521,'AL','AL-10','Shkodër'),(522,'AL','AL-11','Tiranë'),(523,'AL','AL-12','Vlorë'),(524,'AR','AR-C','Ciudad Autónoma de Buenos Aires'),(525,'AR','AR-B','Buenos Aires'),(526,'AR','AR-K','Catamarca'),(527,'AR','AR-H','Chaco'),(528,'AR','AR-U','Chubut'),(529,'AR','AR-X','Córdoba'),(530,'AR','AR-W','Corrientes'),(531,'AR','AR-E','Entre Ríos'),(532,'AR','AR-P','Formosa'),(533,'AR','AR-Y','Jujuy'),(534,'AR','AR-L','La Pampa'),(535,'AR','AR-F','La Rioja'),(536,'AR','AR-M','Mendoza'),(537,'AR','AR-N','Misiones'),(538,'AR','AR-Q','Neuquén'),(539,'AR','AR-R','Río Negro'),(540,'AR','AR-A','Salta'),(541,'AR','AR-J','San Juan'),(542,'AR','AR-D','San Luis'),(543,'AR','AR-Z','Santa Cruz'),(544,'AR','AR-S','Santa Fe'),(545,'AR','AR-G','Santiago del Estero'),(546,'AR','AR-V','Tierra del Fuego'),(547,'AR','AR-T','Tucumán'),(548,'HR','HR-01','Zagrebačka županija'),(549,'HR','HR-02','Krapinsko-zagorska županija'),(550,'HR','HR-03','Sisačko-moslavačka županija'),(551,'HR','HR-04','Karlovačka županija'),(552,'HR','HR-05','Varaždinska županija'),(553,'HR','HR-06','Koprivničko-križevačka županija'),(554,'HR','HR-07','Bjelovarsko-bilogorska županija'),(555,'HR','HR-08','Primorsko-goranska županija'),(556,'HR','HR-09','Ličko-senjska županija'),(557,'HR','HR-10','Virovitičko-podravska županija'),(558,'HR','HR-11','Požeško-slavonska županija'),(559,'HR','HR-12','Brodsko-posavska županija'),(560,'HR','HR-13','Zadarska županija'),(561,'HR','HR-14','Osječko-baranjska županija'),(562,'HR','HR-15','Šibensko-kninska županija'),(563,'HR','HR-16','Vukovarsko-srijemska županija'),(564,'HR','HR-17','Splitsko-dalmatinska županija'),(565,'HR','HR-18','Istarska županija'),(566,'HR','HR-19','Dubrovačko-neretvanska županija'),(567,'HR','HR-20','Međimurska županija'),(568,'HR','HR-21','Grad Zagreb'),(569,'IN','AN','Andaman and Nicobar Islands'),(570,'IN','AP','Andhra Pradesh'),(571,'IN','AR','Arunachal Pradesh'),(572,'IN','AS','Assam'),(573,'IN','BR','Bihar'),(574,'IN','CH','Chandigarh'),(575,'IN','CT','Chhattisgarh'),(576,'IN','DN','Dadra and Nagar Haveli'),(577,'IN','DD','Daman and Diu'),(578,'IN','DL','Delhi'),(579,'IN','GA','Goa'),(580,'IN','GJ','Gujarat'),(581,'IN','HR','Haryana'),(582,'IN','HP','Himachal Pradesh'),(583,'IN','JK','Jammu and Kashmir'),(584,'IN','JH','Jharkhand'),(585,'IN','KA','Karnataka'),(586,'IN','KL','Kerala'),(587,'IN','LD','Lakshadweep'),(588,'IN','MP','Madhya Pradesh'),(589,'IN','MH','Maharashtra'),(590,'IN','MN','Manipur'),(591,'IN','ML','Meghalaya'),(592,'IN','MZ','Mizoram'),(593,'IN','NL','Nagaland'),(594,'IN','OR','Odisha'),(595,'IN','PY','Puducherry'),(596,'IN','PB','Punjab'),(597,'IN','RJ','Rajasthan'),(598,'IN','SK','Sikkim'),(599,'IN','TN','Tamil Nadu'),(600,'IN','TG','Telangana'),(601,'IN','TR','Tripura'),(602,'IN','UP','Uttar Pradesh'),(603,'IN','UT','Uttarakhand'),(604,'IN','WB','West Bengal'),(605,'AU','ACT','Australian Capital Territory'),(606,'AU','NSW','New South Wales'),(607,'AU','VIC','Victoria'),(608,'AU','QLD','Queensland'),(609,'AU','SA','South Australia'),(610,'AU','TAS','Tasmania'),(611,'AU','WA','Western Australia'),(612,'AU','NT','Northern Territory'),(613,'BY','BY-BR','Bresckaja voblasć'),(614,'BY','BY-HO','Homieĺskaja voblasć'),(615,'BY','BY-HM','Horad Minsk'),(616,'BY','BY-HR','Hrodzienskaja voblasć'),(617,'BY','BY-MA','Mahilioŭskaja voblasć'),(618,'BY','BY-MI','Minskaja voblasć'),(619,'BY','BY-VI','Viciebskaja voblasć'),(620,'BE','VAN','Antwerpen'),(621,'BE','WBR','Brabant wallon'),(622,'BE','BRU','Brussels-Capital Region'),(623,'BE','WHT','Hainaut'),(624,'BE','VLI','Limburg'),(625,'BE','WLG','Liège'),(626,'BE','WLX','Luxembourg'),(627,'BE','WNA','Namur'),(628,'BE','VOV','Oost-Vlaanderen'),(629,'BE','VBR','Vlaams-Brabant'),(630,'BE','VWV','West-Vlaanderen'),(631,'BO','BO-C','Cochabamba'),(632,'BO','BO-H','Chuquisaca'),(633,'BO','BO-B','El Beni'),(634,'BO','BO-L','La Paz'),(635,'BO','BO-O','Oruro'),(636,'BO','BO-N','Pando'),(637,'BO','BO-P','Potosí'),(638,'BO','BO-S','Santa Cruz'),(639,'BO','BO-T','Tarija'),(640,'BG','BG-01','Blagoevgrad'),(641,'BG','BG-02','Burgas'),(642,'BG','BG-03','Varna'),(643,'BG','BG-04','Veliko Tarnovo'),(644,'BG','BG-05','Vidin'),(645,'BG','BG-06','Vratsa'),(646,'BG','BG-07','Gabrovo'),(647,'BG','BG-08','Dobrich'),(648,'BG','BG-09','Kardzhali'),(649,'BG','BG-10','Kyustendil'),(650,'BG','BG-11','Lovech'),(651,'BG','BG-12','Montana'),(652,'BG','BG-13','Pazardzhik'),(653,'BG','BG-14','Pernik'),(654,'BG','BG-15','Pleven'),(655,'BG','BG-16','Plovdiv'),(656,'BG','BG-17','Razgrad'),(657,'BG','BG-18','Ruse'),(658,'BG','BG-19','Silistra'),(659,'BG','BG-20','Sliven'),(660,'BG','BG-21','Smolyan'),(661,'BG','BG-22','Sofia City'),(662,'BG','BG-23','Sofia Province'),(663,'BG','BG-24','Stara Zagora'),(664,'BG','BG-25','Targovishte'),(665,'BG','BG-26','Haskovo'),(666,'BG','BG-27','Shumen'),(667,'BG','BG-28','Yambol'),(668,'CL','CL-AI','Aisén del General Carlos Ibañez del Campo'),(669,'CL','CL-AN','Antofagasta'),(670,'CL','CL-AP','Arica y Parinacota'),(671,'CL','CL-AR','La Araucanía'),(672,'CL','CL-AT','Atacama'),(673,'CL','CL-BI','Biobío'),(674,'CL','CL-CO','Coquimbo'),(675,'CL','CL-LI','Libertador General Bernardo O\'Higgins'),(676,'CL','CL-LL','Los Lagos'),(677,'CL','CL-LR','Los Ríos'),(678,'CL','CL-MA','Magallanes'),(679,'CL','CL-ML','Maule'),(680,'CL','CL-NB','Ñuble'),(681,'CL','CL-RM','Región Metropolitana de Santiago'),(682,'CL','CL-TA','Tarapacá'),(683,'CL','CL-VS','Valparaíso'),(684,'CN','CN-AH','Anhui Sheng'),(685,'CN','CN-BJ','Beijing Shi'),(686,'CN','CN-CQ','Chongqing Shi'),(687,'CN','CN-FJ','Fujian Sheng'),(688,'CN','CN-GS','Gansu Sheng'),(689,'CN','CN-GD','Guangdong Sheng'),(690,'CN','CN-GX','Guangxi Zhuangzu Zizhiqu'),(691,'CN','CN-GZ','Guizhou Sheng'),(692,'CN','CN-HI','Hainan Sheng'),(693,'CN','CN-HE','Hebei Sheng'),(694,'CN','CN-HL','Heilongjiang Sheng'),(695,'CN','CN-HA','Henan Sheng'),(696,'CN','CN-HK','Hong Kong SAR'),(697,'CN','CN-HB','Hubei Sheng'),(698,'CN','CN-HN','Hunan Sheng'),(699,'CN','CN-JS','Jiangsu Sheng'),(700,'CN','CN-JX','Jiangxi Sheng'),(701,'CN','CN-JL','Jilin Sheng'),(702,'CN','CN-LN','Liaoning Sheng'),(703,'CN','CN-MO','Macao SAR'),(704,'CN','CN-NM','Nei Mongol Zizhiqu'),(705,'CN','CN-NX','Ningxia Huizi Zizhiqu'),(706,'CN','CN-QH','Qinghai Sheng'),(707,'CN','CN-SN','Shaanxi Sheng'),(708,'CN','CN-SD','Shandong Sheng'),(709,'CN','CN-SH','Shanghai Shi'),(710,'CN','CN-SX','Shanxi Sheng'),(711,'CN','CN-SC','Sichuan Sheng'),(712,'CN','CN-TW','Taiwan Sheng'),(713,'CN','CN-TJ','Tianjin Shi'),(714,'CN','CN-XJ','Xinjiang Uygur Zizhiqu'),(715,'CN','CN-XZ','Xizang Zizhiqu'),(716,'CN','CN-YN','Yunnan Sheng'),(717,'CN','CN-ZJ','Zhejiang Sheng'),(718,'CO','CO-AMA','Amazonas'),(719,'CO','CO-ANT','Antioquia'),(720,'CO','CO-ARA','Arauca'),(721,'CO','CO-ATL','Atlántico'),(722,'CO','CO-BOL','Bolívar'),(723,'CO','CO-BOY','Boyacá'),(724,'CO','CO-CAL','Caldas'),(725,'CO','CO-CAQ','Caquetá'),(726,'CO','CO-CAS','Casanare'),(727,'CO','CO-CAU','Cauca'),(728,'CO','CO-CES','Cesar'),(729,'CO','CO-CHO','Chocó'),(730,'CO','CO-COR','Córdoba'),(731,'CO','CO-CUN','Cundinamarca'),(732,'CO','CO-GUA','Guainía'),(733,'CO','CO-GUV','Guaviare'),(734,'CO','CO-HUL','Huila'),(735,'CO','CO-LAG','La Guajira'),(736,'CO','CO-MAG','Magdalena'),(737,'CO','CO-MET','Meta'),(738,'CO','CO-NAR','Nariño'),(739,'CO','CO-NSA','Norte de Santander'),(740,'CO','CO-PUT','Putumayo'),(741,'CO','CO-QUI','Quindío'),(742,'CO','CO-RIS','Risaralda'),(743,'CO','CO-SAP','San Andrés y Providencia'),(744,'CO','CO-SAN','Santander'),(745,'CO','CO-SUC','Sucre'),(746,'CO','CO-TOL','Tolima'),(747,'CO','CO-VAC','Valle del Cauca'),(748,'CO','CO-VAU','Vaupés'),(749,'CO','CO-VID','Vichada'),(750,'DK','DK-84','Hovedstaden'),(751,'DK','DK-82','Midtjylland'),(752,'DK','DK-81','Nordjylland'),(753,'DK','DK-85','Sjælland'),(754,'DK','DK-83','Syddanmark'),(755,'EC','EC-A','Azuay'),(756,'EC','EC-B','Bolívar'),(757,'EC','EC-F','Cañar'),(758,'EC','EC-C','Carchi'),(759,'EC','EC-H','Chimborazo'),(760,'EC','EC-X','Cotopaxi'),(761,'EC','EC-O','El Oro'),(762,'EC','EC-E','Esmeraldas'),(763,'EC','EC-W','Galápagos'),(764,'EC','EC-G','Guayas'),(765,'EC','EC-I','Imbabura'),(766,'EC','EC-L','Loja'),(767,'EC','EC-R','Los Ríos'),(768,'EC','EC-M','Manabí'),(769,'EC','EC-S','Morona Santiago'),(770,'EC','EC-N','Napo'),(771,'EC','EC-D','Orellana'),(772,'EC','EC-Y','Pastaza'),(773,'EC','EC-P','Pichincha'),(774,'EC','EC-SE','Santa Elena'),(775,'EC','EC-SD','Santo Domingo de los Tsáchilas'),(776,'EC','EC-U','Sucumbíos'),(777,'EC','EC-T','Tungurahua'),(778,'EC','EC-Z','Zamora Chinchipe'),(779,'GR','GR-A','Anatolikí Makedonía kai Thráki'),(780,'GR','GR-I','Attikí'),(781,'GR','GR-G','Dytikí Elláda'),(782,'GR','GR-C','Dytikí Makedonía'),(783,'GR','GR-F','Ionía Nísia'),(784,'GR','GR-D','Ípeiros'),(785,'GR','GR-B','Kentrikí Makedonía'),(786,'GR','GR-M','Kríti'),(787,'GR','GR-L','Nótio Aigaío'),(788,'GR','GR-J','Pelopónnisos'),(789,'GR','GR-H','Stereá Elláda'),(790,'GR','GR-E','Thessalía'),(791,'GR','GR-K','Vóreio Aigaío'),(792,'GR','GR-69','Ágion Óros'),(793,'GY','GY-BA','Barima-Waini'),(794,'GY','GY-CU','Cuyuni-Mazaruni'),(795,'GY','GY-DE','Demerara-Mahaica'),(796,'GY','GY-EB','East Berbice-Corentyne'),(797,'GY','GY-ES','Essequibo Islands-West Demerara'),(798,'GY','GY-MA','Mahaica-Berbice'),(799,'GY','GY-PM','Pomeroon-Supenaam'),(800,'GY','GY-PT','Potaro-Siparuni'),(801,'GY','GY-UD','Upper Demerara-Berbice'),(802,'GY','GY-UT','Upper Takutu-Upper Essequibo'),(803,'IS','IS-01','Höfuðborgarsvæði'),(804,'IS','IS-02','Suðurnes'),(805,'IS','IS-03','Vesturland'),(806,'IS','IS-04','Vestfirðir'),(807,'IS','IS-05','Norðurland vestra'),(808,'IS','IS-06','Norðurland eystra'),(809,'IS','IS-07','Austurland'),(810,'IS','IS-08','Suðurland'),(811,'IT','AG','Agrigento'),(812,'IT','AL','Alessandria'),(813,'IT','AN','Ancona'),(814,'IT','AO','Aosta'),(815,'IT','AQ','L\'Aquila'),(816,'IT','AR','Arezzo'),(817,'IT','AP','Ascoli-Piceno'),(818,'IT','AT','Asti'),(819,'IT','AV','Avellino'),(820,'IT','BA','Bari'),(821,'IT','BT','Barletta-Andria-Trani'),(822,'IT','BL','Belluno'),(823,'IT','BN','Benevento'),(824,'IT','BG','Bergamo'),(825,'IT','BI','Biella'),(826,'IT','BO','Bologna'),(827,'IT','BZ','Bolzano'),(828,'IT','BS','Brescia'),(829,'IT','BR','Brindisi'),(830,'IT','CA','Cagliari'),(831,'IT','CL','Caltanissetta'),(832,'IT','CB','Campobasso'),(833,'IT','CI','Carbonia Iglesias'),(834,'IT','CE','Caserta'),(835,'IT','CT','Catania'),(836,'IT','CZ','Catanzaro'),(837,'IT','CH','Chieti'),(838,'IT','CO','Como'),(839,'IT','CS','Cosenza'),(840,'IT','CR','Cremona'),(841,'IT','KR','Crotone'),(842,'IT','CN','Cuneo'),(843,'IT','EN','Enna'),(844,'IT','FM','Fermo'),(845,'IT','FE','Ferrara'),(846,'IT','FI','Firenze'),(847,'IT','FG','Foggia'),(848,'IT','FC','Forli-Cesena'),(849,'IT','FR','Frosinone'),(850,'IT','GE','Genova'),(851,'IT','GO','Gorizia'),(852,'IT','GR','Grosseto'),(853,'IT','IM','Imperia'),(854,'IT','IS','Isernia'),(855,'IT','SP','La-Spezia'),(856,'IT','LT','Latina'),(857,'IT','LE','Lecce'),(858,'IT','LC','Lecco'),(859,'IT','LI','Livorno'),(860,'IT','LO','Lodi'),(861,'IT','LU','Lucca'),(862,'IT','MC','Macerata'),(863,'IT','MN','Mantova'),(864,'IT','MS','Massa-Carrara'),(865,'IT','MT','Matera'),(866,'IT','VS','Medio Campidano'),(867,'IT','ME','Messina'),(868,'IT','MI','Milano'),(869,'IT','MO','Modena'),(870,'IT','MB','Monza-Brianza'),(871,'IT','NA','Napoli'),(872,'IT','NO','Novara'),(873,'IT','NU','Nuoro'),(874,'IT','OG','Ogliastra'),(875,'IT','OT','Olbia Tempio'),(876,'IT','OR','Oristano'),(877,'IT','PD','Padova'),(878,'IT','PA','Palermo'),(879,'IT','PR','Parma'),(880,'IT','PV','Pavia'),(881,'IT','PG','Perugia'),(882,'IT','PU','Pesaro-Urbino'),(883,'IT','PE','Pescara'),(884,'IT','PC','Piacenza'),(885,'IT','PI','Pisa'),(886,'IT','PT','Pistoia'),(887,'IT','PN','Pordenone'),(888,'IT','PZ','Potenza'),(889,'IT','PO','Prato'),(890,'IT','RG','Ragusa'),(891,'IT','RA','Ravenna'),(892,'IT','RC','Reggio-Calabria'),(893,'IT','RE','Reggio-Emilia'),(894,'IT','RI','Rieti'),(895,'IT','RN','Rimini'),(896,'IT','RM','Roma'),(897,'IT','RO','Rovigo'),(898,'IT','SA','Salerno'),(899,'IT','SS','Sassari'),(900,'IT','SV','Savona'),(901,'IT','SI','Siena'),(902,'IT','SR','Siracusa'),(903,'IT','SO','Sondrio'),(904,'IT','TA','Taranto'),(905,'IT','TE','Teramo'),(906,'IT','TR','Terni'),(907,'IT','TO','Torino'),(908,'IT','TP','Trapani'),(909,'IT','TN','Trento'),(910,'IT','TV','Treviso'),(911,'IT','TS','Trieste'),(912,'IT','UD','Udine'),(913,'IT','VA','Varese'),(914,'IT','VE','Venezia'),(915,'IT','VB','Verbania'),(916,'IT','VC','Vercelli'),(917,'IT','VR','Verona'),(918,'IT','VV','Vibo-Valentia'),(919,'IT','VI','Vicenza'),(920,'IT','VT','Viterbo'),(921,'MX','AGU','Aguascalientes'),(922,'MX','BCN','Baja California'),(923,'MX','BCS','Baja California Sur'),(924,'MX','CAM','Campeche'),(925,'MX','CHP','Chiapas'),(926,'MX','CHH','Chihuahua'),(927,'MX','CMX','Ciudad de México'),(928,'MX','COA','Coahuila'),(929,'MX','COL','Colima'),(930,'MX','DUR','Durango'),(931,'MX','MEX','Estado de México'),(932,'MX','GUA','Guanajuato'),(933,'MX','GRO','Guerrero'),(934,'MX','HID','Hidalgo'),(935,'MX','JAL','Jalisco'),(936,'MX','MIC','Michoacán'),(937,'MX','MOR','Morelos'),(938,'MX','NAY','Nayarit'),(939,'MX','NLE','Nuevo León'),(940,'MX','OAX','Oaxaca'),(941,'MX','PUE','Puebla'),(942,'MX','QUE','Querétaro'),(943,'MX','ROO','Quintana Roo'),(944,'MX','SLP','San Luis Potosí'),(945,'MX','SIN','Sinaloa'),(946,'MX','SON','Sonora'),(947,'MX','TAB','Tabasco'),(948,'MX','TAM','Tamaulipas'),(949,'MX','TLA','Tlaxcala'),(950,'MX','VER','Veracruz'),(951,'MX','YUC','Yucatán'),(952,'MX','ZAC','Zacatecas'),(953,'PY','PY-ASU','Asunción'),(954,'PY','PY-16','Alto Paraguay'),(955,'PY','PY-10','Alto Paraná'),(956,'PY','PY-13','Amambay'),(957,'PY','PY-19','Boquerón'),(958,'PY','PY-5','Caaguazú'),(959,'PY','PY-6','Caazapá'),(960,'PY','PY-14','Canindeyú'),(961,'PY','PY-11','Central'),(962,'PY','PY-1','Concepción'),(963,'PY','PY-3','Cordillera'),(964,'PY','PY-4','Guairá'),(965,'PY','PY-7','Itapúa'),(966,'PY','PY-8','Misiones'),(967,'PY','PY-12','Ñeembucú'),(968,'PY','PY-9','Paraguarí'),(969,'PY','PY-15','Presidente Hayes'),(970,'PY','PY-2','San Pedro'),(971,'PE','PE-LMA','Municipalidad Metropolitana de Lima'),(972,'PE','PE-AMA','Amazonas'),(973,'PE','PE-ANC','Ancash'),(974,'PE','PE-APU','Apurímac'),(975,'PE','PE-ARE','Arequipa'),(976,'PE','PE-AYA','Ayacucho'),(977,'PE','PE-CAJ','Cajamarca'),(978,'PE','PE-CUS','Cusco'),(979,'PE','PE-CAL','El Callao'),(980,'PE','PE-HUV','Huancavelica'),(981,'PE','PE-HUC','Huánuco'),(982,'PE','PE-ICA','Ica'),(983,'PE','PE-JUN','Junín'),(984,'PE','PE-LAL','La Libertad'),(985,'PE','PE-LAM','Lambayeque'),(986,'PE','PE-LIM','Lima'),(987,'PE','PE-LOR','Loreto'),(988,'PE','PE-MDD','Madre de Dios'),(989,'PE','PE-MOQ','Moquegua'),(990,'PE','PE-PAS','Pasco'),(991,'PE','PE-PIU','Piura'),(992,'PE','PE-PUN','Puno'),(993,'PE','PE-SAM','San Martín'),(994,'PE','PE-TAC','Tacna'),(995,'PE','PE-TUM','Tumbes'),(996,'PE','PE-UCA','Ucayali'),(997,'PL','PL-02','dolnośląskie'),(998,'PL','PL-04','kujawsko-pomorskie'),(999,'PL','PL-06','lubelskie'),(1000,'PL','PL-08','lubuskie'),(1001,'PL','PL-10','łódzkie'),(1002,'PL','PL-12','małopolskie'),(1003,'PL','PL-14','mazowieckie'),(1004,'PL','PL-16','opolskie'),(1005,'PL','PL-18','podkarpackie'),(1006,'PL','PL-20','podlaskie'),(1007,'PL','PL-22','pomorskie'),(1008,'PL','PL-24','śląskie'),(1009,'PL','PL-26','świętokrzyskie'),(1010,'PL','PL-28','warmińsko-mazurskie'),(1011,'PL','PL-30','wielkopolskie'),(1012,'PL','PL-32','zachodniopomorskie'),(1013,'PT','PT-01','Aveiro'),(1014,'PT','PT-02','Beja'),(1015,'PT','PT-03','Braga'),(1016,'PT','PT-04','Bragança'),(1017,'PT','PT-05','Castelo Branco'),(1018,'PT','PT-06','Coimbra'),(1019,'PT','PT-07','Évora'),(1020,'PT','PT-08','Faro'),(1021,'PT','PT-09','Guarda'),(1022,'PT','PT-10','Leiria'),(1023,'PT','PT-11','Lisboa'),(1024,'PT','PT-12','Portalegre'),(1025,'PT','PT-13','Porto'),(1026,'PT','PT-14','Santarém'),(1027,'PT','PT-15','Setúbal'),(1028,'PT','PT-16','Viana do Castelo'),(1029,'PT','PT-17','Vila Real'),(1030,'PT','PT-18','Viseu'),(1031,'PT','PT-20','Região Autónoma dos Açores'),(1032,'PT','PT-30','Região Autónoma da Madeira'),(1033,'SR','SR-BR','Brokopondo'),(1034,'SR','SR-CM','Commewijne'),(1035,'SR','SR-CR','Coronie'),(1036,'SR','SR-MA','Marowijne'),(1037,'SR','SR-NI','Nickerie'),(1038,'SR','SR-PR','Para'),(1039,'SR','SR-PM','Paramaribo'),(1040,'SR','SR-SA','Saramacca'),(1041,'SR','SR-SI','Sipaliwini'),(1042,'SR','SR-WA','Wanica'),(1043,'SE','SE-K','Blekinge län'),(1044,'SE','SE-W','Dalarnas län'),(1045,'SE','SE-I','Gotlands län'),(1046,'SE','SE-X','Gävleborgs län'),(1047,'SE','SE-N','Hallands län'),(1048,'SE','SE-Z','Jämtlands län'),(1049,'SE','SE-F','Jönköpings län'),(1050,'SE','SE-H','Kalmar län'),(1051,'SE','SE-G','Kronobergs län'),(1052,'SE','SE-BD','Norrbottens län'),(1053,'SE','SE-M','Skåne län'),(1054,'SE','SE-AB','Stockholms län'),(1055,'SE','SE-D','Södermanlands län'),(1056,'SE','SE-C','Uppsala län'),(1057,'SE','SE-S','Värmlands län'),(1058,'SE','SE-AC','Västerbottens län'),(1059,'SE','SE-Y','Västernorrlands län'),(1060,'SE','SE-U','Västmanlands län'),(1061,'SE','SE-O','Västra Götalands län'),(1062,'SE','SE-T','Örebro län'),(1063,'SE','SE-E','Östergötlands län'),(1064,'UY','UY-AR','Artigas'),(1065,'UY','UY-CA','Canelones'),(1066,'UY','UY-CL','Cerro Largo'),(1067,'UY','UY-CO','Colonia'),(1068,'UY','UY-DU','Durazno'),(1069,'UY','UY-FS','Flores'),(1070,'UY','UY-FD','Florida'),(1071,'UY','UY-LA','Lavalleja'),(1072,'UY','UY-MA','Maldonado'),(1073,'UY','UY-MO','Montevideo'),(1074,'UY','UY-PA','Paysandu'),(1075,'UY','UY-RN','Río Negro'),(1076,'UY','UY-RV','Rivera'),(1077,'UY','UY-RO','Rocha'),(1078,'UY','UY-SA','Salto'),(1079,'UY','UY-SJ','San José'),(1080,'UY','UY-SO','Soriano'),(1081,'UY','UY-TA','Tacuarembó'),(1082,'UY','UY-TT','Treinta y Tres'),(1083,'VE','VE-W','Dependencias Federales'),(1084,'VE','VE-A','Distrito Capital'),(1085,'VE','VE-Z','Amazonas'),(1086,'VE','VE-B','Anzoátegui'),(1087,'VE','VE-C','Apure'),(1088,'VE','VE-D','Aragua'),(1089,'VE','VE-E','Barinas'),(1090,'VE','VE-F','Bolívar'),(1091,'VE','VE-G','Carabobo'),(1092,'VE','VE-H','Cojedes'),(1093,'VE','VE-Y','Delta Amacuro'),(1094,'VE','VE-I','Falcón'),(1095,'VE','VE-J','Guárico'),(1096,'VE','VE-K','Lara'),(1097,'VE','VE-L','Mérida'),(1098,'VE','VE-M','Miranda'),(1099,'VE','VE-N','Monagas'),(1100,'VE','VE-O','Nueva Esparta'),(1101,'VE','VE-P','Portuguesa'),(1102,'VE','VE-R','Sucre'),(1103,'VE','VE-S','Táchira'),(1104,'VE','VE-T','Trujillo'),(1105,'VE','VE-X','Vargas'),(1106,'VE','VE-U','Yaracuy'),(1107,'VE','VE-V','Zulia');
/*!40000 ALTER TABLE `directory_country_region` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `directory_country_region_name`
--

DROP TABLE IF EXISTS `directory_country_region_name`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directory_country_region_name` (
  `locale` varchar(16) NOT NULL COMMENT 'Locale',
  `region_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Region ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Region Name',
  PRIMARY KEY (`locale`,`region_id`),
  KEY `DIRECTORY_COUNTRY_REGION_NAME_REGION_ID` (`region_id`),
  CONSTRAINT `DIR_COUNTRY_REGION_NAME_REGION_ID_DIR_COUNTRY_REGION_REGION_ID` FOREIGN KEY (`region_id`) REFERENCES `directory_country_region` (`region_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Country Region Name';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_country_region_name`
--

LOCK TABLES `directory_country_region_name` WRITE;
/*!40000 ALTER TABLE `directory_country_region_name` DISABLE KEYS */;
INSERT INTO `directory_country_region_name` VALUES ('en_US',1,'Alabama'),('en_US',2,'Alaska'),('en_US',3,'American Samoa'),('en_US',4,'Arizona'),('en_US',5,'Arkansas'),('en_US',6,'Armed Forces Africa'),('en_US',7,'Armed Forces Americas'),('en_US',8,'Armed Forces Canada'),('en_US',9,'Armed Forces Europe'),('en_US',10,'Armed Forces Middle East'),('en_US',11,'Armed Forces Pacific'),('en_US',12,'California'),('en_US',13,'Colorado'),('en_US',14,'Connecticut'),('en_US',15,'Delaware'),('en_US',16,'District of Columbia'),('en_US',17,'Federated States Of Micronesia'),('en_US',18,'Florida'),('en_US',19,'Georgia'),('en_US',20,'Guam'),('en_US',21,'Hawaii'),('en_US',22,'Idaho'),('en_US',23,'Illinois'),('en_US',24,'Indiana'),('en_US',25,'Iowa'),('en_US',26,'Kansas'),('en_US',27,'Kentucky'),('en_US',28,'Louisiana'),('en_US',29,'Maine'),('en_US',30,'Marshall Islands'),('en_US',31,'Maryland'),('en_US',32,'Massachusetts'),('en_US',33,'Michigan'),('en_US',34,'Minnesota'),('en_US',35,'Mississippi'),('en_US',36,'Missouri'),('en_US',37,'Montana'),('en_US',38,'Nebraska'),('en_US',39,'Nevada'),('en_US',40,'New Hampshire'),('en_US',41,'New Jersey'),('en_US',42,'New Mexico'),('en_US',43,'New York'),('en_US',44,'North Carolina'),('en_US',45,'North Dakota'),('en_US',46,'Northern Mariana Islands'),('en_US',47,'Ohio'),('en_US',48,'Oklahoma'),('en_US',49,'Oregon'),('en_US',50,'Palau'),('en_US',51,'Pennsylvania'),('en_US',52,'Puerto Rico'),('en_US',53,'Rhode Island'),('en_US',54,'South Carolina'),('en_US',55,'South Dakota'),('en_US',56,'Tennessee'),('en_US',57,'Texas'),('en_US',58,'Utah'),('en_US',59,'Vermont'),('en_US',60,'Virgin Islands'),('en_US',61,'Virginia'),('en_US',62,'Washington'),('en_US',63,'West Virginia'),('en_US',64,'Wisconsin'),('en_US',65,'Wyoming'),('en_US',66,'Alberta'),('en_US',67,'British Columbia'),('en_US',68,'Manitoba'),('en_US',69,'Newfoundland and Labrador'),('en_US',70,'New Brunswick'),('en_US',71,'Nova Scotia'),('en_US',72,'Northwest Territories'),('en_US',73,'Nunavut'),('en_US',74,'Ontario'),('en_US',75,'Prince Edward Island'),('en_US',76,'Quebec'),('en_US',77,'Saskatchewan'),('en_US',78,'Yukon Territory'),('en_US',79,'Niedersachsen'),('en_US',80,'Baden-Württemberg'),('en_US',81,'Bayern'),('en_US',82,'Berlin'),('en_US',83,'Brandenburg'),('en_US',84,'Bremen'),('en_US',85,'Hamburg'),('en_US',86,'Hessen'),('en_US',87,'Mecklenburg-Vorpommern'),('en_US',88,'Nordrhein-Westfalen'),('en_US',89,'Rheinland-Pfalz'),('en_US',90,'Saarland'),('en_US',91,'Sachsen'),('en_US',92,'Sachsen-Anhalt'),('en_US',93,'Schleswig-Holstein'),('en_US',94,'Thüringen'),('en_US',95,'Wien'),('en_US',96,'Niederösterreich'),('en_US',97,'Oberösterreich'),('en_US',98,'Salzburg'),('en_US',99,'Kärnten'),('en_US',100,'Steiermark'),('en_US',101,'Tirol'),('en_US',102,'Burgenland'),('en_US',103,'Vorarlberg'),('en_US',104,'Aargau'),('en_US',105,'Appenzell Innerrhoden'),('en_US',106,'Appenzell Ausserrhoden'),('en_US',107,'Bern'),('en_US',108,'Basel-Landschaft'),('en_US',109,'Basel-Stadt'),('en_US',110,'Friburg'),('en_US',111,'Geneva'),('en_US',112,'Glarus'),('en_US',113,'Graubünden'),('en_US',114,'Jura'),('en_US',115,'Lucerne'),('en_US',116,'Neuchâtel'),('en_US',117,'Nidwalden'),('en_US',118,'Obwalden'),('en_US',119,'St. Gallen'),('en_US',120,'Schaffhausen'),('en_US',121,'Solothurn'),('en_US',122,'Schwyz'),('en_US',123,'Thurgau'),('en_US',124,'Ticino'),('en_US',125,'Uri'),('en_US',126,'Vaud'),('en_US',127,'Wallis'),('en_US',128,'Zug'),('en_US',129,'Zürich'),('en_US',130,'A Coruña'),('en_US',131,'Alava'),('en_US',132,'Albacete'),('en_US',133,'Alicante'),('en_US',134,'Almeria'),('en_US',135,'Asturias'),('en_US',136,'Avila'),('en_US',137,'Badajoz'),('en_US',138,'Baleares'),('en_US',139,'Barcelona'),('en_US',140,'Burgos'),('en_US',141,'Caceres'),('en_US',142,'Cadiz'),('en_US',143,'Cantabria'),('en_US',144,'Castellon'),('en_US',145,'Ceuta'),('en_US',146,'Ciudad Real'),('en_US',147,'Cordoba'),('en_US',148,'Cuenca'),('en_US',149,'Girona'),('en_US',150,'Granada'),('en_US',151,'Guadalajara'),('en_US',152,'Guipuzcoa'),('en_US',153,'Huelva'),('en_US',154,'Huesca'),('en_US',155,'Jaen'),('en_US',156,'La Rioja'),('en_US',157,'Las Palmas'),('en_US',158,'Leon'),('en_US',159,'Lleida'),('en_US',160,'Lugo'),('en_US',161,'Madrid'),('en_US',162,'Malaga'),('en_US',163,'Melilla'),('en_US',164,'Murcia'),('en_US',165,'Navarra'),('en_US',166,'Ourense'),('en_US',167,'Palencia'),('en_US',168,'Pontevedra'),('en_US',169,'Salamanca'),('en_US',170,'Santa Cruz de Tenerife'),('en_US',171,'Segovia'),('en_US',172,'Sevilla'),('en_US',173,'Soria'),('en_US',174,'Tarragona'),('en_US',175,'Teruel'),('en_US',176,'Toledo'),('en_US',177,'Valencia'),('en_US',178,'Valladolid'),('en_US',179,'Vizcaya'),('en_US',180,'Zamora'),('en_US',181,'Zaragoza'),('en_US',182,'Ain'),('en_US',183,'Aisne'),('en_US',184,'Allier'),('en_US',185,'Alpes-de-Haute-Provence'),('en_US',186,'Hautes-Alpes'),('en_US',187,'Alpes-Maritimes'),('en_US',188,'Ardèche'),('en_US',189,'Ardennes'),('en_US',190,'Ariège'),('en_US',191,'Aube'),('en_US',192,'Aude'),('en_US',193,'Aveyron'),('en_US',194,'Bouches-du-Rhône'),('en_US',195,'Calvados'),('en_US',196,'Cantal'),('en_US',197,'Charente'),('en_US',198,'Charente-Maritime'),('en_US',199,'Cher'),('en_US',200,'Corrèze'),('en_US',201,'Corse-du-Sud'),('en_US',202,'Haute-Corse'),('en_US',203,'Côte-d\'Or'),('en_US',204,'Côtes-d\'Armor'),('en_US',205,'Creuse'),('en_US',206,'Dordogne'),('en_US',207,'Doubs'),('en_US',208,'Drôme'),('en_US',209,'Eure'),('en_US',210,'Eure-et-Loir'),('en_US',211,'Finistère'),('en_US',212,'Gard'),('en_US',213,'Haute-Garonne'),('en_US',214,'Gers'),('en_US',215,'Gironde'),('en_US',216,'Hérault'),('en_US',217,'Ille-et-Vilaine'),('en_US',218,'Indre'),('en_US',219,'Indre-et-Loire'),('en_US',220,'Isère'),('en_US',221,'Jura'),('en_US',222,'Landes'),('en_US',223,'Loir-et-Cher'),('en_US',224,'Loire'),('en_US',225,'Haute-Loire'),('en_US',226,'Loire-Atlantique'),('en_US',227,'Loiret'),('en_US',228,'Lot'),('en_US',229,'Lot-et-Garonne'),('en_US',230,'Lozère'),('en_US',231,'Maine-et-Loire'),('en_US',232,'Manche'),('en_US',233,'Marne'),('en_US',234,'Haute-Marne'),('en_US',235,'Mayenne'),('en_US',236,'Meurthe-et-Moselle'),('en_US',237,'Meuse'),('en_US',238,'Morbihan'),('en_US',239,'Moselle'),('en_US',240,'Nièvre'),('en_US',241,'Nord'),('en_US',242,'Oise'),('en_US',243,'Orne'),('en_US',244,'Pas-de-Calais'),('en_US',245,'Puy-de-Dôme'),('en_US',246,'Pyrénées-Atlantiques'),('en_US',247,'Hautes-Pyrénées'),('en_US',248,'Pyrénées-Orientales'),('en_US',249,'Bas-Rhin'),('en_US',250,'Haut-Rhin'),('en_US',251,'Rhône'),('en_US',252,'Haute-Saône'),('en_US',253,'Saône-et-Loire'),('en_US',254,'Sarthe'),('en_US',255,'Savoie'),('en_US',256,'Haute-Savoie'),('en_US',257,'Paris'),('en_US',258,'Seine-Maritime'),('en_US',259,'Seine-et-Marne'),('en_US',260,'Yvelines'),('en_US',261,'Deux-Sèvres'),('en_US',262,'Somme'),('en_US',263,'Tarn'),('en_US',264,'Tarn-et-Garonne'),('en_US',265,'Var'),('en_US',266,'Vaucluse'),('en_US',267,'Vendée'),('en_US',268,'Vienne'),('en_US',269,'Haute-Vienne'),('en_US',270,'Vosges'),('en_US',271,'Yonne'),('en_US',272,'Territoire-de-Belfort'),('en_US',273,'Essonne'),('en_US',274,'Hauts-de-Seine'),('en_US',275,'Seine-Saint-Denis'),('en_US',276,'Val-de-Marne'),('en_US',277,'Val-d\'Oise'),('en_US',278,'Alba'),('en_US',279,'Arad'),('en_US',280,'Argeş'),('en_US',281,'Bacău'),('en_US',282,'Bihor'),('en_US',283,'Bistriţa-Năsăud'),('en_US',284,'Botoşani'),('en_US',285,'Braşov'),('en_US',286,'Brăila'),('en_US',287,'Bucureşti'),('en_US',288,'Buzău'),('en_US',289,'Caraş-Severin'),('en_US',290,'Călăraşi'),('en_US',291,'Cluj'),('en_US',292,'Constanţa'),('en_US',293,'Covasna'),('en_US',294,'Dâmboviţa'),('en_US',295,'Dolj'),('en_US',296,'Galaţi'),('en_US',297,'Giurgiu'),('en_US',298,'Gorj'),('en_US',299,'Harghita'),('en_US',300,'Hunedoara'),('en_US',301,'Ialomiţa'),('en_US',302,'Iaşi'),('en_US',303,'Ilfov'),('en_US',304,'Maramureş'),('en_US',305,'Mehedinţi'),('en_US',306,'Mureş'),('en_US',307,'Neamţ'),('en_US',308,'Olt'),('en_US',309,'Prahova'),('en_US',310,'Satu-Mare'),('en_US',311,'Sălaj'),('en_US',312,'Sibiu'),('en_US',313,'Suceava'),('en_US',314,'Teleorman'),('en_US',315,'Timiş'),('en_US',316,'Tulcea'),('en_US',317,'Vaslui'),('en_US',318,'Vâlcea'),('en_US',319,'Vrancea'),('en_US',320,'Lappi'),('en_US',321,'Pohjois-Pohjanmaa'),('en_US',322,'Kainuu'),('en_US',323,'Pohjois-Karjala'),('en_US',324,'Pohjois-Savo'),('en_US',325,'Etelä-Savo'),('en_US',326,'Etelä-Pohjanmaa'),('en_US',327,'Pohjanmaa'),('en_US',328,'Pirkanmaa'),('en_US',329,'Satakunta'),('en_US',330,'Keski-Pohjanmaa'),('en_US',331,'Keski-Suomi'),('en_US',332,'Varsinais-Suomi'),('en_US',333,'Etelä-Karjala'),('en_US',334,'Päijät-Häme'),('en_US',335,'Kanta-Häme'),('en_US',336,'Uusimaa'),('en_US',337,'Itä-Uusimaa'),('en_US',338,'Kymenlaakso'),('en_US',339,'Ahvenanmaa'),('en_US',340,'Harjumaa'),('en_US',341,'Hiiumaa'),('en_US',342,'Ida-Virumaa'),('en_US',343,'Jõgevamaa'),('en_US',344,'Järvamaa'),('en_US',345,'Läänemaa'),('en_US',346,'Lääne-Virumaa'),('en_US',347,'Põlvamaa'),('en_US',348,'Pärnumaa'),('en_US',349,'Raplamaa'),('en_US',350,'Saaremaa'),('en_US',351,'Tartumaa'),('en_US',352,'Valgamaa'),('en_US',353,'Viljandimaa'),('en_US',354,'Võrumaa'),('en_US',355,'Daugavpils'),('en_US',356,'Jelgava'),('en_US',357,'Jēkabpils'),('en_US',358,'Jūrmala'),('en_US',359,'Liepāja'),('en_US',360,'Liepājas novads'),('en_US',361,'Rēzekne'),('en_US',362,'Rīga'),('en_US',363,'Rīgas novads'),('en_US',364,'Valmiera'),('en_US',365,'Ventspils'),('en_US',366,'Aglonas novads'),('en_US',367,'Aizkraukles novads'),('en_US',368,'Aizputes novads'),('en_US',369,'Aknīstes novads'),('en_US',370,'Alojas novads'),('en_US',371,'Alsungas novads'),('en_US',372,'Alūksnes novads'),('en_US',373,'Amatas novads'),('en_US',374,'Apes novads'),('en_US',375,'Auces novads'),('en_US',376,'Babītes novads'),('en_US',377,'Baldones novads'),('en_US',378,'Baltinavas novads'),('en_US',379,'Balvu novads'),('en_US',380,'Bauskas novads'),('en_US',381,'Beverīnas novads'),('en_US',382,'Brocēnu novads'),('en_US',383,'Burtnieku novads'),('en_US',384,'Carnikavas novads'),('en_US',385,'Cesvaines novads'),('en_US',386,'Ciblas novads'),('en_US',387,'Cēsu novads'),('en_US',388,'Dagdas novads'),('en_US',389,'Daugavpils novads'),('en_US',390,'Dobeles novads'),('en_US',391,'Dundagas novads'),('en_US',392,'Durbes novads'),('en_US',393,'Engures novads'),('en_US',394,'Garkalnes novads'),('en_US',395,'Grobiņas novads'),('en_US',396,'Gulbenes novads'),('en_US',397,'Iecavas novads'),('en_US',398,'Ikšķiles novads'),('en_US',399,'Ilūkstes novads'),('en_US',400,'Inčukalna novads'),('en_US',401,'Jaunjelgavas novads'),('en_US',402,'Jaunpiebalgas novads'),('en_US',403,'Jaunpils novads'),('en_US',404,'Jelgavas novads'),('en_US',405,'Jēkabpils novads'),('en_US',406,'Kandavas novads'),('en_US',407,'Kokneses novads'),('en_US',408,'Krimuldas novads'),('en_US',409,'Krustpils novads'),('en_US',410,'Krāslavas novads'),('en_US',411,'Kuldīgas novads'),('en_US',412,'Kārsavas novads'),('en_US',413,'Lielvārdes novads'),('en_US',414,'Limbažu novads'),('en_US',415,'Lubānas novads'),('en_US',416,'Ludzas novads'),('en_US',417,'Līgatnes novads'),('en_US',418,'Līvānu novads'),('en_US',419,'Madonas novads'),('en_US',420,'Mazsalacas novads'),('en_US',421,'Mālpils novads'),('en_US',422,'Mārupes novads'),('en_US',423,'Naukšēnu novads'),('en_US',424,'Neretas novads'),('en_US',425,'Nīcas novads'),('en_US',426,'Ogres novads'),('en_US',427,'Olaines novads'),('en_US',428,'Ozolnieku novads'),('en_US',429,'Preiļu novads'),('en_US',430,'Priekules novads'),('en_US',431,'Priekuļu novads'),('en_US',432,'Pārgaujas novads'),('en_US',433,'Pāvilostas novads'),('en_US',434,'Pļaviņu novads'),('en_US',435,'Raunas novads'),('en_US',436,'Riebiņu novads'),('en_US',437,'Rojas novads'),('en_US',438,'Ropažu novads'),('en_US',439,'Rucavas novads'),('en_US',440,'Rugāju novads'),('en_US',441,'Rundāles novads'),('en_US',442,'Rēzeknes novads'),('en_US',443,'Rūjienas novads'),('en_US',444,'Salacgrīvas novads'),('en_US',445,'Salas novads'),('en_US',446,'Salaspils novads'),('en_US',447,'Saldus novads'),('en_US',448,'Saulkrastu novads'),('en_US',449,'Siguldas novads'),('en_US',450,'Skrundas novads'),('en_US',451,'Skrīveru novads'),('en_US',452,'Smiltenes novads'),('en_US',453,'Stopiņu novads'),('en_US',454,'Strenču novads'),('en_US',455,'Sējas novads'),('en_US',456,'Talsu novads'),('en_US',457,'Tukuma novads'),('en_US',458,'Tērvetes novads'),('en_US',459,'Vaiņodes novads'),('en_US',460,'Valkas novads'),('en_US',461,'Valmieras novads'),('en_US',462,'Varakļānu novads'),('en_US',463,'Vecpiebalgas novads'),('en_US',464,'Vecumnieku novads'),('en_US',465,'Ventspils novads'),('en_US',466,'Viesītes novads'),('en_US',467,'Viļakas novads'),('en_US',468,'Viļānu novads'),('en_US',469,'Vārkavas novads'),('en_US',470,'Zilupes novads'),('en_US',471,'Ādažu novads'),('en_US',472,'Ērgļu novads'),('en_US',473,'Ķeguma novads'),('en_US',474,'Ķekavas novads'),('en_US',475,'Alytaus Apskritis'),('en_US',476,'Kauno Apskritis'),('en_US',477,'Klaipėdos Apskritis'),('en_US',478,'Marijampolės Apskritis'),('en_US',479,'Panevėžio Apskritis'),('en_US',480,'Šiaulių Apskritis'),('en_US',481,'Tauragės Apskritis'),('en_US',482,'Telšių Apskritis'),('en_US',483,'Utenos Apskritis'),('en_US',484,'Vilniaus Apskritis'),('en_US',485,'Acre'),('en_US',486,'Alagoas'),('en_US',487,'Amapá'),('en_US',488,'Amazonas'),('en_US',489,'Bahia'),('en_US',490,'Ceará'),('en_US',491,'Espírito Santo'),('en_US',492,'Goiás'),('en_US',493,'Maranhão'),('en_US',494,'Mato Grosso'),('en_US',495,'Mato Grosso do Sul'),('en_US',496,'Minas Gerais'),('en_US',497,'Pará'),('en_US',498,'Paraíba'),('en_US',499,'Paraná'),('en_US',500,'Pernambuco'),('en_US',501,'Piauí'),('en_US',502,'Rio de Janeiro'),('en_US',503,'Rio Grande do Norte'),('en_US',504,'Rio Grande do Sul'),('en_US',505,'Rondônia'),('en_US',506,'Roraima'),('en_US',507,'Santa Catarina'),('en_US',508,'São Paulo'),('en_US',509,'Sergipe'),('en_US',510,'Tocantins'),('en_US',511,'Distrito Federal'),('en_US',512,'Berat'),('en_US',513,'Dibër'),('en_US',514,'Durrës'),('en_US',515,'Elbasan'),('en_US',516,'Fier'),('en_US',517,'Gjirokastër'),('en_US',518,'Korçë'),('en_US',519,'Kukës'),('en_US',520,'Lezhë'),('en_US',521,'Shkodër'),('en_US',522,'Tiranë'),('en_US',523,'Vlorë'),('en_US',524,'Ciudad Autónoma de Buenos Aires'),('en_US',525,'Buenos Aires'),('en_US',526,'Catamarca'),('en_US',527,'Chaco'),('en_US',528,'Chubut'),('en_US',529,'Córdoba'),('en_US',530,'Corrientes'),('en_US',531,'Entre Ríos'),('en_US',532,'Formosa'),('en_US',533,'Jujuy'),('en_US',534,'La Pampa'),('en_US',535,'La Rioja'),('en_US',536,'Mendoza'),('en_US',537,'Misiones'),('en_US',538,'Neuquén'),('en_US',539,'Río Negro'),('en_US',540,'Salta'),('en_US',541,'San Juan'),('en_US',542,'San Luis'),('en_US',543,'Santa Cruz'),('en_US',544,'Santa Fe'),('en_US',545,'Santiago del Estero'),('en_US',546,'Tierra del Fuego'),('en_US',547,'Tucumán'),('en_US',548,'Zagrebačka županija'),('en_US',549,'Krapinsko-zagorska županija'),('en_US',550,'Sisačko-moslavačka županija'),('en_US',551,'Karlovačka županija'),('en_US',552,'Varaždinska županija'),('en_US',553,'Koprivničko-križevačka županija'),('en_US',554,'Bjelovarsko-bilogorska županija'),('en_US',555,'Primorsko-goranska županija'),('en_US',556,'Ličko-senjska županija'),('en_US',557,'Virovitičko-podravska županija'),('en_US',558,'Požeško-slavonska županija'),('en_US',559,'Brodsko-posavska županija'),('en_US',560,'Zadarska županija'),('en_US',561,'Osječko-baranjska županija'),('en_US',562,'Šibensko-kninska županija'),('en_US',563,'Vukovarsko-srijemska županija'),('en_US',564,'Splitsko-dalmatinska županija'),('en_US',565,'Istarska županija'),('en_US',566,'Dubrovačko-neretvanska županija'),('en_US',567,'Međimurska županija'),('en_US',568,'Grad Zagreb'),('en_US',569,'Andaman and Nicobar Islands'),('en_US',570,'Andhra Pradesh'),('en_US',571,'Arunachal Pradesh'),('en_US',572,'Assam'),('en_US',573,'Bihar'),('en_US',574,'Chandigarh'),('en_US',575,'Chhattisgarh'),('en_US',576,'Dadra and Nagar Haveli'),('en_US',577,'Daman and Diu'),('en_US',578,'Delhi'),('en_US',579,'Goa'),('en_US',580,'Gujarat'),('en_US',581,'Haryana'),('en_US',582,'Himachal Pradesh'),('en_US',583,'Jammu and Kashmir'),('en_US',584,'Jharkhand'),('en_US',585,'Karnataka'),('en_US',586,'Kerala'),('en_US',587,'Lakshadweep'),('en_US',588,'Madhya Pradesh'),('en_US',589,'Maharashtra'),('en_US',590,'Manipur'),('en_US',591,'Meghalaya'),('en_US',592,'Mizoram'),('en_US',593,'Nagaland'),('en_US',594,'Odisha'),('en_US',595,'Puducherry'),('en_US',596,'Punjab'),('en_US',597,'Rajasthan'),('en_US',598,'Sikkim'),('en_US',599,'Tamil Nadu'),('en_US',600,'Telangana'),('en_US',601,'Tripura'),('en_US',602,'Uttar Pradesh'),('en_US',603,'Uttarakhand'),('en_US',604,'West Bengal'),('en_US',605,'Australian Capital Territory'),('en_US',606,'New South Wales'),('en_US',607,'Victoria'),('en_US',608,'Queensland'),('en_US',609,'South Australia'),('en_US',610,'Tasmania'),('en_US',611,'Western Australia'),('en_US',612,'Northern Territory'),('en_US',613,'Bresckaja voblasć'),('en_US',614,'Homieĺskaja voblasć'),('en_US',615,'Horad Minsk'),('en_US',616,'Hrodzienskaja voblasć'),('en_US',617,'Mahilioŭskaja voblasć'),('en_US',618,'Minskaja voblasć'),('en_US',619,'Viciebskaja voblasć'),('en_US',620,'Antwerpen'),('en_US',621,'Brabant wallon'),('en_US',622,'Brussels-Capital Region'),('en_US',623,'Hainaut'),('en_US',624,'Limburg'),('en_US',625,'Liège'),('en_US',626,'Luxembourg'),('en_US',627,'Namur'),('en_US',628,'Oost-Vlaanderen'),('en_US',629,'Vlaams-Brabant'),('en_US',630,'West-Vlaanderen'),('en_US',631,'Cochabamba'),('en_US',632,'Chuquisaca'),('en_US',633,'El Beni'),('en_US',634,'La Paz'),('en_US',635,'Oruro'),('en_US',636,'Pando'),('en_US',637,'Potosí'),('en_US',638,'Santa Cruz'),('en_US',639,'Tarija'),('en_US',640,'Blagoevgrad'),('en_US',641,'Burgas'),('en_US',642,'Varna'),('en_US',643,'Veliko Tarnovo'),('en_US',644,'Vidin'),('en_US',645,'Vratsa'),('en_US',646,'Gabrovo'),('en_US',647,'Dobrich'),('en_US',648,'Kardzhali'),('en_US',649,'Kyustendil'),('en_US',650,'Lovech'),('en_US',651,'Montana'),('en_US',652,'Pazardzhik'),('en_US',653,'Pernik'),('en_US',654,'Pleven'),('en_US',655,'Plovdiv'),('en_US',656,'Razgrad'),('en_US',657,'Ruse'),('en_US',658,'Silistra'),('en_US',659,'Sliven'),('en_US',660,'Smolyan'),('en_US',661,'Sofia City'),('en_US',662,'Sofia Province'),('en_US',663,'Stara Zagora'),('en_US',664,'Targovishte'),('en_US',665,'Haskovo'),('en_US',666,'Shumen'),('en_US',667,'Yambol'),('en_US',668,'Aisén del General Carlos Ibañez del Campo'),('en_US',669,'Antofagasta'),('en_US',670,'Arica y Parinacota'),('en_US',671,'La Araucanía'),('en_US',672,'Atacama'),('en_US',673,'Biobío'),('en_US',674,'Coquimbo'),('en_US',675,'Libertador General Bernardo O\'Higgins'),('en_US',676,'Los Lagos'),('en_US',677,'Los Ríos'),('en_US',678,'Magallanes'),('en_US',679,'Maule'),('en_US',680,'Ñuble'),('en_US',681,'Región Metropolitana de Santiago'),('en_US',682,'Tarapacá'),('en_US',683,'Valparaíso'),('en_US',684,'Anhui Sheng'),('en_US',685,'Beijing Shi'),('en_US',686,'Chongqing Shi'),('en_US',687,'Fujian Sheng'),('en_US',688,'Gansu Sheng'),('en_US',689,'Guangdong Sheng'),('en_US',690,'Guangxi Zhuangzu Zizhiqu'),('en_US',691,'Guizhou Sheng'),('en_US',692,'Hainan Sheng'),('en_US',693,'Hebei Sheng'),('en_US',694,'Heilongjiang Sheng'),('en_US',695,'Henan Sheng'),('en_US',696,'Hong Kong SAR'),('en_US',697,'Hubei Sheng'),('en_US',698,'Hunan Sheng'),('en_US',699,'Jiangsu Sheng'),('en_US',700,'Jiangxi Sheng'),('en_US',701,'Jilin Sheng'),('en_US',702,'Liaoning Sheng'),('en_US',703,'Macao SAR'),('en_US',704,'Nei Mongol Zizhiqu'),('en_US',705,'Ningxia Huizi Zizhiqu'),('en_US',706,'Qinghai Sheng'),('en_US',707,'Shaanxi Sheng'),('en_US',708,'Shandong Sheng'),('en_US',709,'Shanghai Shi'),('en_US',710,'Shanxi Sheng'),('en_US',711,'Sichuan Sheng'),('en_US',712,'Taiwan Sheng'),('en_US',713,'Tianjin Shi'),('en_US',714,'Xinjiang Uygur Zizhiqu'),('en_US',715,'Xizang Zizhiqu'),('en_US',716,'Yunnan Sheng'),('en_US',717,'Zhejiang Sheng'),('en_US',718,'Amazonas'),('en_US',719,'Antioquia'),('en_US',720,'Arauca'),('en_US',721,'Atlántico'),('en_US',722,'Bolívar'),('en_US',723,'Boyacá'),('en_US',724,'Caldas'),('en_US',725,'Caquetá'),('en_US',726,'Casanare'),('en_US',727,'Cauca'),('en_US',728,'Cesar'),('en_US',729,'Chocó'),('en_US',730,'Córdoba'),('en_US',731,'Cundinamarca'),('en_US',732,'Guainía'),('en_US',733,'Guaviare'),('en_US',734,'Huila'),('en_US',735,'La Guajira'),('en_US',736,'Magdalena'),('en_US',737,'Meta'),('en_US',738,'Nariño'),('en_US',739,'Norte de Santander'),('en_US',740,'Putumayo'),('en_US',741,'Quindío'),('en_US',742,'Risaralda'),('en_US',743,'San Andrés y Providencia'),('en_US',744,'Santander'),('en_US',745,'Sucre'),('en_US',746,'Tolima'),('en_US',747,'Valle del Cauca'),('en_US',748,'Vaupés'),('en_US',749,'Vichada'),('en_US',750,'Hovedstaden'),('en_US',751,'Midtjylland'),('en_US',752,'Nordjylland'),('en_US',753,'Sjælland'),('en_US',754,'Syddanmark'),('en_US',755,'Azuay'),('en_US',756,'Bolívar'),('en_US',757,'Cañar'),('en_US',758,'Carchi'),('en_US',759,'Chimborazo'),('en_US',760,'Cotopaxi'),('en_US',761,'El Oro'),('en_US',762,'Esmeraldas'),('en_US',763,'Galápagos'),('en_US',764,'Guayas'),('en_US',765,'Imbabura'),('en_US',766,'Loja'),('en_US',767,'Los Ríos'),('en_US',768,'Manabí'),('en_US',769,'Morona Santiago'),('en_US',770,'Napo'),('en_US',771,'Orellana'),('en_US',772,'Pastaza'),('en_US',773,'Pichincha'),('en_US',774,'Santa Elena'),('en_US',775,'Santo Domingo de los Tsáchilas'),('en_US',776,'Sucumbíos'),('en_US',777,'Tungurahua'),('en_US',778,'Zamora Chinchipe'),('en_US',779,'Anatolikí Makedonía kai Thráki'),('en_US',780,'Attikí'),('en_US',781,'Dytikí Elláda'),('en_US',782,'Dytikí Makedonía'),('en_US',783,'Ionía Nísia'),('en_US',784,'Ípeiros'),('en_US',785,'Kentrikí Makedonía'),('en_US',786,'Kríti'),('en_US',787,'Nótio Aigaío'),('en_US',788,'Pelopónnisos'),('en_US',789,'Stereá Elláda'),('en_US',790,'Thessalía'),('en_US',791,'Vóreio Aigaío'),('en_US',792,'Ágion Óros'),('en_US',793,'Barima-Waini'),('en_US',794,'Cuyuni-Mazaruni'),('en_US',795,'Demerara-Mahaica'),('en_US',796,'East Berbice-Corentyne'),('en_US',797,'Essequibo Islands-West Demerara'),('en_US',798,'Mahaica-Berbice'),('en_US',799,'Pomeroon-Supenaam'),('en_US',800,'Potaro-Siparuni'),('en_US',801,'Upper Demerara-Berbice'),('en_US',802,'Upper Takutu-Upper Essequibo'),('en_US',803,'Höfuðborgarsvæði'),('en_US',804,'Suðurnes'),('en_US',805,'Vesturland'),('en_US',806,'Vestfirðir'),('en_US',807,'Norðurland vestra'),('en_US',808,'Norðurland eystra'),('en_US',809,'Austurland'),('en_US',810,'Suðurland'),('en_US',811,'Agrigento'),('en_US',812,'Alessandria'),('en_US',813,'Ancona'),('en_US',814,'Aosta'),('en_US',815,'L\'Aquila'),('en_US',816,'Arezzo'),('en_US',817,'Ascoli-Piceno'),('en_US',818,'Asti'),('en_US',819,'Avellino'),('en_US',820,'Bari'),('en_US',821,'Barletta-Andria-Trani'),('en_US',822,'Belluno'),('en_US',823,'Benevento'),('en_US',824,'Bergamo'),('en_US',825,'Biella'),('en_US',826,'Bologna'),('en_US',827,'Bolzano'),('en_US',828,'Brescia'),('en_US',829,'Brindisi'),('en_US',830,'Cagliari'),('en_US',831,'Caltanissetta'),('en_US',832,'Campobasso'),('en_US',833,'Carbonia Iglesias'),('en_US',834,'Caserta'),('en_US',835,'Catania'),('en_US',836,'Catanzaro'),('en_US',837,'Chieti'),('en_US',838,'Como'),('en_US',839,'Cosenza'),('en_US',840,'Cremona'),('en_US',841,'Crotone'),('en_US',842,'Cuneo'),('en_US',843,'Enna'),('en_US',844,'Fermo'),('en_US',845,'Ferrara'),('en_US',846,'Firenze'),('en_US',847,'Foggia'),('en_US',848,'Forli-Cesena'),('en_US',849,'Frosinone'),('en_US',850,'Genova'),('en_US',851,'Gorizia'),('en_US',852,'Grosseto'),('en_US',853,'Imperia'),('en_US',854,'Isernia'),('en_US',855,'La-Spezia'),('en_US',856,'Latina'),('en_US',857,'Lecce'),('en_US',858,'Lecco'),('en_US',859,'Livorno'),('en_US',860,'Lodi'),('en_US',861,'Lucca'),('en_US',862,'Macerata'),('en_US',863,'Mantova'),('en_US',864,'Massa-Carrara'),('en_US',865,'Matera'),('en_US',866,'Medio Campidano'),('en_US',867,'Messina'),('en_US',868,'Milano'),('en_US',869,'Modena'),('en_US',870,'Monza-Brianza'),('en_US',871,'Napoli'),('en_US',872,'Novara'),('en_US',873,'Nuoro'),('en_US',874,'Ogliastra'),('en_US',875,'Olbia Tempio'),('en_US',876,'Oristano'),('en_US',877,'Padova'),('en_US',878,'Palermo'),('en_US',879,'Parma'),('en_US',880,'Pavia'),('en_US',881,'Perugia'),('en_US',882,'Pesaro-Urbino'),('en_US',883,'Pescara'),('en_US',884,'Piacenza'),('en_US',885,'Pisa'),('en_US',886,'Pistoia'),('en_US',887,'Pordenone'),('en_US',888,'Potenza'),('en_US',889,'Prato'),('en_US',890,'Ragusa'),('en_US',891,'Ravenna'),('en_US',892,'Reggio-Calabria'),('en_US',893,'Reggio-Emilia'),('en_US',894,'Rieti'),('en_US',895,'Rimini'),('en_US',896,'Roma'),('en_US',897,'Rovigo'),('en_US',898,'Salerno'),('en_US',899,'Sassari'),('en_US',900,'Savona'),('en_US',901,'Siena'),('en_US',902,'Siracusa'),('en_US',903,'Sondrio'),('en_US',904,'Taranto'),('en_US',905,'Teramo'),('en_US',906,'Terni'),('en_US',907,'Torino'),('en_US',908,'Trapani'),('en_US',909,'Trento'),('en_US',910,'Treviso'),('en_US',911,'Trieste'),('en_US',912,'Udine'),('en_US',913,'Varese'),('en_US',914,'Venezia'),('en_US',915,'Verbania'),('en_US',916,'Vercelli'),('en_US',917,'Verona'),('en_US',918,'Vibo-Valentia'),('en_US',919,'Vicenza'),('en_US',920,'Viterbo'),('en_US',921,'Aguascalientes'),('en_US',922,'Baja California'),('en_US',923,'Baja California Sur'),('en_US',924,'Campeche'),('en_US',925,'Chiapas'),('en_US',926,'Chihuahua'),('en_US',927,'Ciudad de México'),('en_US',928,'Coahuila'),('en_US',929,'Colima'),('en_US',930,'Durango'),('en_US',931,'Estado de México'),('en_US',932,'Guanajuato'),('en_US',933,'Guerrero'),('en_US',934,'Hidalgo'),('en_US',935,'Jalisco'),('en_US',936,'Michoacán'),('en_US',937,'Morelos'),('en_US',938,'Nayarit'),('en_US',939,'Nuevo León'),('en_US',940,'Oaxaca'),('en_US',941,'Puebla'),('en_US',942,'Querétaro'),('en_US',943,'Quintana Roo'),('en_US',944,'San Luis Potosí'),('en_US',945,'Sinaloa'),('en_US',946,'Sonora'),('en_US',947,'Tabasco'),('en_US',948,'Tamaulipas'),('en_US',949,'Tlaxcala'),('en_US',950,'Veracruz'),('en_US',951,'Yucatán'),('en_US',952,'Zacatecas'),('en_US',953,'Asunción'),('en_US',954,'Alto Paraguay'),('en_US',955,'Alto Paraná'),('en_US',956,'Amambay'),('en_US',957,'Boquerón'),('en_US',958,'Caaguazú'),('en_US',959,'Caazapá'),('en_US',960,'Canindeyú'),('en_US',961,'Central'),('en_US',962,'Concepción'),('en_US',963,'Cordillera'),('en_US',964,'Guairá'),('en_US',965,'Itapúa'),('en_US',966,'Misiones'),('en_US',967,'Ñeembucú'),('en_US',968,'Paraguarí'),('en_US',969,'Presidente Hayes'),('en_US',970,'San Pedro'),('en_US',971,'Municipalidad Metropolitana de Lima'),('en_US',972,'Amazonas'),('en_US',973,'Ancash'),('en_US',974,'Apurímac'),('en_US',975,'Arequipa'),('en_US',976,'Ayacucho'),('en_US',977,'Cajamarca'),('en_US',978,'Cusco'),('en_US',979,'El Callao'),('en_US',980,'Huancavelica'),('en_US',981,'Huánuco'),('en_US',982,'Ica'),('en_US',983,'Junín'),('en_US',984,'La Libertad'),('en_US',985,'Lambayeque'),('en_US',986,'Lima'),('en_US',987,'Loreto'),('en_US',988,'Madre de Dios'),('en_US',989,'Moquegua'),('en_US',990,'Pasco'),('en_US',991,'Piura'),('en_US',992,'Puno'),('en_US',993,'San Martín'),('en_US',994,'Tacna'),('en_US',995,'Tumbes'),('en_US',996,'Ucayali'),('en_US',997,'dolnośląskie'),('en_US',998,'kujawsko-pomorskie'),('en_US',999,'lubelskie'),('en_US',1000,'lubuskie'),('en_US',1001,'łódzkie'),('en_US',1002,'małopolskie'),('en_US',1003,'mazowieckie'),('en_US',1004,'opolskie'),('en_US',1005,'podkarpackie'),('en_US',1006,'podlaskie'),('en_US',1007,'pomorskie'),('en_US',1008,'śląskie'),('en_US',1009,'świętokrzyskie'),('en_US',1010,'warmińsko-mazurskie'),('en_US',1011,'wielkopolskie'),('en_US',1012,'zachodniopomorskie'),('en_US',1013,'Aveiro'),('en_US',1014,'Beja'),('en_US',1015,'Braga'),('en_US',1016,'Bragança'),('en_US',1017,'Castelo Branco'),('en_US',1018,'Coimbra'),('en_US',1019,'Évora'),('en_US',1020,'Faro'),('en_US',1021,'Guarda'),('en_US',1022,'Leiria'),('en_US',1023,'Lisboa'),('en_US',1024,'Portalegre'),('en_US',1025,'Porto'),('en_US',1026,'Santarém'),('en_US',1027,'Setúbal'),('en_US',1028,'Viana do Castelo'),('en_US',1029,'Vila Real'),('en_US',1030,'Viseu'),('en_US',1031,'Região Autónoma dos Açores'),('en_US',1032,'Região Autónoma da Madeira'),('en_US',1033,'Brokopondo'),('en_US',1034,'Commewijne'),('en_US',1035,'Coronie'),('en_US',1036,'Marowijne'),('en_US',1037,'Nickerie'),('en_US',1038,'Para'),('en_US',1039,'Paramaribo'),('en_US',1040,'Saramacca'),('en_US',1041,'Sipaliwini'),('en_US',1042,'Wanica'),('en_US',1043,'Blekinge län'),('en_US',1044,'Dalarnas län'),('en_US',1045,'Gotlands län'),('en_US',1046,'Gävleborgs län'),('en_US',1047,'Hallands län'),('en_US',1048,'Jämtlands län'),('en_US',1049,'Jönköpings län'),('en_US',1050,'Kalmar län'),('en_US',1051,'Kronobergs län'),('en_US',1052,'Norrbottens län'),('en_US',1053,'Skåne län'),('en_US',1054,'Stockholms län'),('en_US',1055,'Södermanlands län'),('en_US',1056,'Uppsala län'),('en_US',1057,'Värmlands län'),('en_US',1058,'Västerbottens län'),('en_US',1059,'Västernorrlands län'),('en_US',1060,'Västmanlands län'),('en_US',1061,'Västra Götalands län'),('en_US',1062,'Örebro län'),('en_US',1063,'Östergötlands län'),('en_US',1064,'Artigas'),('en_US',1065,'Canelones'),('en_US',1066,'Cerro Largo'),('en_US',1067,'Colonia'),('en_US',1068,'Durazno'),('en_US',1069,'Flores'),('en_US',1070,'Florida'),('en_US',1071,'Lavalleja'),('en_US',1072,'Maldonado'),('en_US',1073,'Montevideo'),('en_US',1074,'Paysandu'),('en_US',1075,'Río Negro'),('en_US',1076,'Rivera'),('en_US',1077,'Rocha'),('en_US',1078,'Salto'),('en_US',1079,'San José'),('en_US',1080,'Soriano'),('en_US',1081,'Tacuarembó'),('en_US',1082,'Treinta y Tres'),('en_US',1083,'Dependencias Federales'),('en_US',1084,'Distrito Capital'),('en_US',1085,'Amazonas'),('en_US',1086,'Anzoátegui'),('en_US',1087,'Apure'),('en_US',1088,'Aragua'),('en_US',1089,'Barinas'),('en_US',1090,'Bolívar'),('en_US',1091,'Carabobo'),('en_US',1092,'Cojedes'),('en_US',1093,'Delta Amacuro'),('en_US',1094,'Falcón'),('en_US',1095,'Guárico'),('en_US',1096,'Lara'),('en_US',1097,'Mérida'),('en_US',1098,'Miranda'),('en_US',1099,'Monagas'),('en_US',1100,'Nueva Esparta'),('en_US',1101,'Portuguesa'),('en_US',1102,'Sucre'),('en_US',1103,'Táchira'),('en_US',1104,'Trujillo'),('en_US',1105,'Vargas'),('en_US',1106,'Yaracuy'),('en_US',1107,'Zulia');
/*!40000 ALTER TABLE `directory_country_region_name` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `directory_currency_rate`
--

DROP TABLE IF EXISTS `directory_currency_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `directory_currency_rate` (
  `currency_from` varchar(3) NOT NULL COMMENT 'Currency Code Convert From',
  `currency_to` varchar(3) NOT NULL COMMENT 'Currency Code Convert To',
  `rate` decimal(24,12) NOT NULL DEFAULT 0.000000000000 COMMENT 'Currency Conversion Rate',
  PRIMARY KEY (`currency_from`,`currency_to`),
  KEY `DIRECTORY_CURRENCY_RATE_CURRENCY_TO` (`currency_to`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Directory Currency Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `directory_currency_rate`
--

LOCK TABLES `directory_currency_rate` WRITE;
/*!40000 ALTER TABLE `directory_currency_rate` DISABLE KEYS */;
INSERT INTO `directory_currency_rate` VALUES ('EUR','EUR',1.000000000000),('EUR','USD',1.415000000000),('USD','EUR',0.706700000000),('USD','USD',1.000000000000);
/*!40000 ALTER TABLE `directory_currency_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `downloadable_link`
--

DROP TABLE IF EXISTS `downloadable_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort order',
  `number_of_downloads` int(11) DEFAULT NULL COMMENT 'Number of downloads',
  `is_shareable` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Shareable flag',
  `link_url` varchar(255) DEFAULT NULL COMMENT 'Link Url',
  `link_file` varchar(255) DEFAULT NULL COMMENT 'Link File',
  `link_type` varchar(20) DEFAULT NULL COMMENT 'Link Type',
  `sample_url` varchar(255) DEFAULT NULL COMMENT 'Sample Url',
  `sample_file` varchar(255) DEFAULT NULL COMMENT 'Sample File',
  `sample_type` varchar(20) DEFAULT NULL COMMENT 'Sample Type',
  PRIMARY KEY (`link_id`),
  KEY `DOWNLOADABLE_LINK_PRODUCT_ID_SORT_ORDER` (`product_id`,`sort_order`),
  CONSTRAINT `DOWNLOADABLE_LINK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link`
--

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

--
-- Table structure for table `downloadable_link_price`
--

DROP TABLE IF EXISTS `downloadable_link_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_link_price` (
  `price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Price ID',
  `link_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Link ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Price',
  PRIMARY KEY (`price_id`),
  KEY `DOWNLOADABLE_LINK_PRICE_LINK_ID` (`link_id`),
  KEY `DOWNLOADABLE_LINK_PRICE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `DOWNLOADABLE_LINK_PRICE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `DOWNLOADABLE_LINK_PRICE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Price Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_price`
--

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

--
-- Table structure for table `downloadable_link_purchased`
--

DROP TABLE IF EXISTS `downloadable_link_purchased`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_link_purchased` (
  `purchased_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Purchased ID',
  `order_id` int(10) unsigned DEFAULT 0 COMMENT 'Order ID',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID',
  `order_item_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Order Item ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Date of creation',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date of modification',
  `customer_id` int(10) unsigned DEFAULT 0 COMMENT 'Customer ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product name',
  `product_sku` varchar(255) DEFAULT NULL COMMENT 'Product sku',
  `link_section_title` varchar(255) DEFAULT NULL COMMENT 'Link_section_title',
  PRIMARY KEY (`purchased_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ORDER_ID` (`order_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ORDER_ITEM_ID` (`order_item_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `DL_LNK_PURCHASED_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `DOWNLOADABLE_LINK_PURCHASED_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_purchased`
--

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

--
-- Table structure for table `downloadable_link_purchased_item`
--

DROP TABLE IF EXISTS `downloadable_link_purchased_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_link_purchased_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `purchased_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Purchased ID',
  `order_item_id` int(10) unsigned DEFAULT 0 COMMENT 'Order Item ID',
  `product_id` int(10) unsigned DEFAULT 0 COMMENT 'Product ID',
  `link_hash` varchar(255) DEFAULT NULL COMMENT 'Link hash',
  `number_of_downloads_bought` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of downloads bought',
  `number_of_downloads_used` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of downloads used',
  `link_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Link ID',
  `link_title` varchar(255) DEFAULT NULL COMMENT 'Link Title',
  `is_shareable` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Shareable Flag',
  `link_url` varchar(255) DEFAULT NULL COMMENT 'Link Url',
  `link_file` varchar(255) DEFAULT NULL COMMENT 'Link File',
  `link_type` varchar(255) DEFAULT NULL COMMENT 'Link Type',
  `status` varchar(50) DEFAULT NULL COMMENT 'Status',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Update Time',
  PRIMARY KEY (`item_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_LINK_HASH` (`link_hash`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_ORDER_ITEM_ID` (`order_item_id`),
  KEY `DOWNLOADABLE_LINK_PURCHASED_ITEM_PURCHASED_ID` (`purchased_id`),
  CONSTRAINT `DL_LNK_PURCHASED_ITEM_ORDER_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`order_item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE SET NULL,
  CONSTRAINT `DL_LNK_PURCHASED_ITEM_PURCHASED_ID_DL_LNK_PURCHASED_PURCHASED_ID` FOREIGN KEY (`purchased_id`) REFERENCES `downloadable_link_purchased` (`purchased_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Link Purchased Item Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_purchased_item`
--

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

--
-- Table structure for table `downloadable_link_title`
--

DROP TABLE IF EXISTS `downloadable_link_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_link_title` (
  `title_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Title ID',
  `link_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Link ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`title_id`),
  UNIQUE KEY `DOWNLOADABLE_LINK_TITLE_LINK_ID_STORE_ID` (`link_id`,`store_id`),
  KEY `DOWNLOADABLE_LINK_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `DOWNLOADABLE_LINK_TITLE_LINK_ID_DOWNLOADABLE_LINK_LINK_ID` FOREIGN KEY (`link_id`) REFERENCES `downloadable_link` (`link_id`) ON DELETE CASCADE,
  CONSTRAINT `DOWNLOADABLE_LINK_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Link Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_link_title`
--

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

--
-- Table structure for table `downloadable_sample`
--

DROP TABLE IF EXISTS `downloadable_sample`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_sample` (
  `sample_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Sample ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `sample_url` varchar(255) DEFAULT NULL COMMENT 'Sample URL',
  `sample_file` varchar(255) DEFAULT NULL COMMENT 'Sample file',
  `sample_type` varchar(20) DEFAULT NULL COMMENT 'Sample Type',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`sample_id`),
  KEY `DOWNLOADABLE_SAMPLE_PRODUCT_ID` (`product_id`),
  CONSTRAINT `DOWNLOADABLE_SAMPLE_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_sample`
--

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

--
-- Table structure for table `downloadable_sample_title`
--

DROP TABLE IF EXISTS `downloadable_sample_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `downloadable_sample_title` (
  `title_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Title ID',
  `sample_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sample ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  PRIMARY KEY (`title_id`),
  UNIQUE KEY `DOWNLOADABLE_SAMPLE_TITLE_SAMPLE_ID_STORE_ID` (`sample_id`,`store_id`),
  KEY `DOWNLOADABLE_SAMPLE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `DL_SAMPLE_TTL_SAMPLE_ID_DL_SAMPLE_SAMPLE_ID` FOREIGN KEY (`sample_id`) REFERENCES `downloadable_sample` (`sample_id`) ON DELETE CASCADE,
  CONSTRAINT `DOWNLOADABLE_SAMPLE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Downloadable Sample Title Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `downloadable_sample_title`
--

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

--
-- Table structure for table `eav_attribute`
--

DROP TABLE IF EXISTS `eav_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute` (
  `attribute_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_code` varchar(255) NOT NULL COMMENT 'Attribute Code',
  `attribute_model` varchar(255) DEFAULT NULL COMMENT 'Attribute Model',
  `backend_model` varchar(255) DEFAULT NULL COMMENT 'Backend Model',
  `backend_type` varchar(8) NOT NULL DEFAULT 'static' COMMENT 'Backend Type',
  `backend_table` varchar(255) DEFAULT NULL COMMENT 'Backend Table',
  `frontend_model` varchar(255) DEFAULT NULL COMMENT 'Frontend Model',
  `frontend_input` varchar(50) DEFAULT NULL COMMENT 'Frontend Input',
  `frontend_label` varchar(255) DEFAULT NULL COMMENT 'Frontend Label',
  `frontend_class` varchar(255) DEFAULT NULL COMMENT 'Frontend Class',
  `source_model` varchar(255) DEFAULT NULL COMMENT 'Source Model',
  `is_required` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Defines Is Required',
  `is_user_defined` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Defines Is User Defined',
  `default_value` text DEFAULT NULL COMMENT 'Default Value',
  `is_unique` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Defines Is Unique',
  `note` varchar(255) DEFAULT NULL COMMENT 'Note',
  PRIMARY KEY (`attribute_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_ENTITY_TYPE_ID_ATTRIBUTE_CODE` (`entity_type_id`,`attribute_code`),
  KEY `EAV_ATTRIBUTE_FRONTEND_INPUT_ENTITY_TYPE_ID_IS_USER_DEFINED` (`frontend_input`,`entity_type_id`,`is_user_defined`),
  CONSTRAINT `EAV_ATTRIBUTE_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=227 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute`
--

LOCK TABLES `eav_attribute` WRITE;
/*!40000 ALTER TABLE `eav_attribute` DISABLE KEYS */;
INSERT INTO `eav_attribute` VALUES (1,1,'website_id',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Website','static',NULL,NULL,'select','Associate to Website',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Website',1,0,NULL,0,NULL),(2,1,'store_id',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Store','static',NULL,NULL,'select','Create In',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Store',1,0,NULL,0,NULL),(3,1,'created_in',NULL,NULL,'static',NULL,NULL,'text','Created From',NULL,NULL,0,0,NULL,0,NULL),(4,1,'prefix',NULL,NULL,'static',NULL,NULL,'text','Name Prefix',NULL,NULL,0,0,NULL,0,NULL),(5,1,'firstname',NULL,NULL,'static',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(6,1,'middlename',NULL,NULL,'static',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(7,1,'lastname',NULL,NULL,'static',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(8,1,'suffix',NULL,NULL,'static',NULL,NULL,'text','Name Suffix',NULL,NULL,0,0,NULL,0,NULL),(9,1,'email',NULL,NULL,'static',NULL,NULL,'text','Email',NULL,NULL,1,0,NULL,0,NULL),(10,1,'group_id',NULL,NULL,'static',NULL,NULL,'select','Group',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Source\\Group',1,0,NULL,0,NULL),(11,1,'dob',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','static',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Frontend\\Datetime','date','Date of Birth',NULL,NULL,0,0,NULL,0,NULL),(12,1,'password_hash',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Password','static',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(13,1,'rp_token',NULL,NULL,'static',NULL,NULL,'hidden',NULL,NULL,NULL,0,0,NULL,0,NULL),(14,1,'rp_token_created_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,0,0,NULL,0,NULL),(15,1,'default_billing',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Billing','static',NULL,NULL,'text','Default Billing Address',NULL,NULL,0,0,NULL,0,NULL),(16,1,'default_shipping',NULL,'Magento\\Customer\\Model\\Customer\\Attribute\\Backend\\Shipping','static',NULL,NULL,'text','Default Shipping Address',NULL,NULL,0,0,NULL,0,NULL),(17,1,'taxvat',NULL,NULL,'static',NULL,NULL,'text','Tax/VAT Number',NULL,NULL,0,0,NULL,0,NULL),(18,1,'confirmation',NULL,NULL,'static',NULL,NULL,'text','Is Confirmed',NULL,NULL,0,0,NULL,0,NULL),(19,1,'created_at',NULL,NULL,'static',NULL,NULL,'date','Created At',NULL,NULL,0,0,NULL,0,NULL),(20,1,'gender',NULL,NULL,'static',NULL,NULL,'select','Gender',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,0,NULL,0,NULL),(21,1,'disable_auto_group_change','Magento\\Customer\\Model\\Attribute','Magento\\Customer\\Model\\Attribute\\Backend\\Data\\Boolean','static',NULL,NULL,'boolean','Disable Automatic Group Change Based on VAT ID',NULL,NULL,0,0,NULL,0,NULL),(22,2,'prefix',NULL,NULL,'static',NULL,NULL,'text','Name Prefix',NULL,NULL,0,0,NULL,0,NULL),(23,2,'firstname',NULL,NULL,'static',NULL,NULL,'text','First Name',NULL,NULL,1,0,NULL,0,NULL),(24,2,'middlename',NULL,NULL,'static',NULL,NULL,'text','Middle Name/Initial',NULL,NULL,0,0,NULL,0,NULL),(25,2,'lastname',NULL,NULL,'static',NULL,NULL,'text','Last Name',NULL,NULL,1,0,NULL,0,NULL),(26,2,'suffix',NULL,NULL,'static',NULL,NULL,'text','Name Suffix',NULL,NULL,0,0,NULL,0,NULL),(27,2,'company',NULL,NULL,'static',NULL,NULL,'text','Company',NULL,NULL,0,0,NULL,0,NULL),(28,2,'street',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\DefaultBackend','static',NULL,NULL,'multiline','Street Address',NULL,NULL,1,0,NULL,0,NULL),(29,2,'city',NULL,NULL,'static',NULL,NULL,'text','City',NULL,NULL,1,0,NULL,0,NULL),(30,2,'country_id',NULL,NULL,'static',NULL,NULL,'select','Country',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Source\\Country',1,0,NULL,0,NULL),(31,2,'region',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Backend\\Region','static',NULL,NULL,'text','State/Province',NULL,NULL,0,0,NULL,0,NULL),(32,2,'region_id',NULL,NULL,'static',NULL,NULL,'hidden','State/Province',NULL,'Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Source\\Region',0,0,NULL,0,NULL),(33,2,'postcode',NULL,NULL,'static',NULL,NULL,'text','Zip/Postal Code',NULL,NULL,0,0,NULL,0,NULL),(34,2,'telephone',NULL,NULL,'static',NULL,NULL,'text','Phone Number',NULL,NULL,1,0,NULL,0,NULL),(35,2,'fax',NULL,NULL,'static',NULL,NULL,'text','Fax',NULL,NULL,0,0,NULL,0,NULL),(36,2,'vat_id','Magento\\Customer\\Model\\Attribute',NULL,'static',NULL,NULL,'text','VAT Number',NULL,NULL,0,0,NULL,0,NULL),(37,2,'vat_is_valid',NULL,NULL,'static',NULL,NULL,'text','VAT number validity',NULL,NULL,0,0,NULL,0,NULL),(38,2,'vat_request_id',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request ID',NULL,NULL,0,0,NULL,0,NULL),(39,2,'vat_request_date',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request date',NULL,NULL,0,0,NULL,0,NULL),(40,2,'vat_request_success',NULL,NULL,'static',NULL,NULL,'text','VAT number validation request success',NULL,NULL,0,0,NULL,0,NULL),(41,1,'updated_at',NULL,NULL,'static',NULL,NULL,'date','Updated At',NULL,NULL,0,0,NULL,0,NULL),(42,1,'failures_num',NULL,NULL,'static',NULL,NULL,'hidden','Failures Number',NULL,NULL,0,0,NULL,0,NULL),(43,1,'first_failure',NULL,NULL,'static',NULL,NULL,'date','First Failure Date',NULL,NULL,0,0,NULL,0,NULL),(44,1,'lock_expires',NULL,NULL,'static',NULL,NULL,'date','Failures Number',NULL,NULL,0,0,NULL,0,NULL),(45,3,'name',NULL,NULL,'varchar',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(46,3,'is_active',NULL,NULL,'int',NULL,NULL,'select','Is Active',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',1,0,NULL,0,NULL),(47,3,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(48,3,'image',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Image','varchar',NULL,NULL,'image','Image',NULL,NULL,0,0,NULL,0,NULL),(49,3,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Page Title',NULL,NULL,0,0,NULL,0,NULL),(50,3,'meta_keywords',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(51,3,'meta_description',NULL,NULL,'text',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,NULL),(52,3,'display_mode',NULL,NULL,'varchar',NULL,NULL,'select','Display Mode',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Mode',0,0,NULL,0,NULL),(53,3,'landing_page',NULL,NULL,'int',NULL,NULL,'select','CMS Block',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Page',0,0,NULL,0,NULL),(54,3,'is_anchor',NULL,NULL,'int',NULL,NULL,'select','Is Anchor',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'1',0,NULL),(55,3,'path',NULL,NULL,'static',NULL,NULL,'text','Path',NULL,NULL,0,0,NULL,0,NULL),(56,3,'position',NULL,NULL,'static',NULL,NULL,'text','Position',NULL,NULL,0,0,NULL,0,NULL),(57,3,'all_children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(58,3,'path_in_store',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(59,3,'children',NULL,NULL,'text',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(60,3,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','Custom Design',NULL,'Magento\\Theme\\Model\\Theme\\Source\\Theme',0,0,NULL,0,NULL),(61,3,'custom_design_from','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Frontend\\Datetime','date','Active From',NULL,NULL,0,0,NULL,0,NULL),(62,3,'custom_design_to',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(63,3,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Page Layout',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(64,3,'custom_layout_update',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate','text',NULL,NULL,'textarea','Custom Layout Update',NULL,NULL,0,0,NULL,0,NULL),(65,3,'level',NULL,NULL,'static',NULL,NULL,'text','Level',NULL,NULL,0,0,NULL,0,NULL),(66,3,'children_count',NULL,NULL,'static',NULL,NULL,'text','Children Count',NULL,NULL,0,0,NULL,0,NULL),(67,3,'available_sort_by',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Sortby','text',NULL,NULL,'multiselect','Available Product Listing Sort By',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Sortby',1,0,NULL,0,NULL),(68,3,'default_sort_by',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\Sortby','varchar',NULL,NULL,'select','Default Product Listing Sort By',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\Sortby',1,0,NULL,0,NULL),(69,3,'include_in_menu',NULL,NULL,'int',NULL,NULL,'select','Include in Navigation Menu',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',1,0,'1',0,NULL),(70,3,'custom_use_parent_settings',NULL,NULL,'int',NULL,NULL,'select','Use Parent Category Settings',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(71,3,'custom_apply_to_products',NULL,NULL,'int',NULL,NULL,'select','Apply To Products',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(72,3,'filter_price_range',NULL,NULL,'decimal',NULL,NULL,'text','Layered Navigation Price Step',NULL,NULL,0,0,NULL,0,NULL),(73,4,'name','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute',NULL,'varchar',NULL,NULL,'text','Product Name','validate-length maximum-length-255',NULL,1,0,NULL,0,NULL),(74,4,'sku','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Sku','static',NULL,NULL,'text','SKU','validate-length maximum-length-64',NULL,1,0,NULL,1,NULL),(75,4,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(76,4,'short_description',NULL,NULL,'text',NULL,NULL,'textarea','Short Description',NULL,NULL,0,0,NULL,0,NULL),(77,4,'price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Price',NULL,NULL,1,0,NULL,0,NULL),(78,4,'special_price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Special Price',NULL,NULL,0,0,NULL,0,NULL),(79,4,'special_from_date',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Special Price From Date',NULL,NULL,0,0,NULL,0,NULL),(80,4,'special_to_date',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Special Price To Date',NULL,NULL,0,0,NULL,0,NULL),(81,4,'cost',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Cost',NULL,NULL,0,1,NULL,0,NULL),(82,4,'weight',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Weight','decimal',NULL,NULL,'weight','Weight',NULL,NULL,0,0,NULL,0,NULL),(83,4,'manufacturer',NULL,NULL,'int',NULL,NULL,'select','Manufacturer',NULL,NULL,0,1,NULL,0,NULL),(84,4,'meta_title',NULL,NULL,'varchar',NULL,NULL,'text','Meta Title',NULL,NULL,0,0,NULL,0,NULL),(85,4,'meta_keyword',NULL,NULL,'text',NULL,NULL,'textarea','Meta Keywords',NULL,NULL,0,0,NULL,0,NULL),(86,4,'meta_description',NULL,NULL,'varchar',NULL,NULL,'textarea','Meta Description',NULL,NULL,0,0,NULL,0,'Maximum 255 chars. Meta Description should optimally be between 150-160 characters'),(87,4,'image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Base',NULL,NULL,0,0,NULL,0,NULL),(88,4,'small_image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Small',NULL,NULL,0,0,NULL,0,NULL),(89,4,'thumbnail',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Thumbnail',NULL,NULL,0,0,NULL,0,NULL),(90,4,'media_gallery',NULL,NULL,'static',NULL,NULL,'gallery','Media Gallery',NULL,NULL,0,0,NULL,0,NULL),(91,4,'old_id',NULL,NULL,'int',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(92,4,'tier_price',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Tierprice','decimal',NULL,NULL,'text','Tier Price',NULL,NULL,0,0,NULL,0,NULL),(93,4,'color',NULL,NULL,'int',NULL,NULL,'select','Color',NULL,NULL,0,1,NULL,0,NULL),(94,4,'news_from_date',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Set Product as New from Date',NULL,NULL,0,0,NULL,0,NULL),(95,4,'news_to_date',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Set Product as New to Date',NULL,NULL,0,0,NULL,0,NULL),(96,4,'gallery',NULL,NULL,'varchar',NULL,NULL,'gallery','Image Gallery',NULL,NULL,0,0,NULL,0,NULL),(97,4,'status',NULL,NULL,'int',NULL,NULL,'select','Enable Product',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Status',0,0,'1',0,NULL),(98,4,'minimal_price','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Minimal Price',NULL,NULL,0,0,NULL,0,NULL),(99,4,'visibility',NULL,NULL,'int',NULL,NULL,'select','Visibility',NULL,'Magento\\Catalog\\Model\\Product\\Visibility',0,0,'4',0,NULL),(100,4,'custom_design',NULL,NULL,'varchar',NULL,NULL,'select','New Theme',NULL,'Magento\\Theme\\Model\\Theme\\Source\\Theme',0,0,NULL,0,NULL),(101,4,'custom_design_from',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Startdate','datetime',NULL,NULL,'date','Active From',NULL,NULL,0,0,NULL,0,NULL),(102,4,'custom_design_to',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\Datetime','datetime',NULL,NULL,'date','Active To',NULL,NULL,0,0,NULL,0,NULL),(103,4,'custom_layout_update',NULL,'Magento\\Catalog\\Model\\Attribute\\Backend\\Customlayoutupdate','text',NULL,NULL,'textarea','Layout Update XML',NULL,NULL,0,0,NULL,0,NULL),(104,4,'page_layout',NULL,NULL,'varchar',NULL,NULL,'select','Layout',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(105,4,'category_ids',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Category','static',NULL,NULL,'text','Categories',NULL,NULL,0,0,NULL,0,NULL),(106,4,'options_container',NULL,NULL,'varchar',NULL,NULL,'select','Display Product Options In',NULL,'Magento\\Catalog\\Model\\Entity\\Product\\Attribute\\Design\\Options\\Container',0,0,'container2',0,NULL),(107,4,'required_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(108,4,'has_options',NULL,NULL,'static',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(109,4,'image_label',NULL,NULL,'varchar',NULL,NULL,'text','Image Label',NULL,NULL,0,0,NULL,0,NULL),(110,4,'small_image_label',NULL,NULL,'varchar',NULL,NULL,'text','Small Image Label',NULL,NULL,0,0,NULL,0,NULL),(111,4,'thumbnail_label',NULL,NULL,'varchar',NULL,NULL,'text','Thumbnail Label',NULL,NULL,0,0,NULL,0,NULL),(112,4,'created_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,1,0,NULL,0,NULL),(113,4,'updated_at',NULL,NULL,'static',NULL,NULL,'date',NULL,NULL,NULL,1,0,NULL,0,NULL),(114,4,'country_of_manufacture',NULL,NULL,'varchar',NULL,NULL,'select','Country of Manufacture',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Countryofmanufacture',0,0,NULL,0,NULL),(115,4,'quantity_and_stock_status',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Stock','int',NULL,NULL,'select','Quantity',NULL,'Magento\\CatalogInventory\\Model\\Source\\Stock',0,0,'1',0,NULL),(116,4,'custom_layout',NULL,NULL,'varchar',NULL,NULL,'select','New Layout',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Layout',0,0,NULL,0,NULL),(117,4,'custom_layout_update_file',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\LayoutUpdate','varchar',NULL,NULL,'select','Custom Layout Update',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\LayoutUpdate',0,0,NULL,0,NULL),(118,3,'custom_layout_update_file',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Backend\\LayoutUpdate','varchar',NULL,NULL,'select','Custom Layout Update',NULL,'Magento\\Catalog\\Model\\Category\\Attribute\\Source\\LayoutUpdate',0,0,NULL,0,NULL),(119,4,'msrp',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Price','decimal',NULL,NULL,'price','Minimum Advertised Price',NULL,NULL,0,0,NULL,0,NULL),(120,4,'msrp_display_actual_price_type',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean','varchar',NULL,NULL,'select','Display Actual Price',NULL,'Magento\\Msrp\\Model\\Product\\Attribute\\Source\\Type\\Price',0,0,'0',0,NULL),(121,3,'url_key',NULL,NULL,'varchar',NULL,NULL,'text','URL Key',NULL,NULL,0,0,NULL,0,NULL),(122,3,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(123,4,'url_key',NULL,NULL,'varchar',NULL,NULL,'text','URL Key','validate-trailing-hyphen',NULL,0,0,NULL,0,NULL),(124,4,'url_path',NULL,NULL,'varchar',NULL,NULL,'text',NULL,NULL,NULL,0,0,NULL,0,NULL),(125,4,'links_purchased_separately',NULL,NULL,'int',NULL,NULL,NULL,'Links can be purchased separately',NULL,NULL,1,0,NULL,0,NULL),(126,4,'samples_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Samples title',NULL,NULL,1,0,NULL,0,NULL),(127,4,'links_title',NULL,NULL,'varchar',NULL,NULL,NULL,'Links title',NULL,NULL,1,0,NULL,0,NULL),(128,4,'links_exist',NULL,NULL,'int',NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL),(129,4,'price_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic Price',NULL,NULL,1,0,'0',0,NULL),(130,4,'sku_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic SKU',NULL,NULL,1,0,'0',0,NULL),(131,4,'weight_type',NULL,NULL,'int',NULL,NULL,'boolean','Dynamic Weight',NULL,NULL,1,0,'0',0,NULL),(132,4,'price_view',NULL,NULL,'int',NULL,NULL,'select','Price View',NULL,'Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Price\\View',1,0,NULL,0,NULL),(133,4,'shipment_type',NULL,NULL,'int',NULL,NULL,'select','Ship Bundle Items',NULL,'Magento\\Bundle\\Model\\Product\\Attribute\\Source\\Shipment\\Type',1,0,'0',0,NULL),(134,4,'gift_message_available',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Backend\\Boolean','varchar',NULL,NULL,'select','Allow Gift Message',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Source\\Boolean',0,0,NULL,0,NULL),(135,4,'swatch_image',NULL,NULL,'varchar',NULL,'Magento\\Catalog\\Model\\Product\\Attribute\\Frontend\\Image','media_image','Swatch',NULL,NULL,0,0,NULL,0,NULL),(136,4,'tax_class_id',NULL,NULL,'int',NULL,NULL,'select','Tax Class',NULL,'Magento\\Tax\\Model\\TaxClass\\Source\\Product',0,0,'2',0,NULL),(163,4,'indaco_allergens',NULL,NULL,'text',NULL,NULL,'textarea','Allergeni ',NULL,NULL,0,1,NULL,0,NULL),(164,4,'indaco_winetype',NULL,NULL,'int',NULL,NULL,'select','Tipologia ',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(165,4,'indaco_productionarea',NULL,NULL,'int',NULL,NULL,'select','Zona di produzione',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(166,4,'indaco_year',NULL,NULL,'varchar',NULL,NULL,'text','Annata',NULL,NULL,0,1,NULL,0,NULL),(167,4,'indaco_alcoholicvolume',NULL,NULL,'varchar',NULL,NULL,'text','Titolo alcometrico volumico',NULL,NULL,0,1,NULL,0,NULL),(168,4,'indaco_bottleformat',NULL,NULL,'int',NULL,NULL,'select','Formato bottiglia',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(169,4,'indaco_grapevariety',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Vigneti ',NULL,NULL,0,1,'',0,NULL),(170,4,'indaco_color',NULL,NULL,'int',NULL,NULL,'select','Colore',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(171,4,'indaco_scent',NULL,NULL,'int',NULL,NULL,'select','Profumo',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(172,4,'indaco_taste',NULL,NULL,'int',NULL,NULL,'select','Gusto',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(173,4,'indaco_recommendedcombinations',NULL,NULL,'text',NULL,NULL,'textarea','Abbinamenti consigliati',NULL,NULL,0,1,NULL,0,NULL),(174,4,'indaco_awardsacknowledgments',NULL,NULL,'text',NULL,NULL,'textarea','Premi e riconoscimenti',NULL,NULL,0,1,NULL,0,NULL),(175,4,'indaco_servicetemperature',NULL,NULL,'varchar',NULL,NULL,'text','Temperatura di servizio ',NULL,NULL,0,1,NULL,0,NULL),(176,4,'indaco_vineyards',NULL,NULL,'varchar',NULL,NULL,'text','Vigneti ',NULL,NULL,0,1,NULL,0,NULL),(177,4,'indaco_winemaking',NULL,NULL,'text',NULL,NULL,'textarea','Metodo di produzione ',NULL,NULL,0,1,NULL,0,NULL),(178,4,'indaco_refinement',NULL,NULL,'text',NULL,NULL,'textarea','Affinamento',NULL,NULL,0,1,NULL,0,NULL),(179,4,'indaco_biological',NULL,NULL,'int',NULL,NULL,'boolean','Biologico ',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,'0',0,NULL),(180,4,'indaco_biodynamic',NULL,NULL,'int',NULL,NULL,'boolean','Biodinamico ',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,'0',0,NULL),(181,4,'indaco_vegan',NULL,NULL,'int',NULL,NULL,'boolean','Vegano ',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,'0',0,NULL),(182,4,'indaco_withoutsulphites',NULL,NULL,'int',NULL,NULL,'boolean','Senza solfiti aggiunti ',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,'0',0,NULL),(183,4,'indaco_dosage',NULL,NULL,'int',NULL,NULL,'select','Dosaggio ',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(184,4,'indaco_methodproduction',NULL,NULL,'int',NULL,NULL,'select','Metodo di produzione ',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(185,4,'indaco_body',NULL,NULL,'int',NULL,NULL,'select','Corpo ',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(186,4,'indaco_bottleclosure',NULL,NULL,'int',NULL,NULL,'select','Tipo di chiusura bottiglia',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(187,4,'indaco_containertype',NULL,NULL,'int',NULL,NULL,'select','Tipo di contenitore ',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(188,4,'indaco_agingcontainer',NULL,NULL,'text',NULL,NULL,'textarea','Materiale contenitore di invecchiamento ',NULL,NULL,0,1,NULL,0,NULL),(189,1,'mp_smtp_is_synced',NULL,NULL,'int',NULL,NULL,'hidden','Mp SMTP is synced',NULL,NULL,0,0,NULL,0,NULL),(190,9,'status',NULL,NULL,'static',NULL,NULL,'boolean','Is Enabled?',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'1',0,'Indicates whether the category is visible on frontend.'),(191,9,'is_essential',NULL,NULL,'static',NULL,NULL,'boolean','Is Essential?',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'0',0,'If the cookie category is defined as \"essential\" then users will not be able to disable it in the frontend. An example of essential cookies would be session cookies, persistent cookies, shopping cart cookies, etc.'),(192,9,'name',NULL,NULL,'text',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(193,9,'key',NULL,NULL,'static',NULL,NULL,'text','Category Identifier',NULL,NULL,1,0,NULL,0,NULL),(194,9,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(195,9,'sort_order',NULL,NULL,'int',NULL,NULL,'text','Sort Order',NULL,NULL,0,0,'0',0,'Sort order is a category position in \"Cookie Settings Panel\".'),(196,9,'head_scripts',NULL,NULL,'text',NULL,NULL,'textarea','Head Scripts',NULL,NULL,0,0,NULL,0,'Scripts and HTML listed here will be included right after the opening <body> tag. They will be executed if the corresponding cookie category is enabled by the customer.'),(197,9,'footer_miscellaneous_html',NULL,NULL,'text',NULL,NULL,'textarea','Footer Miscellaneous HTML',NULL,NULL,0,0,NULL,0,'Scripts and HTML listed here will be included right before the closing </body> tag. They will be executed if the corresponding cookie category is enabled by the customer.'),(198,9,'is_pre_checked',NULL,NULL,'int',NULL,NULL,'boolean','Is Pre-checked?',NULL,NULL,0,0,'0',0,'Indicates whether the category switcher is \"ON\" by default in the Cookie Settings Panel. Please note, the cookies from this category will be accepted only after the visitor confirms the choices.'),(199,10,'name',NULL,NULL,'static',NULL,NULL,'text','Name',NULL,NULL,1,0,NULL,0,NULL),(200,10,'type',NULL,NULL,'static',NULL,NULL,'select','Type',NULL,'Plumrocket\\CookieConsent\\Model\\Cookie\\Attribute\\Source\\Type',1,0,NULL,0,'A first-party cookie is set by your Magento store. A third-party cookie is set by a third-party service, via code loaded on your website.'),(201,10,'domain',NULL,NULL,'static',NULL,NULL,'text','Domain',NULL,NULL,1,0,NULL,0,'The domain for which the cookie is valid. If this attribute is not specified, then the Magento base URL is used as the default value.'),(202,10,'duration',NULL,NULL,'static',NULL,NULL,'text','Duration',NULL,NULL,1,0,'0',0,'Set the period when the cookie should expire. If set to 0, or omitted, the cookie will expire at the end of the session (when the browser closes).'),(203,10,'description',NULL,NULL,'text',NULL,NULL,'textarea','Description',NULL,NULL,0,0,NULL,0,NULL),(204,10,'category_key',NULL,NULL,'static',NULL,NULL,'select','Cookie Category',NULL,'Plumrocket\\CookieConsent\\Model\\Cookie\\Attribute\\Source\\CategoryKey',1,0,NULL,0,NULL),(205,11,'status',NULL,NULL,'int',NULL,NULL,'boolean','Display Checkbox',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'1',0,NULL),(206,11,'location_key',NULL,NULL,'static',NULL,NULL,'multiselect','Consent Location',NULL,'Plumrocket\\DataPrivacy\\Model\\OptionSource\\ConsentLocationsGrouped',1,0,NULL,0,'Please choose location where the consent checkbox must be displayed. Showing checkbox in \"custom location\" will require code modifications. Please read our developer\'s guide for more info.'),(207,11,'label',NULL,NULL,'text',NULL,NULL,'textarea','Checkbox Label',NULL,NULL,0,0,'I agree to <a href=\"{{url}}\" class=\"pr-inpopup\" target=\"_blank\">Privacy Policy</a>',0,NULL),(208,11,'cms_page_id',NULL,NULL,'int',NULL,NULL,'select','Link to CMS Page',NULL,'Plumrocket\\DataPrivacy\\Model\\Consent\\Checkbox\\Attribute\\Source\\CmsPage',0,0,NULL,0,'Please choose CMS page associated with this checkbox. Linked CMS page content will be displayed in popup. Leave empty if you dont want to display any CMS content.'),(209,11,'require',NULL,NULL,'int',NULL,NULL,'boolean','Required',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,0,'1',0,'Please indicate if this checkbox must be checked in order to submit a form.'),(210,11,'geo_targeting',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','Geo Targeting',NULL,'Plumrocket\\GDPR\\Model\\Checkbox\\Attribute\\Source\\GeoTargeting',0,0,'all',0,'Show consent checkbox only to visitors from the selected list of countries.'),(211,11,'internal_note',NULL,NULL,'static',NULL,NULL,'textarea','Internal Note',NULL,NULL,0,0,NULL,0,'Optional field for Admin users only. Useful to describe custom checkbox location (such as \"New Year\'s promo landing page\") or add some internal notes.'),(212,11,'geo_targeting_usa_states',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Backend\\ArrayBackend','text',NULL,NULL,'multiselect','U.S. states',NULL,'Plumrocket\\DataPrivacy\\Model\\Consent\\Checkbox\\Attribute\\Source\\GeoTargetingStates',0,0,'all',0,'You can select one or multiple U.S. states. For example,\n                        select \"California\" for CCPA law.'),(213,4,'indaco_seasoning',NULL,NULL,'int',NULL,NULL,'select','Stagionatura',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(214,4,'indaco_paste',NULL,NULL,'int',NULL,NULL,'select','Pasta',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(216,4,'indaco_crust',NULL,NULL,'int',NULL,NULL,'select','Tipo di crosta',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(217,4,'indaco_tastecheese',NULL,NULL,'int',NULL,NULL,'select','Gusto formaggio',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(218,4,'indaco_lactose',NULL,NULL,'int',NULL,NULL,'boolean','Lattosio',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Boolean',0,1,'0',0,NULL),(219,4,'indaco_processingfeatures',NULL,NULL,'text',NULL,NULL,'textarea','Caratteristiche di lavorazione',NULL,NULL,0,1,NULL,0,NULL),(220,4,'indaco_pastecolor',NULL,NULL,'int',NULL,NULL,'select','Colore pasta',NULL,'Magento\\Eav\\Model\\Entity\\Attribute\\Source\\Table',0,1,'',0,NULL),(224,4,'indacoall_brand',NULL,NULL,'varchar',NULL,NULL,'text','Marchio',NULL,NULL,0,1,NULL,0,NULL),(225,4,'indacoall_partner',NULL,NULL,'varchar',NULL,NULL,'text','Partner',NULL,NULL,0,1,NULL,0,NULL),(226,4,'indacoall_seller',NULL,NULL,'varchar',NULL,NULL,'text','Insegna',NULL,NULL,0,1,NULL,0,NULL);
/*!40000 ALTER TABLE `eav_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_attribute_group`
--

DROP TABLE IF EXISTS `eav_attribute_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_group` (
  `attribute_group_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Group ID',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Set ID',
  `attribute_group_name` varchar(255) DEFAULT NULL COMMENT 'Attribute Group Name',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `default_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Default ID',
  `attribute_group_code` varchar(255) NOT NULL COMMENT 'Attribute Group Code',
  `tab_group_code` varchar(255) DEFAULT NULL COMMENT 'Tab Group Code',
  PRIMARY KEY (`attribute_group_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_CODE` (`attribute_set_id`,`attribute_group_code`),
  UNIQUE KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_ATTRIBUTE_GROUP_NAME` (`attribute_set_id`,`attribute_group_name`),
  KEY `EAV_ATTRIBUTE_GROUP_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`),
  CONSTRAINT `EAV_ATTR_GROUP_ATTR_SET_ID_EAV_ATTR_SET_ATTR_SET_ID` FOREIGN KEY (`attribute_set_id`) REFERENCES `eav_attribute_set` (`attribute_set_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Group';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_group`
--

LOCK TABLES `eav_attribute_group` WRITE;
/*!40000 ALTER TABLE `eav_attribute_group` DISABLE KEYS */;
INSERT INTO `eav_attribute_group` VALUES (1,1,'General',1,1,'general',NULL),(2,2,'General',1,1,'general',NULL),(3,3,'General',10,1,'general',NULL),(4,3,'General Information',2,0,'general-information',NULL),(5,3,'Display Settings',20,0,'display-settings',NULL),(6,3,'Custom Design',30,0,'custom-design',NULL),(7,4,'Product Details',1,1,'product-details','basic'),(8,4,'Advanced Pricing',7,0,'advanced-pricing','advanced'),(9,4,'Search Engine Optimization',6,0,'search-engine-optimization','basic'),(10,4,'Images',5,0,'image-management','basic'),(11,4,'Design',8,0,'design','advanced'),(12,4,'Autosettings',10,0,'autosettings','advanced'),(13,4,'Content',2,0,'content','basic'),(14,4,'Schedule Design Update',9,0,'schedule-design-update','advanced'),(15,5,'General',1,1,'general',NULL),(16,6,'General',1,1,'general',NULL),(17,7,'General',1,1,'general',NULL),(18,8,'General',1,1,'general',NULL),(19,4,'Bundle Items',4,0,'bundle-items',NULL),(20,4,'Gift Options',11,0,'gift-options',NULL),(21,9,'Gift Options',12,0,'gift-options',NULL),(22,9,'Autosettings',11,0,'autosettings','advanced'),(23,9,'Schedule Design Update',10,0,'schedule-design-update','advanced'),(24,9,'Design',9,0,'design','advanced'),(25,9,'Advanced Pricing',8,0,'advanced-pricing','advanced'),(26,9,'Search Engine Optimization',7,0,'search-engine-optimization','basic'),(27,9,'Images',6,0,'image-management','basic'),(28,9,'Bundle Items',5,0,'bundle-items',NULL),(29,9,'Content',2,0,'content','basic'),(30,9,'Product Details',1,1,'product-details','basic'),(31,9,'Indaco',4,0,'indaco',NULL),(32,10,'General',1,1,'general',NULL),(33,10,'General Information',2,0,'general-information',NULL),(34,11,'General',1,1,'general',NULL),(35,11,'General Information',2,0,'general-information',NULL),(36,12,'General',1,1,'general',NULL),(37,12,'General Information',2,0,'general-information',NULL),(38,13,'Gift Options',12,0,'gift-options',NULL),(39,13,'Autosettings',11,0,'autosettings','advanced'),(40,13,'Schedule Design Update',10,0,'schedule-design-update','advanced'),(41,13,'Design',9,0,'design','advanced'),(42,13,'Advanced Pricing',8,0,'advanced-pricing','advanced'),(43,13,'Search Engine Optimization',7,0,'search-engine-optimization','basic'),(44,13,'Images',6,0,'image-management','basic'),(45,13,'Bundle Items',5,0,'bundle-items',NULL),(46,13,'Content',2,0,'content','basic'),(47,13,'Product Details',1,1,'product-details','basic'),(48,13,'Indaco',4,0,'indaco',NULL),(49,4,'Indaco Partner',3,0,'indaco-partner',NULL),(50,13,'Indaco Partner',3,0,'indaco-partner',NULL),(51,9,'Indaco Partner',3,0,'indaco-partner',NULL),(52,4,'Indaco',12,0,'indaco',NULL);
/*!40000 ALTER TABLE `eav_attribute_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_attribute_label`
--

DROP TABLE IF EXISTS `eav_attribute_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_label` (
  `attribute_label_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Label ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`attribute_label_id`),
  KEY `EAV_ATTRIBUTE_LABEL_STORE_ID` (`store_id`),
  KEY `EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_STORE_ID` (`attribute_id`,`store_id`),
  CONSTRAINT `EAV_ATTRIBUTE_LABEL_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ATTRIBUTE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_label`
--

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

--
-- Table structure for table `eav_attribute_option`
--

DROP TABLE IF EXISTS `eav_attribute_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`option_id`),
  KEY `EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `EAV_ATTRIBUTE_OPTION_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_option`
--

LOCK TABLES `eav_attribute_option` WRITE;
/*!40000 ALTER TABLE `eav_attribute_option` DISABLE KEYS */;
INSERT INTO `eav_attribute_option` VALUES (1,20,0),(2,20,1),(3,20,3),(27,164,0),(28,164,1),(29,164,2),(30,164,3),(31,168,0),(32,168,1),(33,168,2),(34,169,0),(35,169,1),(36,170,0),(37,170,1),(38,171,0),(39,171,1),(40,172,0),(41,172,1),(42,183,0),(43,183,1),(46,186,0),(47,186,1),(48,187,0),(50,165,1),(51,165,2),(52,165,3),(53,165,4),(54,165,5),(55,165,6),(56,165,7),(57,165,8),(58,165,9),(59,165,10),(60,165,11),(61,165,12),(62,165,13),(63,165,14),(64,213,1),(65,213,2),(66,214,1),(67,214,2),(70,216,1),(71,216,2),(72,217,1),(73,217,2),(74,220,1),(75,220,2),(76,185,1),(77,185,2),(78,185,3),(80,184,1),(81,186,3),(82,213,3),(83,213,4),(84,213,5),(85,213,6),(86,213,7),(87,213,8);
/*!40000 ALTER TABLE `eav_attribute_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_attribute_option_swatch`
--

DROP TABLE IF EXISTS `eav_attribute_option_swatch`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_option_swatch` (
  `swatch_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Swatch ID',
  `option_id` int(10) unsigned NOT NULL COMMENT 'Option ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `type` smallint(5) unsigned NOT NULL COMMENT 'Swatch type: 0 - text, 1 - visual color, 2 - visual image',
  `value` varchar(255) DEFAULT NULL COMMENT 'Swatch Value',
  PRIMARY KEY (`swatch_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_OPTION_ID` (`store_id`,`option_id`),
  KEY `EAV_ATTR_OPT_SWATCH_OPT_ID_EAV_ATTR_OPT_OPT_ID` (`option_id`),
  KEY `EAV_ATTRIBUTE_OPTION_SWATCH_SWATCH_ID` (`swatch_id`),
  CONSTRAINT `EAV_ATTRIBUTE_OPTION_SWATCH_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ATTR_OPT_SWATCH_OPT_ID_EAV_ATTR_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `eav_attribute_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Magento Swatches table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_option_swatch`
--

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

--
-- Table structure for table `eav_attribute_option_value`
--

DROP TABLE IF EXISTS `eav_attribute_option_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_option_value` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Option ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  KEY `EAV_ATTRIBUTE_OPTION_VALUE_OPTION_ID` (`option_id`),
  KEY `EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ATTRIBUTE_OPTION_VALUE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ATTR_OPT_VAL_OPT_ID_EAV_ATTR_OPT_OPT_ID` FOREIGN KEY (`option_id`) REFERENCES `eav_attribute_option` (`option_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=165 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Option Value';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_option_value`
--

LOCK TABLES `eav_attribute_option_value` WRITE;
/*!40000 ALTER TABLE `eav_attribute_option_value` DISABLE KEYS */;
INSERT INTO `eav_attribute_option_value` VALUES (1,1,0,'Male'),(2,2,0,'Female'),(3,3,0,'Not Specified'),(78,31,0,'1'),(79,32,0,'0.75'),(80,33,0,'0.5'),(81,36,0,'lorem'),(82,37,0,'ipsum'),(85,70,0,'lorem'),(86,71,0,'ipsum'),(89,34,0,'lorem'),(90,35,0,'ipsum'),(97,74,0,'lorem'),(98,75,0,'ipsum'),(113,50,0,'Val di Sole'),(114,51,0,'Val di Non'),(115,52,0,'Val di Fiemme'),(116,53,0,'Val di Fassa'),(117,54,0,'Garda Trentino e Valle di Ledro'),(118,55,0,'Rovereto e Vallagarina'),(119,56,0,'Trento e Monte Bondone'),(120,57,0,'Rotaliana e Paganella'),(121,58,0,'Valsugana'),(122,59,0,'Primiero'),(123,60,0,'Altopiano di Piné e Valle di Cembra'),(124,61,0,'Giudicarie e Rendena'),(125,62,0,'Altipiani cimbri'),(126,63,0,'Valle dei Laghi'),(127,38,0,'lorem'),(128,39,0,'ipsum'),(131,40,0,'lorem'),(132,41,0,'ipsum'),(133,72,0,'lorem'),(134,73,0,'ipsum'),(135,27,0,'Rosso'),(136,28,0,'Bianco'),(137,29,0,'Rose'),(138,30,0,'Spumante'),(139,76,0,'Magro'),(140,77,0,'Leggero'),(141,78,0,'Di medio corpo'),(148,42,0,'Zero'),(149,43,0,'Brut'),(150,80,0,'Classico'),(151,48,0,'Bottiglia'),(152,46,0,'Tappo a corona'),(153,47,0,'Sughero'),(154,81,0,'A vite'),(155,64,0,'Fresco'),(156,65,0,'Mezzano'),(157,82,0,'Stagionato'),(158,83,0,'Stravecchio'),(159,84,0,'6 mesi'),(160,85,0,'12 mesi'),(161,86,0,'18 mesi'),(162,87,0,'24 mesi'),(163,66,0,'Molla'),(164,67,0,'Dura');
/*!40000 ALTER TABLE `eav_attribute_option_value` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_attribute_set`
--

DROP TABLE IF EXISTS `eav_attribute_set`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_attribute_set` (
  `attribute_set_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute Set ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_set_name` varchar(255) DEFAULT NULL COMMENT 'Attribute Set Name',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`attribute_set_id`),
  UNIQUE KEY `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_ATTRIBUTE_SET_NAME` (`entity_type_id`,`attribute_set_name`),
  KEY `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_SORT_ORDER` (`entity_type_id`,`sort_order`),
  CONSTRAINT `EAV_ATTRIBUTE_SET_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COMMENT='Eav Attribute Set';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_attribute_set`
--

LOCK TABLES `eav_attribute_set` WRITE;
/*!40000 ALTER TABLE `eav_attribute_set` DISABLE KEYS */;
INSERT INTO `eav_attribute_set` VALUES (1,1,'Default',2),(2,2,'Default',2),(3,3,'Default',1),(4,4,'Default',1),(5,5,'Default',1),(6,6,'Default',1),(7,7,'Default',1),(8,8,'Default',1),(9,4,'Vino',0),(10,9,'Default',1),(11,10,'Default',1),(12,11,'Default',1),(13,4,'Formaggio',0);
/*!40000 ALTER TABLE `eav_attribute_set` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity`
--

DROP TABLE IF EXISTS `eav_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Set ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `parent_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Parent ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Defines Is Entity Active',
  PRIMARY KEY (`entity_id`),
  KEY `EAV_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `EAV_ENTITY_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ENTITY_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity`
--

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

--
-- Table structure for table `eav_entity_attribute`
--

DROP TABLE IF EXISTS `eav_entity_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_attribute` (
  `entity_attribute_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Attribute ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Set ID',
  `attribute_group_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Group ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`entity_attribute_id`),
  UNIQUE KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_ATTRIBUTE_ID` (`attribute_set_id`,`attribute_id`),
  UNIQUE KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_GROUP_ID_ATTRIBUTE_ID` (`attribute_group_id`,`attribute_id`),
  KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_SET_ID_SORT_ORDER` (`attribute_set_id`,`sort_order`),
  KEY `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `EAV_ENTITY_ATTRIBUTE_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTT_ATTR_ATTR_GROUP_ID_EAV_ATTR_GROUP_ATTR_GROUP_ID` FOREIGN KEY (`attribute_group_id`) REFERENCES `eav_attribute_group` (`attribute_group_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=1012 DEFAULT CHARSET=utf8 COMMENT='Eav Entity Attributes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_attribute`
--

LOCK TABLES `eav_entity_attribute` WRITE;
/*!40000 ALTER TABLE `eav_entity_attribute` DISABLE KEYS */;
INSERT INTO `eav_entity_attribute` VALUES (1,1,1,1,1,10),(2,1,1,1,2,20),(3,1,1,1,3,20),(4,1,1,1,4,30),(5,1,1,1,5,40),(6,1,1,1,6,50),(7,1,1,1,7,60),(8,1,1,1,8,70),(9,1,1,1,9,80),(10,1,1,1,10,25),(11,1,1,1,11,90),(12,1,1,1,12,81),(13,1,1,1,13,115),(14,1,1,1,14,120),(15,1,1,1,15,82),(16,1,1,1,16,83),(17,1,1,1,17,100),(18,1,1,1,18,0),(19,1,1,1,19,0),(20,1,1,1,20,110),(21,1,1,1,21,28),(22,2,2,2,22,10),(23,2,2,2,23,20),(24,2,2,2,24,30),(25,2,2,2,25,40),(26,2,2,2,26,50),(27,2,2,2,27,60),(28,2,2,2,28,70),(29,2,2,2,29,100),(30,2,2,2,30,80),(31,2,2,2,31,90),(32,2,2,2,32,90),(33,2,2,2,33,110),(34,2,2,2,34,120),(35,2,2,2,35,130),(36,2,2,2,36,140),(37,2,2,2,37,132),(38,2,2,2,38,133),(39,2,2,2,39,134),(40,2,2,2,40,135),(41,1,1,1,41,87),(42,1,1,1,42,100),(43,1,1,1,43,110),(44,1,1,1,44,120),(45,3,3,4,45,1),(46,3,3,4,46,2),(47,3,3,4,47,4),(48,3,3,4,48,5),(49,3,3,4,49,6),(50,3,3,4,50,7),(51,3,3,4,51,8),(52,3,3,5,52,10),(53,3,3,5,53,20),(54,3,3,5,54,30),(55,3,3,4,55,12),(56,3,3,4,56,13),(57,3,3,4,57,14),(58,3,3,4,58,15),(59,3,3,4,59,16),(60,3,3,6,60,10),(61,3,3,6,61,30),(62,3,3,6,62,40),(63,3,3,6,63,50),(64,3,3,6,64,60),(65,3,3,4,65,24),(66,3,3,4,66,25),(67,3,3,5,67,40),(68,3,3,5,68,50),(69,3,3,4,69,10),(70,3,3,6,70,5),(71,3,3,6,71,6),(72,3,3,5,72,51),(90,4,4,7,91,6),(96,4,4,8,98,8),(101,4,4,11,103,10),(105,4,4,7,107,14),(106,4,4,7,108,15),(107,4,4,7,109,16),(108,4,4,7,110,17),(109,4,4,7,111,18),(110,4,4,7,112,19),(111,4,4,7,113,20),(116,3,3,6,118,51),(119,3,3,4,121,3),(120,3,3,4,122,17),(122,4,4,7,124,11),(123,4,4,7,125,111),(124,4,4,7,126,112),(125,4,4,7,127,113),(126,4,4,7,128,114),(142,4,9,24,103,10),(149,4,9,25,98,8),(167,4,9,30,91,6),(169,4,9,30,124,11),(170,4,9,30,107,14),(171,4,9,30,108,15),(172,4,9,30,109,16),(173,4,9,30,110,17),(174,4,9,30,111,18),(175,4,9,30,112,19),(177,4,9,30,113,20),(190,4,9,30,125,111),(191,4,9,30,126,112),(192,4,9,30,127,113),(193,4,9,30,128,114),(266,1,1,1,189,90),(267,9,10,33,190,100),(268,9,10,33,191,200),(269,9,10,33,192,300),(270,9,10,33,193,400),(271,9,10,33,194,500),(272,9,10,33,195,600),(273,9,10,33,196,700),(274,9,10,33,197,800),(275,9,10,33,198,250),(276,10,11,35,199,100),(277,10,11,35,200,200),(278,10,11,35,201,300),(279,10,11,35,202,400),(280,10,11,35,203,500),(281,10,11,35,204,600),(282,11,12,37,205,100),(283,11,12,37,206,200),(284,11,12,37,207,300),(285,11,12,37,208,400),(286,11,12,37,209,500),(287,11,12,37,210,600),(288,11,12,37,211,700),(289,11,12,37,212,650),(297,4,13,41,103,10),(304,4,13,42,98,8),(322,4,13,47,91,6),(324,4,13,47,124,11),(325,4,13,47,107,14),(326,4,13,47,108,15),(327,4,13,47,109,16),(328,4,13,47,110,17),(329,4,13,47,111,18),(330,4,13,47,112,19),(332,4,13,47,113,20),(345,4,13,47,125,111),(346,4,13,47,126,112),(347,4,13,47,127,113),(348,4,13,47,128,114),(789,4,13,47,73,2),(790,4,13,47,74,3),(791,4,13,47,77,5),(792,4,13,47,82,9),(793,4,13,47,94,13),(794,4,13,47,95,14),(795,4,13,47,97,1),(796,4,13,47,99,12),(797,4,13,47,105,11),(798,4,13,47,114,15),(799,4,13,47,115,8),(800,4,13,47,129,6),(801,4,13,47,130,4),(802,4,13,47,131,10),(803,4,13,47,136,7),(804,4,13,46,75,2),(805,4,13,46,76,1),(806,4,13,50,224,3),(807,4,13,50,225,1),(808,4,13,50,226,2),(809,4,13,48,165,1),(810,4,13,48,213,2),(811,4,13,48,214,3),(812,4,13,48,216,5),(813,4,13,48,217,6),(814,4,13,48,218,7),(815,4,13,48,219,8),(816,4,13,48,220,4),(817,4,13,45,133,1),(818,4,13,44,87,1),(819,4,13,44,88,2),(820,4,13,44,89,3),(821,4,13,44,90,5),(822,4,13,44,96,6),(823,4,13,44,135,4),(824,4,13,43,84,2),(825,4,13,43,85,3),(826,4,13,43,86,4),(827,4,13,43,123,1),(828,4,13,42,78,1),(829,4,13,42,79,2),(830,4,13,42,80,3),(831,4,13,42,81,4),(832,4,13,42,92,5),(833,4,13,42,119,6),(834,4,13,42,120,7),(835,4,13,42,132,8),(836,4,13,41,104,1),(837,4,13,41,106,2),(838,4,13,41,117,3),(839,4,13,40,100,3),(840,4,13,40,101,1),(841,4,13,40,102,2),(842,4,13,40,116,4),(843,4,13,38,134,1),(891,4,9,30,73,2),(892,4,9,30,74,3),(893,4,9,30,77,5),(894,4,9,30,82,9),(895,4,9,30,94,13),(896,4,9,30,95,14),(897,4,9,30,97,1),(898,4,9,30,99,12),(899,4,9,30,105,11),(900,4,9,30,114,15),(901,4,9,30,115,8),(902,4,9,30,129,6),(903,4,9,30,130,4),(904,4,9,30,131,10),(905,4,9,30,136,7),(906,4,9,29,75,2),(907,4,9,29,76,1),(908,4,9,51,224,3),(909,4,9,51,225,1),(910,4,9,51,226,2),(911,4,9,31,163,2),(912,4,9,31,164,16),(913,4,9,31,165,1),(914,4,9,31,166,17),(915,4,9,31,167,18),(916,4,9,31,168,19),(917,4,9,31,169,20),(918,4,9,31,170,21),(919,4,9,31,171,22),(920,4,9,31,172,23),(921,4,9,31,173,24),(922,4,9,31,174,25),(923,4,9,31,175,15),(924,4,9,31,176,14),(925,4,9,31,177,3),(926,4,9,31,178,4),(927,4,9,31,179,5),(928,4,9,31,180,6),(929,4,9,31,181,7),(930,4,9,31,182,8),(931,4,9,31,183,9),(932,4,9,31,184,10),(933,4,9,31,185,11),(934,4,9,31,186,12),(935,4,9,31,187,13),(936,4,9,31,188,26),(937,4,9,28,133,1),(938,4,9,27,87,1),(939,4,9,27,88,2),(940,4,9,27,89,3),(941,4,9,27,90,5),(942,4,9,27,96,6),(943,4,9,27,135,4),(944,4,9,26,84,2),(945,4,9,26,85,3),(946,4,9,26,86,4),(947,4,9,26,123,1),(948,4,9,25,78,1),(949,4,9,25,79,2),(950,4,9,25,80,3),(951,4,9,25,81,4),(952,4,9,25,92,5),(953,4,9,25,119,6),(954,4,9,25,120,7),(955,4,9,25,132,8),(956,4,9,24,104,1),(957,4,9,24,106,2),(958,4,9,24,117,3),(959,4,9,23,100,3),(960,4,9,23,101,1),(961,4,9,23,102,2),(962,4,9,23,116,4),(963,4,9,21,134,1),(964,4,4,7,73,2),(965,4,4,7,74,3),(966,4,4,7,77,5),(967,4,4,7,82,9),(968,4,4,7,94,13),(969,4,4,7,95,14),(970,4,4,7,97,1),(971,4,4,7,99,12),(972,4,4,7,105,11),(973,4,4,7,114,15),(974,4,4,7,115,8),(975,4,4,7,129,6),(976,4,4,7,130,4),(977,4,4,7,131,10),(978,4,4,7,136,7),(979,4,4,13,75,2),(980,4,4,13,76,1),(981,4,4,49,224,3),(982,4,4,49,225,1),(983,4,4,49,226,2),(984,4,4,19,133,1),(985,4,4,10,87,1),(986,4,4,10,88,2),(987,4,4,10,89,3),(988,4,4,10,90,5),(989,4,4,10,96,6),(990,4,4,10,135,4),(991,4,4,9,84,2),(992,4,4,9,85,3),(993,4,4,9,86,4),(994,4,4,9,123,1),(995,4,4,8,78,1),(996,4,4,8,79,2),(997,4,4,8,80,3),(998,4,4,8,81,4),(999,4,4,8,92,5),(1000,4,4,8,119,6),(1001,4,4,8,120,7),(1002,4,4,8,132,8),(1003,4,4,11,104,1),(1004,4,4,11,106,2),(1005,4,4,11,117,3),(1006,4,4,14,100,3),(1007,4,4,14,101,1),(1008,4,4,14,102,2),(1009,4,4,14,116,4),(1010,4,4,20,134,1),(1011,4,4,52,165,1);
/*!40000 ALTER TABLE `eav_entity_attribute` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity_datetime`
--

DROP TABLE IF EXISTS `eav_entity_datetime`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_datetime` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` datetime DEFAULT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_DATETIME_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_DATETIME_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_DATETIME_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_DATETIME_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTT_DTIME_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_datetime`
--

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

--
-- Table structure for table `eav_entity_decimal`
--

DROP TABLE IF EXISTS `eav_entity_decimal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_decimal` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_DECIMAL_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_DECIMAL_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_DECIMAL_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_DECIMAL_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_decimal`
--

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

--
-- Table structure for table `eav_entity_int`
--

DROP TABLE IF EXISTS `eav_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` int(11) NOT NULL DEFAULT 0 COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_INT_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_INT_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_INT_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_INT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_INT_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_int`
--

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

--
-- Table structure for table `eav_entity_store`
--

DROP TABLE IF EXISTS `eav_entity_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_store` (
  `entity_store_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Store ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `increment_prefix` varchar(20) DEFAULT NULL COMMENT 'Increment Prefix',
  `increment_last_id` varchar(50) DEFAULT NULL COMMENT 'Last Incremented ID',
  PRIMARY KEY (`entity_store_id`),
  KEY `EAV_ENTITY_STORE_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `EAV_ENTITY_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ENTITY_STORE_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_store`
--

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

--
-- Table structure for table `eav_entity_text`
--

DROP TABLE IF EXISTS `eav_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` text NOT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_TEXT_ENTITY_TYPE_ID` (`entity_type_id`),
  KEY `EAV_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `EAV_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_ENTITY_TEXT_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_TEXT_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_text`
--

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

--
-- Table structure for table `eav_entity_type`
--

DROP TABLE IF EXISTS `eav_entity_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_type` (
  `entity_type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity Type ID',
  `entity_type_code` varchar(50) NOT NULL COMMENT 'Entity Type Code',
  `entity_model` varchar(255) NOT NULL COMMENT 'Entity Model',
  `attribute_model` varchar(255) DEFAULT NULL COMMENT 'Attribute Model',
  `entity_table` varchar(255) DEFAULT NULL COMMENT 'Entity Table',
  `value_table_prefix` varchar(255) DEFAULT NULL COMMENT 'Value Table Prefix',
  `entity_id_field` varchar(255) DEFAULT NULL COMMENT 'Entity ID Field',
  `is_data_sharing` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Defines Is Data Sharing',
  `data_sharing_key` varchar(100) DEFAULT 'default' COMMENT 'Data Sharing Key',
  `default_attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Default Attribute Set ID',
  `increment_model` varchar(255) DEFAULT NULL COMMENT 'Increment Model',
  `increment_per_store` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Increment Per Store',
  `increment_pad_length` smallint(5) unsigned NOT NULL DEFAULT 8 COMMENT 'Increment Pad Length',
  `increment_pad_char` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Increment Pad Char',
  `additional_attribute_table` varchar(255) DEFAULT NULL COMMENT 'Additional Attribute Table',
  `entity_attribute_collection` varchar(255) DEFAULT NULL COMMENT 'Entity Attribute Collection',
  PRIMARY KEY (`entity_type_id`),
  KEY `EAV_ENTITY_TYPE_ENTITY_TYPE_CODE` (`entity_type_code`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Eav Entity Type';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_type`
--

LOCK TABLES `eav_entity_type` WRITE;
/*!40000 ALTER TABLE `eav_entity_type` DISABLE KEYS */;
INSERT INTO `eav_entity_type` VALUES (1,'customer','Magento\\Customer\\Model\\ResourceModel\\Customer','Magento\\Customer\\Model\\Attribute','customer_entity',NULL,NULL,1,'default',1,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',0,8,'0','customer_eav_attribute','Magento\\Customer\\Model\\ResourceModel\\Attribute\\Collection'),(2,'customer_address','Magento\\Customer\\Model\\ResourceModel\\Address','Magento\\Customer\\Model\\Attribute','customer_address_entity',NULL,NULL,1,'default',2,NULL,0,8,'0','customer_eav_attribute','Magento\\Customer\\Model\\ResourceModel\\Address\\Attribute\\Collection'),(3,'catalog_category','Magento\\Catalog\\Model\\ResourceModel\\Category','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','catalog_category_entity',NULL,NULL,1,'default',3,NULL,0,8,'0','catalog_eav_attribute','Magento\\Catalog\\Model\\ResourceModel\\Category\\Attribute\\Collection'),(4,'catalog_product','Magento\\Catalog\\Model\\ResourceModel\\Product','Magento\\Catalog\\Model\\ResourceModel\\Eav\\Attribute','catalog_product_entity',NULL,NULL,1,'default',4,NULL,0,8,'0','catalog_eav_attribute','Magento\\Catalog\\Model\\ResourceModel\\Product\\Attribute\\Collection'),(5,'order','Magento\\Sales\\Model\\ResourceModel\\Order',NULL,'sales_order',NULL,NULL,1,'default',5,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(6,'invoice','Magento\\Sales\\Model\\ResourceModel\\Order\\Invoice',NULL,'sales_invoice',NULL,NULL,1,'default',6,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(7,'creditmemo','Magento\\Sales\\Model\\ResourceModel\\Order\\Creditmemo',NULL,'sales_creditmemo',NULL,NULL,1,'default',7,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(8,'shipment','Magento\\Sales\\Model\\ResourceModel\\Order\\Shipment',NULL,'sales_shipment',NULL,NULL,1,'default',8,'Magento\\Eav\\Model\\Entity\\Increment\\NumericValue',1,8,'0',NULL,NULL),(9,'pr_cookie_category','Plumrocket\\CookieConsent\\Model\\ResourceModel\\Category','Plumrocket\\CookieConsent\\Model\\Eav\\Attribute','pr_cookie_category_entity',NULL,NULL,1,'default',10,NULL,0,8,'0','plumrocket_eav_attribute_additional','Plumrocket\\CookieConsent\\Model\\ResourceModel\\Category\\Attribute\\Collection'),(10,'pr_cookie','Plumrocket\\CookieConsent\\Model\\ResourceModel\\Cookie','Plumrocket\\CookieConsent\\Model\\Eav\\Attribute','pr_cookie_entity',NULL,NULL,1,'default',11,NULL,0,8,'0','plumrocket_eav_attribute_additional','Plumrocket\\CookieConsent\\Model\\ResourceModel\\Cookie\\Attribute\\Collection'),(11,'prgdpr_checkbox','Plumrocket\\DataPrivacy\\Model\\ResourceModel\\Consent\\Checkbox','Plumrocket\\DataPrivacy\\Model\\Consent\\Checkbox\\Attribute','prgdpr_checkbox_entity',NULL,NULL,1,'default',12,NULL,0,8,'0','catalog_eav_attribute','Plumrocket\\DataPrivacy\\Model\\ResourceModel\\Consent\\Checkbox\\Attribute\\Collection');
/*!40000 ALTER TABLE `eav_entity_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_entity_varchar`
--

DROP TABLE IF EXISTS `eav_entity_varchar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_entity_varchar` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `entity_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity Type ID',
  `attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `value` varchar(255) DEFAULT NULL COMMENT 'Attribute Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `EAV_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `EAV_ENTITY_VARCHAR_STORE_ID` (`store_id`),
  KEY `EAV_ENTITY_VARCHAR_ATTRIBUTE_ID_VALUE` (`attribute_id`,`value`),
  KEY `EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID_VALUE` (`entity_type_id`,`value`),
  CONSTRAINT `EAV_ENTITY_VARCHAR_ENTITY_ID_EAV_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `eav_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_VARCHAR_ENTITY_TYPE_ID_EAV_ENTITY_TYPE_ENTITY_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Entity Value Prefix';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_entity_varchar`
--

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

--
-- Table structure for table `eav_form_element`
--

DROP TABLE IF EXISTS `eav_form_element`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_form_element` (
  `element_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Element ID',
  `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type ID',
  `fieldset_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Fieldset ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  `sort_order` int(11) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`element_id`),
  UNIQUE KEY `EAV_FORM_ELEMENT_TYPE_ID_ATTRIBUTE_ID` (`type_id`,`attribute_id`),
  KEY `EAV_FORM_ELEMENT_FIELDSET_ID` (`fieldset_id`),
  KEY `EAV_FORM_ELEMENT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `EAV_FORM_ELEMENT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_FORM_ELEMENT_FIELDSET_ID_EAV_FORM_FIELDSET_FIELDSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `eav_form_fieldset` (`fieldset_id`) ON DELETE SET NULL,
  CONSTRAINT `EAV_FORM_ELEMENT_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8 COMMENT='Eav Form Element';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_element`
--

LOCK TABLES `eav_form_element` WRITE;
/*!40000 ALTER TABLE `eav_form_element` DISABLE KEYS */;
INSERT INTO `eav_form_element` VALUES (1,1,NULL,23,0),(2,1,NULL,25,1),(3,1,NULL,27,2),(4,1,NULL,9,3),(5,1,NULL,28,4),(6,1,NULL,29,5),(7,1,NULL,31,6),(8,1,NULL,33,7),(9,1,NULL,30,8),(10,1,NULL,34,9),(11,1,NULL,35,10),(12,2,NULL,23,0),(13,2,NULL,25,1),(14,2,NULL,27,2),(15,2,NULL,9,3),(16,2,NULL,28,4),(17,2,NULL,29,5),(18,2,NULL,31,6),(19,2,NULL,33,7),(20,2,NULL,30,8),(21,2,NULL,34,9),(22,2,NULL,35,10),(23,3,NULL,23,0),(24,3,NULL,25,1),(25,3,NULL,27,2),(26,3,NULL,28,3),(27,3,NULL,29,4),(28,3,NULL,31,5),(29,3,NULL,33,6),(30,3,NULL,30,7),(31,3,NULL,34,8),(32,3,NULL,35,9),(33,4,NULL,23,0),(34,4,NULL,25,1),(35,4,NULL,27,2),(36,4,NULL,28,3),(37,4,NULL,29,4),(38,4,NULL,31,5),(39,4,NULL,33,6),(40,4,NULL,30,7),(41,4,NULL,34,8),(42,4,NULL,35,9);
/*!40000 ALTER TABLE `eav_form_element` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_form_fieldset`
--

DROP TABLE IF EXISTS `eav_form_fieldset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_form_fieldset` (
  `fieldset_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Fieldset ID',
  `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type ID',
  `code` varchar(64) NOT NULL COMMENT 'Code',
  `sort_order` int(11) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  PRIMARY KEY (`fieldset_id`),
  UNIQUE KEY `EAV_FORM_FIELDSET_TYPE_ID_CODE` (`type_id`,`code`),
  CONSTRAINT `EAV_FORM_FIELDSET_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_fieldset`
--

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

--
-- Table structure for table `eav_form_fieldset_label`
--

DROP TABLE IF EXISTS `eav_form_fieldset_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_form_fieldset_label` (
  `fieldset_id` smallint(5) unsigned NOT NULL COMMENT 'Fieldset ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `label` varchar(255) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`fieldset_id`,`store_id`),
  KEY `EAV_FORM_FIELDSET_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_FORM_FIELDSET_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_FORM_FSET_LBL_FSET_ID_EAV_FORM_FSET_FSET_ID` FOREIGN KEY (`fieldset_id`) REFERENCES `eav_form_fieldset` (`fieldset_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Fieldset Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_fieldset_label`
--

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

--
-- Table structure for table `eav_form_type`
--

DROP TABLE IF EXISTS `eav_form_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_form_type` (
  `type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Type ID',
  `code` varchar(64) NOT NULL COMMENT 'Code',
  `label` varchar(255) NOT NULL COMMENT 'Label',
  `is_system` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is System',
  `theme` varchar(64) DEFAULT NULL COMMENT 'Theme',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`type_id`),
  UNIQUE KEY `EAV_FORM_TYPE_CODE_THEME_STORE_ID` (`code`,`theme`,`store_id`),
  KEY `EAV_FORM_TYPE_STORE_ID` (`store_id`),
  CONSTRAINT `EAV_FORM_TYPE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Eav Form Type';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_type`
--

LOCK TABLES `eav_form_type` WRITE;
/*!40000 ALTER TABLE `eav_form_type` DISABLE KEYS */;
INSERT INTO `eav_form_type` VALUES (1,'checkout_onepage_register','checkout_onepage_register',1,'',0),(2,'checkout_onepage_register_guest','checkout_onepage_register_guest',1,'',0),(3,'checkout_onepage_billing_address','checkout_onepage_billing_address',1,'',0),(4,'checkout_onepage_shipping_address','checkout_onepage_shipping_address',1,'',0);
/*!40000 ALTER TABLE `eav_form_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `eav_form_type_entity`
--

DROP TABLE IF EXISTS `eav_form_type_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `eav_form_type_entity` (
  `type_id` smallint(5) unsigned NOT NULL COMMENT 'Type ID',
  `entity_type_id` smallint(5) unsigned NOT NULL COMMENT 'Entity Type ID',
  PRIMARY KEY (`type_id`,`entity_type_id`),
  KEY `EAV_FORM_TYPE_ENTITY_ENTITY_TYPE_ID` (`entity_type_id`),
  CONSTRAINT `EAV_FORM_TYPE_ENTITY_TYPE_ID_EAV_FORM_TYPE_TYPE_ID` FOREIGN KEY (`type_id`) REFERENCES `eav_form_type` (`type_id`) ON DELETE CASCADE,
  CONSTRAINT `EAV_FORM_TYPE_ENTT_ENTT_TYPE_ID_EAV_ENTT_TYPE_ENTT_TYPE_ID` FOREIGN KEY (`entity_type_id`) REFERENCES `eav_entity_type` (`entity_type_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Eav Form Type Entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `eav_form_type_entity`
--

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

--
-- Table structure for table `email_template`
--

DROP TABLE IF EXISTS `email_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_template` (
  `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Template ID',
  `template_code` varchar(150) NOT NULL COMMENT 'Template Name',
  `template_text` text NOT NULL COMMENT 'Template Content',
  `template_styles` text DEFAULT NULL COMMENT 'Templste Styles',
  `template_type` int(10) unsigned DEFAULT NULL COMMENT 'Template Type',
  `template_subject` varchar(200) NOT NULL COMMENT 'Template Subject',
  `template_sender_name` varchar(200) DEFAULT NULL COMMENT 'Template Sender Name',
  `template_sender_email` varchar(200) DEFAULT NULL COMMENT 'Template Sender Email',
  `added_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Date of Template Creation',
  `modified_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date of Template Modification',
  `orig_template_code` varchar(200) DEFAULT NULL COMMENT 'Original Template Code',
  `orig_template_variables` text DEFAULT NULL COMMENT 'Original Template Variables',
  `is_legacy` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Should the template render in legacy mode',
  PRIMARY KEY (`template_id`),
  UNIQUE KEY `EMAIL_TEMPLATE_TEMPLATE_CODE` (`template_code`),
  KEY `EMAIL_TEMPLATE_ADDED_AT` (`added_at`),
  KEY `EMAIL_TEMPLATE_MODIFIED_AT` (`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Email Templates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_template`
--

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

--
-- Table structure for table `flag`
--

DROP TABLE IF EXISTS `flag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `flag` (
  `flag_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Flag Id',
  `flag_code` varchar(255) NOT NULL COMMENT 'Flag Code',
  `state` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Flag State',
  `flag_data` mediumtext DEFAULT NULL COMMENT 'Flag Data',
  `last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date of Last Flag Update',
  PRIMARY KEY (`flag_id`),
  KEY `FLAG_LAST_UPDATE` (`last_update`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Flag';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `flag`
--

LOCK TABLES `flag` WRITE;
/*!40000 ALTER TABLE `flag` DISABLE KEYS */;
INSERT INTO `flag` VALUES (2,'report_bestsellers_aggregated',0,NULL,'2022-09-15 22:00:02'),(3,'report_coupons_aggregated',0,NULL,'2022-09-15 22:00:02'),(4,'report_invoiced_aggregated',0,NULL,'2022-09-15 22:00:02'),(5,'report_order_aggregated',0,NULL,'2022-09-15 22:00:02'),(6,'report_refunded_aggregated',0,NULL,'2022-09-15 22:00:02'),(7,'report_shipping_aggregated',0,NULL,'2022-09-15 22:00:02'),(8,'report_tax_aggregated',0,NULL,'2022-09-15 22:00:02');
/*!40000 ALTER TABLE `flag` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `gift_message`
--

DROP TABLE IF EXISTS `gift_message`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gift_message` (
  `gift_message_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'GiftMessage ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `sender` varchar(255) DEFAULT NULL COMMENT 'Sender',
  `recipient` varchar(255) DEFAULT NULL COMMENT 'Registrant',
  `message` text DEFAULT NULL COMMENT 'Message',
  PRIMARY KEY (`gift_message_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Gift Message';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `gift_message`
--

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

--
-- Table structure for table `googleoptimizer_code`
--

DROP TABLE IF EXISTS `googleoptimizer_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `googleoptimizer_code` (
  `code_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Google experiment code ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Optimized entity ID product ID or catalog ID',
  `entity_type` varchar(50) DEFAULT NULL COMMENT 'Optimized entity type',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `experiment_script` text DEFAULT NULL COMMENT 'Google experiment script',
  PRIMARY KEY (`code_id`),
  UNIQUE KEY `GOOGLEOPTIMIZER_CODE_STORE_ID_ENTITY_ID_ENTITY_TYPE` (`store_id`,`entity_id`,`entity_type`),
  CONSTRAINT `GOOGLEOPTIMIZER_CODE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Google Experiment code';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `googleoptimizer_code`
--

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

--
-- Table structure for table `import_history`
--

DROP TABLE IF EXISTS `import_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `import_history` (
  `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'History record ID',
  `started_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Started at',
  `user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'User ID',
  `imported_file` varchar(255) DEFAULT NULL COMMENT 'Imported file',
  `execution_time` varchar(255) DEFAULT NULL COMMENT 'Execution time',
  `summary` varchar(255) DEFAULT NULL COMMENT 'Summary',
  `error_file` varchar(255) NOT NULL COMMENT 'Imported file with errors',
  PRIMARY KEY (`history_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Import history table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `import_history`
--

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

--
-- Table structure for table `importexport_importdata`
--

DROP TABLE IF EXISTS `importexport_importdata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `importexport_importdata` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `entity` varchar(50) NOT NULL COMMENT 'Entity',
  `behavior` varchar(10) NOT NULL DEFAULT 'append' COMMENT 'Behavior',
  `data` longtext DEFAULT NULL COMMENT 'Data',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Import Data Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `importexport_importdata`
--

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

--
-- Table structure for table `indexer_state`
--

DROP TABLE IF EXISTS `indexer_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `indexer_state` (
  `state_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Indexer State ID',
  `indexer_id` varchar(255) DEFAULT NULL COMMENT 'Indexer ID',
  `status` varchar(16) DEFAULT 'invalid' COMMENT 'Indexer Status',
  `updated` datetime DEFAULT NULL COMMENT 'Indexer Status',
  `hash_config` varchar(32) NOT NULL COMMENT 'Hash of indexer config',
  PRIMARY KEY (`state_id`),
  KEY `INDEXER_STATE_INDEXER_ID` (`indexer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='Indexer State';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `indexer_state`
--

LOCK TABLES `indexer_state` WRITE;
/*!40000 ALTER TABLE `indexer_state` DISABLE KEYS */;
INSERT INTO `indexer_state` VALUES (1,'design_config_grid','valid','2022-09-16 13:10:20','68fb59a69b4a64f6706c82b623b115df'),(2,'customer_grid','valid','2022-09-16 11:00:43','abed4641b89299b368ea971eb1f970fa'),(3,'catalog_category_product','valid','2022-09-16 11:00:44','4fde38aad34281d80ca070fe18999b29'),(4,'catalog_product_category','valid','2022-09-16 11:00:44','ce1f6f49460a9be4b24d0d1f4b82e021'),(5,'catalogrule_rule','valid','2022-09-16 11:00:45','f4696af11c20df91bbe6f5d2cb31a28e'),(6,'catalog_product_attribute','valid','2022-09-16 11:00:45','41c87041b4de7e8ac1a4e6ca309b78eb'),(7,'cataloginventory_stock','valid','2022-09-16 11:00:45','2416f717ba4ed89af10de9d93d427cf0'),(8,'inventory','valid','2022-09-16 11:00:45','bfef3b86f8cae8f3389cca6c0f8b3234'),(9,'catalogrule_product','valid','2022-09-16 11:00:45','d3914634553ab9a8da452b4a53a9bfca'),(10,'catalog_product_price','valid','2022-09-16 11:00:45','f2aa9e846388eaf0c3b3765893ccbffb'),(11,'catalogsearch_fulltext','valid','2022-09-16 11:00:46','b62dd918eaa59e3b21bef71216ec0dea');
/*!40000 ALTER TABLE `indexer_state` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `integration`
--

DROP TABLE IF EXISTS `integration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `integration` (
  `integration_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Integration ID',
  `name` varchar(255) NOT NULL COMMENT 'Integration name is displayed in the admin interface',
  `email` varchar(255) NOT NULL COMMENT 'Email address of the contact person',
  `endpoint` varchar(255) DEFAULT NULL COMMENT 'Endpoint for posting consumer credentials',
  `status` smallint(5) unsigned NOT NULL COMMENT 'Integration status',
  `consumer_id` int(10) unsigned DEFAULT NULL COMMENT 'Oauth consumer',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Update Time',
  `setup_type` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Integration type - manual or config file',
  `identity_link_url` varchar(255) DEFAULT NULL COMMENT 'Identity linking Url',
  PRIMARY KEY (`integration_id`),
  UNIQUE KEY `INTEGRATION_NAME` (`name`),
  UNIQUE KEY `INTEGRATION_CONSUMER_ID` (`consumer_id`),
  CONSTRAINT `INTEGRATION_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='integration';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `integration`
--

LOCK TABLES `integration` WRITE;
/*!40000 ALTER TABLE `integration` DISABLE KEYS */;
INSERT INTO `integration` VALUES (2,'indacoapi','',NULL,1,2,'2022-08-05 09:32:35','2022-08-05 09:36:50',0,NULL),(3,'shippypro','',NULL,1,3,'2022-08-05 10:26:44','2022-08-05 10:27:23',0,NULL),(4,'Magento Analytics user','',NULL,1,4,'2022-09-07 11:00:02','2022-09-07 11:00:03',0,NULL);
/*!40000 ALTER TABLE `integration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_geoname`
--

DROP TABLE IF EXISTS `inventory_geoname`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_geoname` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'entity id',
  `country_code` varchar(64) NOT NULL,
  `postcode` varchar(64) NOT NULL,
  `city` varchar(180) NOT NULL,
  `region` varchar(100) NOT NULL,
  `province` varchar(64) NOT NULL,
  `latitude` double NOT NULL,
  `longitude` double NOT NULL,
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_geoname`
--

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

--
-- Table structure for table `inventory_low_stock_notification_configuration`
--

DROP TABLE IF EXISTS `inventory_low_stock_notification_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_low_stock_notification_configuration` (
  `source_code` varchar(255) NOT NULL,
  `sku` varchar(64) NOT NULL,
  `notify_stock_qty` decimal(12,4) DEFAULT NULL,
  PRIMARY KEY (`source_code`,`sku`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_low_stock_notification_configuration`
--

LOCK TABLES `inventory_low_stock_notification_configuration` WRITE;
/*!40000 ALTER TABLE `inventory_low_stock_notification_configuration` DISABLE KEYS */;
INSERT INTO `inventory_low_stock_notification_configuration` VALUES ('default','12345678-0aa9916d-2da6-433b-8d0a-127cda4606c8',NULL),('default','1243-e576e3bc-7778-4171-870f-aae102120d2d',NULL),('default','345-d3efefbb-3ac4-4d65-9f1b-83e4d5f39fc0',NULL),('default','4A01020001-01-73960eeb-46b1-4432-81a5-fc76017aafeb',NULL),('default','4A01020001-01-ff67a23f-72cd-494e-bc5c-8273a5fd9d8b',NULL),('default','4A01020003-01-63bf73f3-c8ff-4527-8e81-1790df1cff14',NULL),('default','4A01020006-01-01aa69c9-4ba1-4842-9016-d85481eb99ad',NULL),('default','4A01020010-01-144185b5-2973-47ec-a1b7-381848bf1ba6',NULL),('default','4A01020011-01-ceb499ab-3fbf-476b-9bf3-fb218cc5ac6b',NULL),('default','4A01020034-01-9d9eff29-58e4-49ce-858a-f1ef237bcfc9',NULL),('default','4A01020035-01-7f6c6f69-aee4-4ff2-9b04-8ea39b88244f',NULL),('default','4A01020038-01-dae98d55-4ea4-4d30-ad7a-87e4dcb8d8a9',NULL),('default','4A01020039-01-2f80a03c-0f63-478e-a4c4-95278e378d36',NULL),('default','4A01020041-01-a1848f3e-f504-4c48-bedd-d88ed8f13a82',NULL),('default','4A04030006-01-6ecdb1a9-1031-4198-882c-c069b2a5ee71',NULL),('default','4A04030010-01-c7528cb5-5b59-4673-bacc-e31d786de5d2',NULL),('default','4A04030011-01-91f05f81-d759-49bc-abf3-e8ccef69925b',NULL),('default','4A05081006-01-d02b2f19-97c6-45df-bd8f-c0f011ab97a2',NULL),('default','4A05081008-01-fffed57b-a87b-4bcb-b81e-aac6bcfdf686',NULL),('default','4A05081009-01-78104831-67af-4161-82ab-03d986cebfdb',NULL),('default','4A07010001-01-0cd52c02-05d8-4afd-82e3-2aae18e23c0e',NULL),('default','4A07010006-01-c5189c99-18d8-4d30-94db-ef7bbefa4d82',NULL),('default','4A09050007-01-24fece10-d99c-4076-a6fc-a596293f7767',NULL),('default','4A09050008-01-c0c9a963-2ecb-4cfa-b454-f40adb373a58',NULL),('default','4A09050009-01-21dbbd80-7128-4c49-861e-63eb94eba93d',NULL),('default','4A09050010-01-21f97a2a-433a-4c69-92ec-73e1572f433b',NULL),('default','4A10050010-01-5c4b3c5b-fb1e-4580-b7cd-33d9e6d371be',NULL),('default','4A10050011-01-bfda8f30-ebba-4dc1-b2e1-4f574741f435',NULL),('default','ASTSALALP1-01-07d59c7e-d2d7-4136-b471-5010889a3d8a',NULL),('default','ASTSALALP1-01-ba67c4b1-f11a-4a6f-af04-8de30359b688',NULL),('default','ASTSALALP1-7d599e13-0abe-4fba-8452-b4ddc37dde6b',NULL),('default','ASTSALBOC1-01-90a3fa2f-344f-4a44-948e-6d159cfa0e60',NULL),('default','ASTSALBOC1-01-dd8602ca-c3ef-401c-81cb-e53b37084c7d',NULL),('default','ASTSALBOC1-e70bdd92-9ef9-47b7-8eaf-791c41f4d83d',NULL),('default','ASTTROAFF1-01-00e827ce-e840-4c5f-ac4b-f5424df80712',NULL),('default','ASTTROAFF1-01-538214d8-7777-4fdf-8c6d-e5e6b565c8e1',NULL),('default','ASTTROAFF1-555f8b4b-b6f0-4f15-a558-984b68e0eb99',NULL),('default','ASTTROBOC1-01-0a3b35e2-18a2-4e97-a39c-26aab32569ad',NULL),('default','ASTTROBOC1-01-23a2be05-f7cb-4a42-948e-0db0beeccf63',NULL),('default','ASTTROBOC1-53529373-09b7-47ab-9bf3-e830fff04644',NULL),('default','ASTTROBOC1-d454ca8c-f913-4818-b05a-b2cd80696665',NULL),('default','ASTTROCLA1-01-265e6c89-70a5-4bc9-818c-74eafcfe90b0',NULL),('default','ASTTROCLA1-01-6495d8b0-fe8f-4918-8e92-86e098111d09',NULL),('default','ASTTROCLA1-e9136950-188e-4cf2-aa6b-db0726c37cb0',NULL),('default','ASTTRODEL1-01-291c8c56-b690-43b6-a73c-ef73a984db8d',NULL),('default','ASTTRODEL1-01-9ba7dbd3-4359-4ae2-8a1a-e1950d8819f0',NULL),('default','ASTTRODEL1-134ccbf4-b208-469b-a525-de139413773a',NULL),('default','ASTTROFIL1-01-88f7a7b6-15b1-4f84-b527-0152f7695921',NULL),('default','ASTTROFIL1-01-eababb26-bfdd-4c64-8ae9-74a80ef6d17e',NULL),('default','ASTTROFIL1-7a8ab255-3754-4efd-ac86-fe3c97a6bc76',NULL),('default','ASTTROGOC1-01-2db669b9-fc31-44d6-bc0e-f41d3a40babd',NULL),('default','ASTTROGOC1-01-fb931c66-aebb-4928-a135-da6133f0a775',NULL),('default','ASTTROGOC1-70123b0a-a646-4cd0-9680-cb049c046881',NULL),('default','ASTTRORUS1-01-c03ddf1c-b5c9-409e-a91e-9d327cdb130b',NULL),('default','ASTTRORUS1-01-f0bc8635-b70c-499d-83f6-391c35416a0c',NULL),('default','ASTTRORUS1-5a75f633-b696-40cd-956a-447cb6778e19',NULL),('default','ASTTROSAO1-01-6bfeca5d-5463-4454-8eee-aed0dc5aaf78',NULL),('default','ASTTROSAO1-01-fc20c627-cc5c-4e66-882b-f3e269c1297d',NULL),('default','ASTTROSAO1-2e13a376-d6d4-4d24-9aae-afbeea8df16f',NULL),('default','ASTTROUOV1-01-d32f53e7-cf00-4159-8b98-957794b17abf',NULL),('default','ASTTROUOV1-01-d480bb7b-bc46-4f3b-9759-c63a87d1f888',NULL),('default','ASTTROUOV1-3537ba49-0bc5-4399-a73b-622daedece47',NULL),('default','ISMARZ01-01-ba59e811-cfcb-45c4-80b5-211ad00e5a7d',NULL),('default','ISTNDOC1-01-35f3475c-a276-4cd7-8747-21c9d7cc3dd9',NULL),('default','MELACETO01-0d92fdd2-2e0f-40b9-af41-797ace063291',NULL),('default','MELBASTON01-ca7cb6b8-c1c8-4632-afe3-f94a09d550a3',NULL),('default','MELGLASSA01-f8997fbe-1caf-4ab9-b1a5-02e8ca3469a6',NULL),('default','MELRONDEL01-8c67881f-9f6d-4530-8ad5-5b08ed4cf042',NULL),('default','MEMOUSSE01-01-df8a8f47-946b-41d4-b33c-56c874477155',NULL),('default','MEPCHEME01-9164c4b8-4767-4aae-9410-a32b56ddaa77',NULL),('default','METNSNACK01-51c5d563-b404-433d-ba80-44dbecf6c48e',NULL),('default','primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',NULL),('default','prodottoprova-69e46421-28b0-4595-b964-4a01c8ba83ce',NULL),('default','prodtre-c827c494-3740-4335-8cb5-cae2e10e4c05',NULL),('default','proprova-e221af72-e2e0-4a4c-b8ff-88c9ba40ce10',NULL),('default','PROVAPROD_AG-ee21e1b4-0ab6-4a81-bb4d-82d7c9f35115',NULL),('default','TESTBRANDTERR-2ac1d82a-87e2-4353-a285-f8fa17eb243d',NULL),('default','TESTBRANDTERR-492c7d84-0ac1-4058-9bbb-b2d3f26a925f',NULL),('default','TESTBRANDTERR-4ca6ea38-65a2-44a7-ba39-acddb40ebeb5',NULL),('default','TESTBRANDTERR-7c666f37-55b1-4b8f-a7a9-20ce45871aee',NULL),('default','TESTBRANDTERR-93f1624c-48dd-4ecb-a913-9fb05c9a774c',NULL),('default','TESTBRANDTERR-95c8c04c-67d9-47ae-9857-d8c0f7583a41',NULL),('default','TESTBRANDTERR-c0bf8106-ba20-4269-87f9-39c3e752f114',NULL),('default','TESTBRANDTERR-e890b479-c251-415a-9f57-e710ace612d6',NULL),('default','TESTsssBRANDTERR-29046f2f-8dc5-4a5e-bddd-990af446903a',NULL),('default','TREAFFSAB1-01-2dea09c3-a114-4f27-b926-da0c73c523ab',NULL),('default','TRECAS01-01-fb55354b-3854-48c9-9036-75758240fc1c',NULL),('default','TRECUFAS1-01-f0d1c648-2819-41aa-844a-bc385ca25793',NULL),('default','TREFONCAV1-01-7416cd3a-6e62-4eea-a46e-30177ecbaecc',NULL),('default','TREFORMAE1-01-e0292c3e-da65-4690-896f-34b1de9ed5c0',NULL),('default','TREGRAT1-01-6203ee93-27a1-4fb2-badd-af22e2eb3e58',NULL),('default','TREMEZZ1-01-524f70d4-8e52-480c-88da-cf7cce95342c',NULL),('default','trentingrana-01-b01558e0-efc4-4ea2-904e-76c407ff1409',NULL),('default','trentingrana-02-f92263bb-8e95-4b84-ad74-c49ba2639b18',NULL),('default','TREPRIM1-01-b6afbd76-2036-4d8c-b55e-58034b77cf12',NULL),('default','TREPUZ1-01-8388f523-b0c5-4285-8456-f2d2508bd1bc',NULL),('default','TREVEZ1-01-2232da5e-4d6a-4a9f-be5a-02c57a6f39d5',NULL),('default','Vino Test',NULL),('default','VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4',NULL),('default','vinotest',NULL);
/*!40000 ALTER TABLE `inventory_low_stock_notification_configuration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_order_notification`
--

DROP TABLE IF EXISTS `inventory_order_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_order_notification` (
  `order_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Order ID',
  `notification_sent` smallint(6) NOT NULL COMMENT 'Has Notification Been Sent For Order',
  `send_notification` smallint(6) NOT NULL COMMENT 'Should Notification Be Send For Order',
  PRIMARY KEY (`order_id`),
  CONSTRAINT `INVENTORY_ORDER_NOTIFICATION_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_order_notification`
--

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

--
-- Table structure for table `inventory_pickup_location_order`
--

DROP TABLE IF EXISTS `inventory_pickup_location_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_pickup_location_order` (
  `order_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Order ID',
  `pickup_location_code` varchar(255) NOT NULL COMMENT 'Pickup Location Code',
  PRIMARY KEY (`order_id`),
  CONSTRAINT `INVENTORY_PICKUP_LOCATION_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_pickup_location_order`
--

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

--
-- Table structure for table `inventory_pickup_location_quote_address`
--

DROP TABLE IF EXISTS `inventory_pickup_location_quote_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_pickup_location_quote_address` (
  `address_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Quote Address ID',
  `pickup_location_code` varchar(255) NOT NULL COMMENT 'Pickup Location Code',
  PRIMARY KEY (`address_id`),
  CONSTRAINT `INV_PICKUP_LOCATION_QUOTE_ADDR_ADDR_ID_QUOTE_ADDR_ADDR_ID` FOREIGN KEY (`address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_pickup_location_quote_address`
--

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

--
-- Table structure for table `inventory_reservation`
--

DROP TABLE IF EXISTS `inventory_reservation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_reservation` (
  `reservation_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `stock_id` int(10) unsigned NOT NULL,
  `sku` varchar(64) NOT NULL,
  `quantity` decimal(10,4) NOT NULL DEFAULT 0.0000,
  `metadata` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`reservation_id`),
  KEY `INVENTORY_RESERVATION_STOCK_ID_SKU_QUANTITY` (`stock_id`,`sku`,`quantity`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_reservation`
--

LOCK TABLES `inventory_reservation` WRITE;
/*!40000 ALTER TABLE `inventory_reservation` DISABLE KEYS */;
INSERT INTO `inventory_reservation` VALUES (1,1,'Vino Test',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000001\"}'),(2,1,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000002\"}'),(3,1,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',-2.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000003\"}'),(4,1,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000004\"}'),(5,1,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000005\"}'),(6,1,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',-2.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000006\"}'),(7,1,'12345678-0aa9916d-2da6-433b-8d0a-127cda4606c8',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000007\"}'),(8,1,'VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000008\"}'),(9,1,'VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4',-1.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000009\"}'),(10,1,'VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4',-2.0000,'{\"event_type\":\"order_placed\",\"object_type\":\"order\",\"object_id\":\"\",\"object_increment_id\":\"000000010\"}');
/*!40000 ALTER TABLE `inventory_reservation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_shipment_source`
--

DROP TABLE IF EXISTS `inventory_shipment_source`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_shipment_source` (
  `shipment_id` int(10) unsigned NOT NULL,
  `source_code` varchar(255) NOT NULL,
  PRIMARY KEY (`shipment_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_shipment_source`
--

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

--
-- Table structure for table `inventory_source`
--

DROP TABLE IF EXISTS `inventory_source`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_source` (
  `source_code` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `enabled` smallint(5) unsigned NOT NULL DEFAULT 1,
  `description` text DEFAULT NULL,
  `latitude` decimal(8,6) DEFAULT NULL,
  `longitude` decimal(9,6) DEFAULT NULL,
  `country_id` varchar(2) NOT NULL,
  `region_id` int(10) unsigned DEFAULT NULL,
  `region` varchar(255) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `street` varchar(255) DEFAULT NULL,
  `postcode` varchar(255) NOT NULL,
  `contact_name` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `use_default_carrier_config` smallint(5) unsigned NOT NULL DEFAULT 1,
  `is_pickup_location_active` tinyint(1) NOT NULL DEFAULT 0,
  `frontend_name` varchar(255) DEFAULT '',
  `frontend_description` text DEFAULT NULL,
  PRIMARY KEY (`source_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source`
--

LOCK TABLES `inventory_source` WRITE;
/*!40000 ALTER TABLE `inventory_source` DISABLE KEYS */;
INSERT INTO `inventory_source` VALUES ('default','Default Source',1,'Default Source',0.000000,0.000000,'US',NULL,NULL,NULL,NULL,'00000',NULL,NULL,NULL,NULL,1,0,'',NULL);
/*!40000 ALTER TABLE `inventory_source` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_source_carrier_link`
--

DROP TABLE IF EXISTS `inventory_source_carrier_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_source_carrier_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `source_code` varchar(255) NOT NULL,
  `carrier_code` varchar(255) NOT NULL,
  `position` smallint(5) unsigned DEFAULT NULL,
  PRIMARY KEY (`link_id`),
  KEY `INV_SOURCE_CARRIER_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` (`source_code`),
  CONSTRAINT `INV_SOURCE_CARRIER_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source_carrier_link`
--

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

--
-- Table structure for table `inventory_source_item`
--

DROP TABLE IF EXISTS `inventory_source_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_source_item` (
  `source_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `source_code` varchar(255) NOT NULL,
  `sku` varchar(64) NOT NULL,
  `quantity` decimal(12,4) NOT NULL DEFAULT 0.0000,
  `status` smallint(5) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`source_item_id`),
  UNIQUE KEY `INVENTORY_SOURCE_ITEM_SOURCE_CODE_SKU` (`source_code`,`sku`),
  KEY `INVENTORY_SOURCE_ITEM_SKU_SOURCE_CODE_QUANTITY` (`sku`,`source_code`,`quantity`),
  CONSTRAINT `INVENTORY_SOURCE_ITEM_SOURCE_CODE_INVENTORY_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=351 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source_item`
--

LOCK TABLES `inventory_source_item` WRITE;
/*!40000 ALTER TABLE `inventory_source_item` DISABLE KEYS */;
INSERT INTO `inventory_source_item` VALUES (1,'default','Vino Test',1000.0000,1),(7,'default','primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324',9.0000,1),(9,'default','vinotest',1000.0000,1),(11,'default','prodottoprova-69e46421-28b0-4595-b964-4a01c8ba83ce',10.0000,1),(14,'default','12345678-0aa9916d-2da6-433b-8d0a-127cda4606c8',4.0000,1),(31,'default','345-d3efefbb-3ac4-4d65-9f1b-83e4d5f39fc0',10.0000,0),(48,'default','1243-e576e3bc-7778-4171-870f-aae102120d2d',0.0000,1),(51,'default','MEMOUSSE01-01-df8a8f47-946b-41d4-b33c-56c874477155',0.0000,0),(59,'default','VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4',14.0000,1),(62,'default','MELRONDEL01-8c67881f-9f6d-4530-8ad5-5b08ed4cf042',0.0000,0),(63,'default','MELBASTON01-ca7cb6b8-c1c8-4632-afe3-f94a09d550a3',0.0000,0),(65,'default','MELGLASSA01-f8997fbe-1caf-4ab9-b1a5-02e8ca3469a6',0.0000,0),(66,'default','MELACETO01-0d92fdd2-2e0f-40b9-af41-797ace063291',0.0000,0),(67,'default','MEPCHEME01-9164c4b8-4767-4aae-9410-a32b56ddaa77',0.0000,0),(68,'default','METNSNACK01-51c5d563-b404-433d-ba80-44dbecf6c48e',0.0000,0),(95,'default','ASTTROBOC1-d454ca8c-f913-4818-b05a-b2cd80696665',0.0000,1),(111,'default','ASTTROBOC1-53529373-09b7-47ab-9bf3-e830fff04644',0.0000,1),(112,'default','ASTSALBOC1-e70bdd92-9ef9-47b7-8eaf-791c41f4d83d',0.0000,1),(113,'default','ASTTROSAO1-2e13a376-d6d4-4d24-9aae-afbeea8df16f',0.0000,1),(114,'default','ASTTROFIL1-7a8ab255-3754-4efd-ac86-fe3c97a6bc76',0.0000,1),(115,'default','ASTTROUOV1-3537ba49-0bc5-4399-a73b-622daedece47',0.0000,1),(116,'default','ASTTROGOC1-70123b0a-a646-4cd0-9680-cb049c046881',0.0000,1),(117,'default','ASTTRODEL1-134ccbf4-b208-469b-a525-de139413773a',0.0000,1),(118,'default','ASTTROCLA1-e9136950-188e-4cf2-aa6b-db0726c37cb0',0.0000,1),(119,'default','ASTTRORUS1-5a75f633-b696-40cd-956a-447cb6778e19',0.0000,1),(120,'default','ASTTROAFF1-555f8b4b-b6f0-4f15-a558-984b68e0eb99',0.0000,1),(121,'default','ASTSALALP1-7d599e13-0abe-4fba-8452-b4ddc37dde6b',0.0000,1),(125,'default','TESTBRANDTERR-95c8c04c-67d9-47ae-9857-d8c0f7583a41',0.0000,1),(126,'default','TESTBRANDTERR-e890b479-c251-415a-9f57-e710ace612d6',0.0000,0),(129,'default','TESTBRANDTERR-93f1624c-48dd-4ecb-a913-9fb05c9a774c',0.0000,1),(130,'default','TESTBRANDTERR-4ca6ea38-65a2-44a7-ba39-acddb40ebeb5',0.0000,1),(131,'default','trentingrana-01-b01558e0-efc4-4ea2-904e-76c407ff1409',0.0000,1),(133,'default','TESTBRANDTERR-7c666f37-55b1-4b8f-a7a9-20ce45871aee',0.0000,1),(134,'default','trentingrana-02-f92263bb-8e95-4b84-ad74-c49ba2639b18',0.0000,1),(135,'default','TREGRAT1-01-6203ee93-27a1-4fb2-badd-af22e2eb3e58',0.0000,1),(136,'default','TREPUZ1-01-8388f523-b0c5-4285-8456-f2d2508bd1bc',0.0000,1),(137,'default','TREAFFSAB1-01-2dea09c3-a114-4f27-b926-da0c73c523ab',0.0000,1),(138,'default','TREFONCAV1-01-7416cd3a-6e62-4eea-a46e-30177ecbaecc',0.0000,1),(139,'default','TREMEZZ1-01-524f70d4-8e52-480c-88da-cf7cce95342c',0.0000,1),(140,'default','TREVEZ1-01-2232da5e-4d6a-4a9f-be5a-02c57a6f39d5',0.0000,1),(141,'default','TRECUFAS1-01-f0d1c648-2819-41aa-844a-bc385ca25793',0.0000,1),(142,'default','TREPRIM1-01-b6afbd76-2036-4d8c-b55e-58034b77cf12',0.0000,1),(143,'default','TRECAS01-01-fb55354b-3854-48c9-9036-75758240fc1c',0.0000,1),(144,'default','TREFORMAE1-01-e0292c3e-da65-4690-896f-34b1de9ed5c0',0.0000,1),(145,'default','4A01020001-01-ff67a23f-72cd-494e-bc5c-8273a5fd9d8b',0.0000,1),(182,'default','TESTBRANDTERR-492c7d84-0ac1-4058-9bbb-b2d3f26a925f',0.0000,1),(194,'default','4A01020001-01-73960eeb-46b1-4432-81a5-fc76017aafeb',0.0000,0),(195,'default','4A01020003-01-63bf73f3-c8ff-4527-8e81-1790df1cff14',0.0000,0),(196,'default','4A01020006-01-01aa69c9-4ba1-4842-9016-d85481eb99ad',0.0000,0),(197,'default','4A01020010-01-144185b5-2973-47ec-a1b7-381848bf1ba6',0.0000,0),(198,'default','4A01020011-01-ceb499ab-3fbf-476b-9bf3-fb218cc5ac6b',0.0000,0),(199,'default','4A01020034-01-9d9eff29-58e4-49ce-858a-f1ef237bcfc9',0.0000,0),(200,'default','4A01020035-01-7f6c6f69-aee4-4ff2-9b04-8ea39b88244f',0.0000,0),(201,'default','4A01020038-01-dae98d55-4ea4-4d30-ad7a-87e4dcb8d8a9',0.0000,0),(202,'default','4A01020039-01-2f80a03c-0f63-478e-a4c4-95278e378d36',0.0000,0),(203,'default','4A01020041-01-a1848f3e-f504-4c48-bedd-d88ed8f13a82',0.0000,0),(204,'default','4A04030006-01-6ecdb1a9-1031-4198-882c-c069b2a5ee71',0.0000,0),(205,'default','4A04030010-01-c7528cb5-5b59-4673-bacc-e31d786de5d2',0.0000,1),(206,'default','4A04030011-01-91f05f81-d759-49bc-abf3-e8ccef69925b',0.0000,0),(207,'default','4A05081006-01-d02b2f19-97c6-45df-bd8f-c0f011ab97a2',0.0000,0),(208,'default','4A05081008-01-fffed57b-a87b-4bcb-b81e-aac6bcfdf686',0.0000,0),(209,'default','4A05081009-01-78104831-67af-4161-82ab-03d986cebfdb',0.0000,0),(210,'default','4A09050007-01-24fece10-d99c-4076-a6fc-a596293f7767',0.0000,0),(211,'default','4A09050008-01-c0c9a963-2ecb-4cfa-b454-f40adb373a58',0.0000,0),(212,'default','4A09050009-01-21dbbd80-7128-4c49-861e-63eb94eba93d',0.0000,0),(213,'default','4A09050010-01-21f97a2a-433a-4c69-92ec-73e1572f433b',0.0000,0),(214,'default','4A10050010-01-5c4b3c5b-fb1e-4580-b7cd-33d9e6d371be',0.0000,0),(215,'default','4A10050011-01-bfda8f30-ebba-4dc1-b2e1-4f574741f435',0.0000,0),(216,'default','4A07010001-01-0cd52c02-05d8-4afd-82e3-2aae18e23c0e',0.0000,1),(217,'default','4A07010006-01-c5189c99-18d8-4d30-94db-ef7bbefa4d82',0.0000,0),(218,'default','ASTTROBOC1-01-23a2be05-f7cb-4a42-948e-0db0beeccf63',0.0000,1),(221,'default','TESTBRANDTERR-2ac1d82a-87e2-4353-a285-f8fa17eb243d',0.0000,0),(224,'default','ASTSALBOC1-01-dd8602ca-c3ef-401c-81cb-e53b37084c7d',0.0000,1),(225,'default','ASTTROSAO1-01-6bfeca5d-5463-4454-8eee-aed0dc5aaf78',0.0000,1),(226,'default','ASTTROFIL1-01-88f7a7b6-15b1-4f84-b527-0152f7695921',0.0000,1),(227,'default','ASTTROUOV1-01-d480bb7b-bc46-4f3b-9759-c63a87d1f888',0.0000,1),(228,'default','ASTTROGOC1-01-fb931c66-aebb-4928-a135-da6133f0a775',0.0000,1),(229,'default','ASTTRODEL1-01-291c8c56-b690-43b6-a73c-ef73a984db8d',0.0000,1),(230,'default','ASTTROCLA1-01-6495d8b0-fe8f-4918-8e92-86e098111d09',0.0000,1),(231,'default','ASTTRORUS1-01-c03ddf1c-b5c9-409e-a91e-9d327cdb130b',0.0000,1),(232,'default','ASTTROAFF1-01-538214d8-7777-4fdf-8c6d-e5e6b565c8e1',0.0000,1),(233,'default','ASTSALALP1-01-07d59c7e-d2d7-4136-b471-5010889a3d8a',0.0000,1),(256,'default','ASTSALBOC1-01-90a3fa2f-344f-4a44-948e-6d159cfa0e60',0.0000,1),(257,'default','ASTTROSAO1-01-fc20c627-cc5c-4e66-882b-f3e269c1297d',0.0000,1),(258,'default','ASTTROFIL1-01-eababb26-bfdd-4c64-8ae9-74a80ef6d17e',0.0000,1),(259,'default','ASTTROUOV1-01-d32f53e7-cf00-4159-8b98-957794b17abf',0.0000,0),(260,'default','ASTTROGOC1-01-2db669b9-fc31-44d6-bc0e-f41d3a40babd',0.0000,1),(261,'default','ASTTRODEL1-01-9ba7dbd3-4359-4ae2-8a1a-e1950d8819f0',0.0000,0),(262,'default','ASTTROCLA1-01-265e6c89-70a5-4bc9-818c-74eafcfe90b0',0.0000,0),(263,'default','ASTTRORUS1-01-f0bc8635-b70c-499d-83f6-391c35416a0c',0.0000,0),(264,'default','ASTTROAFF1-01-00e827ce-e840-4c5f-ac4b-f5424df80712',0.0000,0),(265,'default','ASTSALALP1-01-ba67c4b1-f11a-4a6f-af04-8de30359b688',0.0000,1),(266,'default','ASTTROBOC1-01-0a3b35e2-18a2-4e97-a39c-26aab32569ad',0.0000,1),(277,'default','ISMARZ01-01-ba59e811-cfcb-45c4-80b5-211ad00e5a7d',0.0000,1),(278,'default','ISTNDOC1-01-35f3475c-a276-4cd7-8747-21c9d7cc3dd9',0.0000,1),(339,'default','TESTBRANDTERR-c0bf8106-ba20-4269-87f9-39c3e752f114',0.0000,1),(340,'default','TESTsssBRANDTERR-29046f2f-8dc5-4a5e-bddd-990af446903a',0.0000,1),(344,'default','PROVAPROD_AG-ee21e1b4-0ab6-4a81-bb4d-82d7c9f35115',0.0000,0),(346,'default','proprova-e221af72-e2e0-4a4c-b8ff-88c9ba40ce10',0.0000,0),(348,'default','prodtre-c827c494-3740-4335-8cb5-cae2e10e4c05',0.0000,0);
/*!40000 ALTER TABLE `inventory_source_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `inventory_source_stock_link`
--

DROP TABLE IF EXISTS `inventory_source_stock_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_source_stock_link` (
  `link_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `stock_id` int(10) unsigned NOT NULL,
  `source_code` varchar(255) NOT NULL,
  `priority` smallint(5) unsigned NOT NULL,
  PRIMARY KEY (`link_id`),
  UNIQUE KEY `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_SOURCE_CODE` (`stock_id`,`source_code`),
  KEY `INV_SOURCE_STOCK_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` (`source_code`),
  KEY `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_PRIORITY` (`stock_id`,`priority`),
  CONSTRAINT `INVENTORY_SOURCE_STOCK_LINK_STOCK_ID_INVENTORY_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `inventory_stock` (`stock_id`) ON DELETE CASCADE,
  CONSTRAINT `INV_SOURCE_STOCK_LNK_SOURCE_CODE_INV_SOURCE_SOURCE_CODE` FOREIGN KEY (`source_code`) REFERENCES `inventory_source` (`source_code`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_source_stock_link`
--

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

--
-- Table structure for table `inventory_stock`
--

DROP TABLE IF EXISTS `inventory_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_stock` (
  `stock_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  PRIMARY KEY (`stock_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_stock`
--

LOCK TABLES `inventory_stock` WRITE;
/*!40000 ALTER TABLE `inventory_stock` DISABLE KEYS */;
INSERT INTO `inventory_stock` VALUES (1,'Default Stock');
/*!40000 ALTER TABLE `inventory_stock` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Temporary table structure for view `inventory_stock_1`
--

DROP TABLE IF EXISTS `inventory_stock_1`;
/*!50001 DROP VIEW IF EXISTS `inventory_stock_1`*/;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
/*!50001 CREATE TABLE `inventory_stock_1` (
  `product_id` tinyint NOT NULL,
  `website_id` tinyint NOT NULL,
  `stock_id` tinyint NOT NULL,
  `quantity` tinyint NOT NULL,
  `is_salable` tinyint NOT NULL,
  `sku` tinyint NOT NULL
) ENGINE=MyISAM */;
SET character_set_client = @saved_cs_client;

--
-- Table structure for table `inventory_stock_sales_channel`
--

DROP TABLE IF EXISTS `inventory_stock_sales_channel`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `inventory_stock_sales_channel` (
  `type` varchar(64) NOT NULL,
  `code` varchar(64) NOT NULL,
  `stock_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`type`,`code`),
  KEY `INVENTORY_STOCK_SALES_CHANNEL_STOCK_ID_INVENTORY_STOCK_STOCK_ID` (`stock_id`),
  CONSTRAINT `INVENTORY_STOCK_SALES_CHANNEL_STOCK_ID_INVENTORY_STOCK_STOCK_ID` FOREIGN KEY (`stock_id`) REFERENCES `inventory_stock` (`stock_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `inventory_stock_sales_channel`
--

LOCK TABLES `inventory_stock_sales_channel` WRITE;
/*!40000 ALTER TABLE `inventory_stock_sales_channel` DISABLE KEYS */;
INSERT INTO `inventory_stock_sales_channel` VALUES ('website','base',1);
/*!40000 ALTER TABLE `inventory_stock_sales_channel` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jwt_auth_revoked`
--

DROP TABLE IF EXISTS `jwt_auth_revoked`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jwt_auth_revoked` (
  `user_type_id` int(10) unsigned NOT NULL COMMENT 'User Type ID',
  `user_id` int(10) unsigned NOT NULL COMMENT 'User ID',
  `revoke_before` bigint(20) unsigned NOT NULL COMMENT 'Not accepting tokens issued before this timestamp',
  PRIMARY KEY (`user_type_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Holds revoked JWT authentication data';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jwt_auth_revoked`
--

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

--
-- Table structure for table `layout_link`
--

DROP TABLE IF EXISTS `layout_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `layout_link` (
  `layout_link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Link ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme ID',
  `layout_update_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Layout Update ID',
  `is_temporary` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Defines whether Layout Update is Temporary',
  PRIMARY KEY (`layout_link_id`),
  KEY `LAYOUT_LINK_THEME_ID_THEME_THEME_ID` (`theme_id`),
  KEY `LAYOUT_LINK_LAYOUT_UPDATE_ID` (`layout_update_id`),
  KEY `LAYOUT_LINK_STORE_ID_THEME_ID_LAYOUT_UPDATE_ID_IS_TEMPORARY` (`store_id`,`theme_id`,`layout_update_id`,`is_temporary`),
  CONSTRAINT `LAYOUT_LINK_LAYOUT_UPDATE_ID_LAYOUT_UPDATE_LAYOUT_UPDATE_ID` FOREIGN KEY (`layout_update_id`) REFERENCES `layout_update` (`layout_update_id`) ON DELETE CASCADE,
  CONSTRAINT `LAYOUT_LINK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `LAYOUT_LINK_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `layout_link`
--

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

--
-- Table structure for table `layout_update`
--

DROP TABLE IF EXISTS `layout_update`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `layout_update` (
  `layout_update_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Layout Update ID',
  `handle` varchar(255) DEFAULT NULL COMMENT 'Handle',
  `xml` text DEFAULT NULL COMMENT 'Xml',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `updated_at` timestamp NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE current_timestamp() COMMENT 'Last Update Timestamp',
  PRIMARY KEY (`layout_update_id`),
  KEY `LAYOUT_UPDATE_HANDLE` (`handle`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout Updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `layout_update`
--

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

--
-- Table structure for table `login_as_customer`
--

DROP TABLE IF EXISTS `login_as_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `login_as_customer` (
  `secret` varchar(64) NOT NULL COMMENT 'Login Secret',
  `customer_id` int(11) NOT NULL COMMENT 'Customer ID',
  `admin_id` int(11) NOT NULL COMMENT 'Admin ID',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Creation Time',
  PRIMARY KEY (`secret`),
  KEY `LOGIN_AS_CUSTOMER_CREATED_AT` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Magento Login as Customer Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `login_as_customer`
--

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

--
-- Table structure for table `login_as_customer_assistance_allowed`
--

DROP TABLE IF EXISTS `login_as_customer_assistance_allowed`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `login_as_customer_assistance_allowed` (
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID',
  PRIMARY KEY (`customer_id`),
  CONSTRAINT `LOGIN_AS_CSTR_ASSISTANCE_ALLOWED_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Magento Login as Customer Assistance Allowed Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `login_as_customer_assistance_allowed`
--

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

--
-- Table structure for table `magento_acknowledged_bulk`
--

DROP TABLE IF EXISTS `magento_acknowledged_bulk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `magento_acknowledged_bulk` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Internal ID',
  `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID',
  PRIMARY KEY (`id`),
  UNIQUE KEY `MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID` (`bulk_uuid`),
  CONSTRAINT `MAGENTO_ACKNOWLEDGED_BULK_BULK_UUID_MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `magento_bulk` (`uuid`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bulk that was viewed by user from notification area';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `magento_acknowledged_bulk`
--

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

--
-- Table structure for table `magento_bulk`
--

DROP TABLE IF EXISTS `magento_bulk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `magento_bulk` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Bulk Internal ID (must not be exposed)',
  `uuid` varbinary(39) DEFAULT NULL COMMENT 'Bulk UUID (can be exposed to reference bulk entity)',
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'ID of the WebAPI user that performed an action',
  `user_type` int(11) DEFAULT NULL COMMENT 'Which type of user',
  `description` varchar(255) DEFAULT NULL COMMENT 'Bulk Description',
  `operation_count` int(10) unsigned NOT NULL COMMENT 'Total number of operations scheduled within this bulk',
  `start_time` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Bulk start time',
  PRIMARY KEY (`id`),
  UNIQUE KEY `MAGENTO_BULK_UUID` (`uuid`),
  KEY `MAGENTO_BULK_USER_ID` (`user_id`),
  KEY `MAGENTO_BULK_START_TIME` (`start_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Bulk entity that represents set of related asynchronous operations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `magento_bulk`
--

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

--
-- Table structure for table `magento_login_as_customer_log`
--

DROP TABLE IF EXISTS `magento_login_as_customer_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `magento_login_as_customer_log` (
  `log_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Log Id',
  `time` timestamp NULL DEFAULT NULL COMMENT 'Event Date',
  `user_id` int(10) unsigned DEFAULT NULL COMMENT 'User Id',
  `user_name` varchar(40) DEFAULT NULL COMMENT 'User Name',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Id',
  `customer_email` varchar(40) DEFAULT NULL COMMENT 'Customer email',
  PRIMARY KEY (`log_id`),
  KEY `MAGENTO_LOGIN_AS_CUSTOMER_LOG_USER_ID` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Login as Customer Logging';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `magento_login_as_customer_log`
--

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

--
-- Table structure for table `magento_operation`
--

DROP TABLE IF EXISTS `magento_operation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `magento_operation` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Operation ID',
  `operation_key` int(10) unsigned DEFAULT NULL COMMENT 'Operation Key',
  `bulk_uuid` varbinary(39) DEFAULT NULL COMMENT 'Related Bulk UUID',
  `topic_name` varchar(255) DEFAULT NULL COMMENT 'Name of the related message queue topic',
  `serialized_data` blob DEFAULT NULL COMMENT 'Data (serialized) required to perform an operation',
  `result_serialized_data` blob DEFAULT NULL COMMENT 'Result data (serialized) after perform an operation',
  `status` smallint(6) DEFAULT 0 COMMENT 'Operation status (OPEN | COMPLETE | RETRIABLY_FAILED | NOT_RETRIABLY_FAILED)',
  `error_code` smallint(6) DEFAULT NULL COMMENT 'Code of the error that appeared during operation execution (used to aggregate related failed operations)',
  `result_message` varchar(255) DEFAULT NULL COMMENT 'Operation result message',
  `started_at` timestamp NULL DEFAULT NULL COMMENT 'Datetime the operation started processing',
  PRIMARY KEY (`id`),
  KEY `MAGENTO_OPERATION_BULK_UUID_ERROR_CODE` (`bulk_uuid`,`error_code`),
  KEY `MAGENTO_OPERATION_STATUS_STARTED_AT` (`status`,`started_at`),
  CONSTRAINT `MAGENTO_OPERATION_BULK_UUID_MAGENTO_BULK_UUID` FOREIGN KEY (`bulk_uuid`) REFERENCES `magento_bulk` (`uuid`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Operation entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `magento_operation`
--

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

--
-- Table structure for table `mageplaza_blog_author`
--

DROP TABLE IF EXISTS `mageplaza_blog_author`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_author` (
  `user_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Author ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Display Name',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Author URL Key',
  `email` text DEFAULT '' COMMENT 'Author email',
  `customer_id` int(10) unsigned DEFAULT 0 COMMENT 'Customer ID',
  `type` int(10) unsigned DEFAULT 0 COMMENT 'Author Type',
  `status` int(10) unsigned DEFAULT 0 COMMENT 'Author Status',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Author Updated At',
  `created_at` timestamp NULL DEFAULT current_timestamp() COMMENT 'Author Created At',
  `image` varchar(255) DEFAULT NULL COMMENT 'Author Image',
  `short_description` text DEFAULT NULL COMMENT 'Author Short Description',
  `facebook_link` varchar(255) DEFAULT NULL COMMENT 'Facebook Link',
  `twitter_link` varchar(255) DEFAULT NULL COMMENT 'Twitter Link',
  PRIMARY KEY (`user_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_AUTHOR_USER_ID` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Author Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_author`
--

LOCK TABLES `mageplaza_blog_author` WRITE;
/*!40000 ALTER TABLE `mageplaza_blog_author` DISABLE KEYS */;
INSERT INTO `mageplaza_blog_author` VALUES (1,'Admin','admin','',0,0,1,NULL,'2022-08-22 13:22:59',NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `mageplaza_blog_author` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mageplaza_blog_category`
--

DROP TABLE IF EXISTS `mageplaza_blog_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_category` (
  `category_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Category ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Category Name',
  `description` text DEFAULT NULL COMMENT 'Category Description',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Category URL Key',
  `enabled` int(11) DEFAULT NULL COMMENT 'Category Enabled',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Category Meta Title',
  `meta_description` text DEFAULT NULL COMMENT 'Category Meta Description',
  `meta_keywords` text DEFAULT NULL COMMENT 'Category Meta Keywords',
  `meta_robots` text DEFAULT NULL,
  `parent_id` int(11) DEFAULT NULL COMMENT 'Category Parent Id',
  `path` varchar(255) DEFAULT NULL COMMENT 'Category Path',
  `position` int(11) DEFAULT NULL COMMENT 'Category Position',
  `level` int(11) DEFAULT NULL COMMENT 'Category Level',
  `children_count` int(11) DEFAULT NULL COMMENT 'Category Children Count',
  `updated_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  PRIMARY KEY (`category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Category Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_category`
--

LOCK TABLES `mageplaza_blog_category` WRITE;
/*!40000 ALTER TABLE `mageplaza_blog_category` DISABLE KEYS */;
INSERT INTO `mageplaza_blog_category` VALUES (1,'ROOT',NULL,'','root',NULL,NULL,NULL,NULL,NULL,NULL,'1',0,0,0,NULL,NULL,NULL),(2,'ROOT',NULL,'','root',NULL,NULL,NULL,NULL,NULL,NULL,'1',0,0,0,NULL,NULL,NULL),(3,'ROOT',NULL,'','root',NULL,NULL,NULL,NULL,NULL,NULL,'1',0,0,0,NULL,NULL,NULL);
/*!40000 ALTER TABLE `mageplaza_blog_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mageplaza_blog_comment`
--

DROP TABLE IF EXISTS `mageplaza_blog_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_comment` (
  `comment_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Comment ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'User Comment ID',
  `has_reply` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Comment has reply',
  `is_reply` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is reply comment',
  `reply_id` int(10) unsigned DEFAULT 0 COMMENT 'Reply ID',
  `content` text DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `status` smallint(5) unsigned NOT NULL DEFAULT 3 COMMENT 'Status',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `user_name` text DEFAULT NULL COMMENT 'User Name',
  `user_email` text DEFAULT NULL COMMENT 'User Email',
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  PRIMARY KEY (`comment_id`),
  KEY `MAGEPLAZA_BLOG_COMMENT_COMMENT_ID` (`comment_id`),
  KEY `MAGEPLAZA_BLOG_COMMENT_ENTITY_ID` (`entity_id`),
  KEY `MAGEPLAZA_BLOG_COMMENT_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` (`post_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_COMMENT_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mageplaza_blog_comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_comment`
--

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

--
-- Table structure for table `mageplaza_blog_comment_like`
--

DROP TABLE IF EXISTS `mageplaza_blog_comment_like`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_comment_like` (
  `like_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Like ID',
  `comment_id` int(10) unsigned NOT NULL COMMENT 'Comment ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'User Like ID',
  PRIMARY KEY (`like_id`),
  KEY `MAGEPLAZA_BLOG_COMMENT_LIKE_LIKE_ID` (`like_id`),
  KEY `FK_1AA6C994694449283752B6F4C2373B42` (`comment_id`),
  KEY `MAGEPLAZA_BLOG_COMMENT_LIKE_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` (`entity_id`),
  CONSTRAINT `FK_1AA6C994694449283752B6F4C2373B42` FOREIGN KEY (`comment_id`) REFERENCES `mageplaza_blog_comment` (`comment_id`) ON DELETE CASCADE,
  CONSTRAINT `MAGEPLAZA_BLOG_COMMENT_LIKE_ENTITY_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mageplaza_blog_comment_like';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_comment_like`
--

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

--
-- Table structure for table `mageplaza_blog_post`
--

DROP TABLE IF EXISTS `mageplaza_blog_post`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_post` (
  `post_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Post ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Post Name',
  `short_description` text DEFAULT NULL COMMENT 'Post Short Description',
  `post_content` text DEFAULT NULL COMMENT 'Post Content',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `image` varchar(255) DEFAULT NULL COMMENT 'Post Image',
  `views` int(11) DEFAULT NULL COMMENT 'Post Views',
  `enabled` int(11) DEFAULT NULL COMMENT 'Post Enabled',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Post URL Key',
  `in_rss` int(11) DEFAULT NULL COMMENT 'Post In RSS',
  `allow_comment` int(11) DEFAULT NULL COMMENT 'Post Allow Comment',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Post Meta Title',
  `meta_description` text DEFAULT NULL COMMENT 'Post Meta Description',
  `meta_keywords` text DEFAULT NULL COMMENT 'Post Meta Keywords',
  `meta_robots` text DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `author_id` int(10) unsigned DEFAULT NULL COMMENT 'Author ID',
  `modifier_id` int(10) unsigned DEFAULT NULL COMMENT 'Modifier ID',
  `publish_date` timestamp NULL DEFAULT NULL,
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  `layout` text DEFAULT NULL COMMENT 'Post Layout',
  PRIMARY KEY (`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_AUTHOR_ID_MAGEPLAZA_BLOG_AUTHOR_USER_ID` (`author_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_AUTHOR_ID_MAGEPLAZA_BLOG_AUTHOR_USER_ID` FOREIGN KEY (`author_id`) REFERENCES `mageplaza_blog_author` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Post Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post`
--

LOCK TABLES `mageplaza_blog_post` WRITE;
/*!40000 ALTER TABLE `mageplaza_blog_post` DISABLE KEYS */;
INSERT INTO `mageplaza_blog_post` VALUES (1,'La magia dei mercatini di Natale in Trentino','Il tempo dell’Avvento in Trentino fa rima con Mercatini di Natale. Da fine novembre fino all’Epifania, infatti, molte località del Trentino si animano di tradizione e magia ospitando i tradizionali mercatini di Natale. Luoghi magici, da vivere in tutto il loro fascino, in cui scoprire artigianato locale, prodotti tipici dell’enogastronomia locale, tradizione alpina e contadina. Di seguito una nostra selezione.','<p>Fino al 9 gennaio 2022, il Mercatino di Natale di Trento regala magiche atmosfere di festa. Le tante casette di legno presenti in piazza Fiera e piazza Cesare Battisti, regalano un <strong>magico percorso nel centro storico cittadino</strong>, tra luci, profumi, colori, sapori.</p>\r\n<p>Tra le decine di casette, è possibile scoprire creazioni dell’<strong>artigianato locale</strong>, <strong>prodotti tipici</strong>, e riscaldarsi degustando del vin brûlé o del sidro di mele caldo. Tutte le informazioni e il programma dei tanti appuntamenti sono disponibili qui.</p>','0',NULL,NULL,1,'la-magia-dei-mercatini-di-natale-in-trentino',0,1,NULL,NULL,NULL,'INDEX,FOLLOW','2022-08-22 14:53:11','2022-08-22 14:53:11',1,1,'2022-08-22 14:53:11',NULL,'empty');
/*!40000 ALTER TABLE `mageplaza_blog_post` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mageplaza_blog_post_category`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_post_category` (
  `category_id` int(10) unsigned NOT NULL COMMENT 'Category ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  PRIMARY KEY (`category_id`,`post_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_POST_CATEGORY_CATEGORY_ID_POST_ID` (`category_id`,`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_CATEGORY_CATEGORY_ID` (`category_id`),
  KEY `MAGEPLAZA_BLOG_POST_CATEGORY_POST_ID` (`post_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_CATEGORY_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE,
  CONSTRAINT `MAGEPLAZA_BLOG_POST_CTGR_CTGR_ID_MAGEPLAZA_BLOG_CTGR_CTGR_ID` FOREIGN KEY (`category_id`) REFERENCES `mageplaza_blog_category` (`category_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Category To Post Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_category`
--

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

--
-- Table structure for table `mageplaza_blog_post_history`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_post_history` (
  `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'History ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Post Name',
  `short_description` text DEFAULT NULL COMMENT 'Post Short Description',
  `post_content` text DEFAULT NULL COMMENT 'Post Content',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `image` varchar(255) DEFAULT NULL COMMENT 'Post Image',
  `views` int(11) DEFAULT NULL COMMENT 'Post Views',
  `enabled` int(11) DEFAULT NULL COMMENT 'Post Enabled',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Post URL Key',
  `in_rss` int(11) DEFAULT NULL COMMENT 'Post In RSS',
  `allow_comment` int(11) DEFAULT NULL COMMENT 'Post Allow Comment',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Post Meta Title',
  `meta_description` text DEFAULT NULL COMMENT 'Post Meta Description',
  `meta_keywords` text DEFAULT NULL COMMENT 'Post Meta Keywords',
  `meta_robots` text DEFAULT NULL COMMENT 'Post Meta Robots',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Post Updated At',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Post Created At',
  `author_id` int(10) unsigned NOT NULL COMMENT 'Author ID',
  `modifier_id` int(10) unsigned NOT NULL COMMENT 'Modifier ID',
  `publish_date` timestamp NULL DEFAULT NULL COMMENT 'Publish Date',
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  `layout` text DEFAULT NULL COMMENT 'Post Layout',
  `category_ids` varchar(255) DEFAULT NULL COMMENT 'Post Category Id',
  `tag_ids` varchar(255) DEFAULT NULL COMMENT 'Post Tag Id',
  `topic_ids` varchar(255) DEFAULT NULL COMMENT 'Post Topic Id',
  `product_ids` text DEFAULT NULL COMMENT 'Post Product Id',
  PRIMARY KEY (`history_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Post History Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_history`
--

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

--
-- Table structure for table `mageplaza_blog_post_like`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_like`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_post_like` (
  `like_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Like ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `action` int(10) unsigned NOT NULL COMMENT 'type like',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'User Like ID',
  PRIMARY KEY (`like_id`),
  KEY `MAGEPLAZA_BLOG_POST_LIKE_LIKE_ID` (`like_id`),
  KEY `MAGEPLAZA_BLOG_POST_LIKE_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` (`post_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_LIKE_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='mageplaza_blog_post_like';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_like`
--

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

--
-- Table structure for table `mageplaza_blog_post_product`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_post_product` (
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  PRIMARY KEY (`post_id`,`entity_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_POST_PRODUCT_POST_ID_ENTITY_ID` (`post_id`,`entity_id`),
  KEY `MAGEPLAZA_BLOG_POST_PRODUCT_POST_ID` (`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_PRODUCT_ENTITY_ID` (`entity_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_PRD_ENTT_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `MAGEPLAZA_BLOG_POST_PRODUCT_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Post To Product Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_product`
--

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

--
-- Table structure for table `mageplaza_blog_post_tag`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_post_tag` (
  `tag_id` int(10) unsigned NOT NULL COMMENT 'Tag ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  PRIMARY KEY (`tag_id`,`post_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_POST_TAG_POST_ID_TAG_ID` (`post_id`,`tag_id`),
  KEY `MAGEPLAZA_BLOG_POST_TAG_POST_ID` (`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_TAG_TAG_ID` (`tag_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_TAG_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE,
  CONSTRAINT `MAGEPLAZA_BLOG_POST_TAG_TAG_ID_MAGEPLAZA_BLOG_TAG_TAG_ID` FOREIGN KEY (`tag_id`) REFERENCES `mageplaza_blog_tag` (`tag_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Post To Tag Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_tag`
--

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

--
-- Table structure for table `mageplaza_blog_post_topic`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_topic`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_post_topic` (
  `topic_id` int(10) unsigned NOT NULL COMMENT 'Topic ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
  PRIMARY KEY (`topic_id`,`post_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_POST_TOPIC_POST_ID_TOPIC_ID` (`post_id`,`topic_id`),
  KEY `MAGEPLAZA_BLOG_POST_TOPIC_POST_ID` (`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_TOPIC_TOPIC_ID` (`topic_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_TOPIC_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE,
  CONSTRAINT `MAGEPLAZA_BLOG_POST_TOPIC_TOPIC_ID_MAGEPLAZA_BLOG_TOPIC_TOPIC_ID` FOREIGN KEY (`topic_id`) REFERENCES `mageplaza_blog_topic` (`topic_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Post To Topic Link Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_topic`
--

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

--
-- Table structure for table `mageplaza_blog_post_traffic`
--

DROP TABLE IF EXISTS `mageplaza_blog_post_traffic`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_post_traffic` (
  `traffic_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Traffic ID',
  `post_id` int(10) unsigned NOT NULL COMMENT 'Post ID',
  `numbers_view` int(11) DEFAULT NULL,
  PRIMARY KEY (`traffic_id`),
  UNIQUE KEY `MAGEPLAZA_BLOG_POST_TRAFFIC_POST_ID_TRAFFIC_ID` (`post_id`,`traffic_id`),
  KEY `MAGEPLAZA_BLOG_POST_TRAFFIC_POST_ID` (`post_id`),
  KEY `MAGEPLAZA_BLOG_POST_TRAFFIC_TRAFFIC_ID` (`traffic_id`),
  CONSTRAINT `MAGEPLAZA_BLOG_POST_TRAFFIC_POST_ID_MAGEPLAZA_BLOG_POST_POST_ID` FOREIGN KEY (`post_id`) REFERENCES `mageplaza_blog_post` (`post_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Traffic Post Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_post_traffic`
--

LOCK TABLES `mageplaza_blog_post_traffic` WRITE;
/*!40000 ALTER TABLE `mageplaza_blog_post_traffic` DISABLE KEYS */;
INSERT INTO `mageplaza_blog_post_traffic` VALUES (1,1,6);
/*!40000 ALTER TABLE `mageplaza_blog_post_traffic` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `mageplaza_blog_tag`
--

DROP TABLE IF EXISTS `mageplaza_blog_tag`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_tag` (
  `tag_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tag ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Tag Name',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Tag URL Key',
  `description` text DEFAULT NULL COMMENT 'Tag Description',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `enabled` int(11) DEFAULT NULL COMMENT 'Tag Enabled',
  `updated_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Post Meta Title',
  `meta_description` text DEFAULT NULL COMMENT 'Post Meta Description',
  `meta_keywords` text DEFAULT NULL COMMENT 'Post Meta Keywords',
  `meta_robots` text DEFAULT NULL,
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  PRIMARY KEY (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tag Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_tag`
--

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

--
-- Table structure for table `mageplaza_blog_topic`
--

DROP TABLE IF EXISTS `mageplaza_blog_topic`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_blog_topic` (
  `topic_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Topic ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Topic Name',
  `description` text DEFAULT NULL COMMENT 'Topic Description',
  `store_ids` text NOT NULL COMMENT 'Store Id',
  `enabled` int(11) DEFAULT NULL COMMENT 'Topic Enabled',
  `url_key` varchar(255) DEFAULT NULL COMMENT 'Topic URL Key',
  `meta_title` varchar(255) DEFAULT NULL COMMENT 'Topic Meta Title',
  `meta_description` text DEFAULT NULL COMMENT 'Topic Meta Description',
  `meta_keywords` text DEFAULT NULL COMMENT 'Topic Meta Keywords',
  `meta_robots` text DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `import_source` text DEFAULT NULL COMMENT 'Import Source',
  PRIMARY KEY (`topic_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Topic Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_blog_topic`
--

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

--
-- Table structure for table `mageplaza_smtp_abandonedcart`
--

DROP TABLE IF EXISTS `mageplaza_smtp_abandonedcart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_smtp_abandonedcart` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log Id',
  `log_ids` varchar(255) DEFAULT NULL COMMENT 'Log Ids',
  `token` varchar(255) DEFAULT NULL COMMENT 'Token',
  `quote_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote Id',
  `status` smallint(6) NOT NULL COMMENT 'Status',
  `created_at` timestamp NULL DEFAULT current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`id`),
  KEY `MAGEPLAZA_SMTP_ABANDONEDCART_QUOTE_ID_QUOTE_ENTITY_ID` (`quote_id`),
  CONSTRAINT `MAGEPLAZA_SMTP_ABANDONEDCART_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='SMTP Abandoned Cart';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_smtp_abandonedcart`
--

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

--
-- Table structure for table `mageplaza_smtp_log`
--

DROP TABLE IF EXISTS `mageplaza_smtp_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mageplaza_smtp_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `subject` varchar(255) DEFAULT NULL COMMENT 'Email Subject',
  `email_content` text DEFAULT NULL COMMENT 'Email Content',
  `status` smallint(6) NOT NULL COMMENT 'Status',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `sender` varchar(255) DEFAULT NULL COMMENT 'Sender',
  `recipient` varchar(255) DEFAULT NULL COMMENT 'Recipient',
  `cc` varchar(255) DEFAULT NULL COMMENT 'Cc',
  `bcc` varchar(255) DEFAULT NULL COMMENT 'Bcc',
  PRIMARY KEY (`id`),
  KEY `MAGEPLAZA_SMTP_LOG_STATUS` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 COMMENT='mageplaza_smtp_log';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mageplaza_smtp_log`
--

LOCK TABLES `mageplaza_smtp_log` WRITE;
/*!40000 ALTER TABLE `mageplaza_smtp_log` DISABLE KEYS */;
INSERT INTO `mageplaza_smtp_log` VALUES (31,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; style=&quot;font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size-adjust: 100%; background-color: #f5f5f5;&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        @import url(&quot;http://magento.test.indaco.store/static/version1662710373/frontend/Magento/indaco/it_IT/css/email-fonts.css&quot;);hr{margin-top:15px;margin-bottom:15px}.text-small{font-size:14px}.text-muted{color:#999}html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size-adjust:100%}body{color:#333;font-family:&#039;Montserrat&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;font-size:16px}p{margin-top:0;margin-bottom:11px}abbr[title]{border-bottom:1px dotted #dedede;cursor:help}b,strong{font-weight:700}em,i{font-style:italic}mark{background:#fff;color:#000}small,.small{font-size:14px}hr{border:0;border-top:1px solid #dedede;margin-bottom:22px;margin-top:22px}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dfn{font-style:italic}h1{font-weight:700;line-height:1.1;font-size:40px;margin-top:0;margin-bottom:22px}h2{font-weight:700;line-height:1.1;font-size:32px;margin-top:27.5px;margin-bottom:22px}h3{font-weight:700;line-height:1.1;font-size:26px;margin-top:16.5px;margin-bottom:11px}h4{font-weight:700;line-height:1.1;font-size:20px;margin-top:22px;margin-bottom:22px}h5{font-weight:700;line-height:1.1;font-size:16px;margin-top:22px;margin-bottom:22px}h6{font-weight:700;line-height:1.1;font-size:14px;margin-top:22px;margin-bottom:22px}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small{color:#333;font-family:&#039;Montserrat&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1}a,.alink{color:#a2bf1a;text-decoration:none}a:visited,.alink:visited{color:#a2bf1a;text-decoration:none}a:hover,.alink:hover{color:#a2bf1a;text-decoration:underline}a:active,.alink:active{color:#364b9b;text-decoration:underline}ul,ol{margin-top:0;margin-bottom:27.5px}ul&gt;li,ol&gt;li{margin-top:0;margin-bottom:11px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}dl{margin-bottom:22px;margin-top:0}dt{font-weight:700;margin-bottom:5.5px;margin-top:0}dd{margin-bottom:11px;margin-top:0;margin-left:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&#039;Courier New&#039;,monospace}code{background:#fff;color:#111;padding:2px 4px;font-size:14px;white-space:nowrap}kbd{background:#fff;color:#111;padding:2px 4px;font-size:14px}pre{background:#fff;border:1px solid #dedede;color:#111;line-height:1.42857143;margin:0 0 11px;padding:11px;font-size:14px;display:block;word-wrap:break-word}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}blockquote{border-left:0 solid #dedede;margin:0 0 22px 44px;padding:0;color:#333;font-family:&#039;Montserrat&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:italic;font-weight:400;line-height:1.42857143;font-size:16px}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{color:#333;line-height:1.42857143;font-size:12px;display:block}blockquote footer:before,blockquote small:before,blockquote .small:before{content:&#039;\\2014 \\00A0&#039;}blockquote cite{font-style:normal}blockquote:before,blockquote:after{content:&#039;&#039;}q{quotes:none}q:before,q:after{content:&#039;&#039;;content:none}cite{font-style:normal}.shipment-track th{text-align:left}.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{vertical-align:top}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td{vertical-align:bottom}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{padding:0 11px}.email-items th{text-align:left}.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{vertical-align:top}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td{vertical-align:bottom}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{padding:0 11px}@media only screen and (max-width:639px){html,body{background-color:#fff;width:100% !important}.main{max-width:100% !important;min-width:240px;width:auto !important}.rma-items td,.rma-items th{font-size:14px !important;padding:5px !important}}@media only screen and (max-width:479px){.header,.main-content,.footer{padding:27.5px 11px !important}.footer td{display:block;width:auto !important}.email-features&gt;tbody&gt;tr&gt;td{clear:both;display:block;padding-top:22px;width:auto !important}.email-summary h1{font-size:28px !important}.order-details .address-details,.order-details .method-info{display:block;padding:11px 0 !important;width:auto !important}.order-details .address-details h3,.order-details .method-info h3{margin-bottom:5.5px !important;margin-top:0 !important}.button .inner-wrapper{width:100% !important}.button .inner-wrapper td a{font-size:18px}}body,table,td,a{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img{-ms-interpolation-mode:bicubic}table,td{mso-table-lspace:0pt;mso-table-rspace:0pt}a:visited{color:#a2bf1a !important;text-decoration:none !important}a:hover{color:#a2bf1a !important;text-decoration:underline !important}a:active{color:#364b9b !important;text-decoration:underline !important}.no-link a,.address-details a{color:#333 !important;cursor:default !important;text-decoration:none !important}.button .inner-wrapper td:hover{background-color:#a2bf1a !important}.button .inner-wrapper a:active,.button .inner-wrapper td:active{background-color:#a2bf1a !important}.button a:active,.button a:hover,.button a:visited{border:1px solid #a2bf1a;color:#fff !important;text-decoration:none !important}.email-items{overflow-x:auto;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;http://magento.test.indaco.store/static/version1662710373/frontend/Magento/indaco/it_IT/css/email-fonts.css&quot;);a:visited{color: #a2bf1a; text-decoration: none;}a:hover{color: #a2bf1a; text-decoration: underline;}a:active{color: #364b9b; text-decoration: underline;}&lt;/style&gt;\n&lt;/head&gt;\n&lt;body style=&#039;margin: 0; padding: 0; color: #333; font-style: normal; line-height: 1.42857143; font-size: 16px; font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; font-weight: normal; text-align: left; background-color: #f5f5f5;&#039;&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot; style=&quot;border-collapse: collapse; margin: 0 auto;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 33px; width: 100%;&#039;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse; margin: 0 auto; text-align: left; width: 660px;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 27.5px;&#039;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;http://magento.test.indaco.store/&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;http://magento.test.indaco.store/static/version1662710373/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #fff; padding: 27.5px;&#039;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table style=&quot;border-collapse: collapse;&quot;&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 22px;&#039;&gt;\n            &lt;p class=&quot;greeting&quot; style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Andrea Gottardi,&lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n            &lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            &lt;h1 style=&quot;font-weight: 700; line-height: 1.1; font-size: 40px; margin-top: 0; border-bottom: 1px solid #dedede; margin-bottom: 11px; padding-bottom: 11px;&quot;&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000008&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;13 set 2022, 10:02:46&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            \n            &lt;table class=&quot;order-details&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Andrea Gottardi&lt;br&gt;\nDelta Informatica&lt;br&gt;\nVia Kufstein, 5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3333333333&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;3333333333&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Andrea Gottardi&lt;br&gt;\nDelta Informatica&lt;br&gt;\nVia Kufstein, 5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3333333333&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;3333333333&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method checkmemo&quot; style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;\n    &lt;dt class=&quot;title&quot; style=&quot;margin-bottom: 5.5px; margin-top: 0; font-weight: 400;&quot;&gt;Check / Money order&lt;/dt&gt;\n                        &lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Metodo di spedizione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot; style=&quot;width: 100%; border-collapse: collapse; border-spacing: 0; max-width: 100%;&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left; vertical-align: bottom; padding: 11px;&#039;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 11px; text-align: center;&#039;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 11px; text-align: right;&#039;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px; border-top: 1px solid #dedede;&#039;&gt;\n        &lt;p class=&quot;product-name&quot; style=&quot;margin-top: 0; font-weight: 700; margin-bottom: 5.5px;&quot;&gt;Vino di prova - Delta Informatica&lt;/p&gt;\n        &lt;p class=&quot;sku&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;Cod.Art.: VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px; border-top: 1px solid #dedede; text-align: center;&#039;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px; border-top: 1px solid #dedede; text-align: right;&#039;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;11,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right;&#039;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;11,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n                \n\n&lt;tr class=&quot;totals-tax&quot;&gt;\n    &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                    Tassa            &lt;/th&gt;\n    &lt;td data-th=&quot;Tassa&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n        &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;2,42 €&lt;/span&gt;    &lt;/td&gt;\n&lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;&lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;18,42 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 27.5px;&#039;&gt;\n                        &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                            &lt;tr&gt;\n                                &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 27.5px; width: 33%;&#039;&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 27.5px; width: 33%;&#039;&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot; style=&quot;margin-top: 0; margin-bottom: 0; font-size: 20px;&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot; style=&quot;text-decoration: none; color: inherit;&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 27.5px; width: 33%;&#039;&gt;\n                                    &lt;p class=&quot;address&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',1,'2022-09-13 08:02:48','Sales <sales@example.com>','andrea.gottardi@deltainformatica.eu',NULL,NULL),(32,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; style=&quot;font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size-adjust: 100%; background-color: #f5f5f5;&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        @import url(&quot;http://magento.test.indaco.store/static/version1662710373/frontend/Magento/indaco/it_IT/css/email-fonts.css&quot;);hr{margin-top:15px;margin-bottom:15px}.text-small{font-size:14px}.text-muted{color:#999}html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size-adjust:100%}body{color:#333;font-family:&#039;Montserrat&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;font-size:16px}p{margin-top:0;margin-bottom:11px}abbr[title]{border-bottom:1px dotted #dedede;cursor:help}b,strong{font-weight:700}em,i{font-style:italic}mark{background:#fff;color:#000}small,.small{font-size:14px}hr{border:0;border-top:1px solid #dedede;margin-bottom:22px;margin-top:22px}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dfn{font-style:italic}h1{font-weight:700;line-height:1.1;font-size:40px;margin-top:0;margin-bottom:22px}h2{font-weight:700;line-height:1.1;font-size:32px;margin-top:27.5px;margin-bottom:22px}h3{font-weight:700;line-height:1.1;font-size:26px;margin-top:16.5px;margin-bottom:11px}h4{font-weight:700;line-height:1.1;font-size:20px;margin-top:22px;margin-bottom:22px}h5{font-weight:700;line-height:1.1;font-size:16px;margin-top:22px;margin-bottom:22px}h6{font-weight:700;line-height:1.1;font-size:14px;margin-top:22px;margin-bottom:22px}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small{color:#333;font-family:&#039;Montserrat&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1}a,.alink{color:#a2bf1a;text-decoration:none}a:visited,.alink:visited{color:#a2bf1a;text-decoration:none}a:hover,.alink:hover{color:#a2bf1a;text-decoration:underline}a:active,.alink:active{color:#364b9b;text-decoration:underline}ul,ol{margin-top:0;margin-bottom:27.5px}ul&gt;li,ol&gt;li{margin-top:0;margin-bottom:11px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}dl{margin-bottom:22px;margin-top:0}dt{font-weight:700;margin-bottom:5.5px;margin-top:0}dd{margin-bottom:11px;margin-top:0;margin-left:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&#039;Courier New&#039;,monospace}code{background:#fff;color:#111;padding:2px 4px;font-size:14px;white-space:nowrap}kbd{background:#fff;color:#111;padding:2px 4px;font-size:14px}pre{background:#fff;border:1px solid #dedede;color:#111;line-height:1.42857143;margin:0 0 11px;padding:11px;font-size:14px;display:block;word-wrap:break-word}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}blockquote{border-left:0 solid #dedede;margin:0 0 22px 44px;padding:0;color:#333;font-family:&#039;Montserrat&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:italic;font-weight:400;line-height:1.42857143;font-size:16px}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{color:#333;line-height:1.42857143;font-size:12px;display:block}blockquote footer:before,blockquote small:before,blockquote .small:before{content:&#039;\\2014 \\00A0&#039;}blockquote cite{font-style:normal}blockquote:before,blockquote:after{content:&#039;&#039;}q{quotes:none}q:before,q:after{content:&#039;&#039;;content:none}cite{font-style:normal}.shipment-track th{text-align:left}.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{vertical-align:top}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td{vertical-align:bottom}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{padding:0 11px}.email-items th{text-align:left}.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{vertical-align:top}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td{vertical-align:bottom}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{padding:0 11px}@media only screen and (max-width:639px){html,body{background-color:#fff;width:100% !important}.main{max-width:100% !important;min-width:240px;width:auto !important}.rma-items td,.rma-items th{font-size:14px !important;padding:5px !important}}@media only screen and (max-width:479px){.header,.main-content,.footer{padding:27.5px 11px !important}.footer td{display:block;width:auto !important}.email-features&gt;tbody&gt;tr&gt;td{clear:both;display:block;padding-top:22px;width:auto !important}.email-summary h1{font-size:28px !important}.order-details .address-details,.order-details .method-info{display:block;padding:11px 0 !important;width:auto !important}.order-details .address-details h3,.order-details .method-info h3{margin-bottom:5.5px !important;margin-top:0 !important}.button .inner-wrapper{width:100% !important}.button .inner-wrapper td a{font-size:18px}}body,table,td,a{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img{-ms-interpolation-mode:bicubic}table,td{mso-table-lspace:0pt;mso-table-rspace:0pt}a:visited{color:#a2bf1a !important;text-decoration:none !important}a:hover{color:#a2bf1a !important;text-decoration:underline !important}a:active{color:#364b9b !important;text-decoration:underline !important}.no-link a,.address-details a{color:#333 !important;cursor:default !important;text-decoration:none !important}.button .inner-wrapper td:hover{background-color:#a2bf1a !important}.button .inner-wrapper a:active,.button .inner-wrapper td:active{background-color:#a2bf1a !important}.button a:active,.button a:hover,.button a:visited{border:1px solid #a2bf1a;color:#fff !important;text-decoration:none !important}.email-items{overflow-x:auto;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;http://magento.test.indaco.store/static/version1662710373/frontend/Magento/indaco/it_IT/css/email-fonts.css&quot;);a:visited{color: #a2bf1a; text-decoration: none;}a:hover{color: #a2bf1a; text-decoration: underline;}a:active{color: #364b9b; text-decoration: underline;}&lt;/style&gt;\n&lt;/head&gt;\n&lt;body style=&#039;margin: 0; padding: 0; color: #333; font-style: normal; line-height: 1.42857143; font-size: 16px; font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; font-weight: normal; text-align: left; background-color: #f5f5f5;&#039;&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot; style=&quot;border-collapse: collapse; margin: 0 auto;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 33px; width: 100%;&#039;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse; margin: 0 auto; text-align: left; width: 660px;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 27.5px;&#039;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;http://magento.test.indaco.store/&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;http://magento.test.indaco.store/static/version1662710373/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #fff; padding: 27.5px;&#039;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table style=&quot;border-collapse: collapse;&quot;&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 22px;&#039;&gt;\n            &lt;p class=&quot;greeting&quot; style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Andrea Gottardi,&lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n            &lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            &lt;h1 style=&quot;font-weight: 700; line-height: 1.1; font-size: 40px; margin-top: 0; border-bottom: 1px solid #dedede; margin-bottom: 11px; padding-bottom: 11px;&quot;&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000009&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;13 set 2022, 10:07:50&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            \n            &lt;table class=&quot;order-details&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Andrea Gottardi&lt;br&gt;\nDelta&lt;br&gt;\nKufstein, 5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3333333333&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;3333333333&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Andrea Gottardi&lt;br&gt;\nDelta&lt;br&gt;\nKufstein, 5&lt;br&gt;\n\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3333333333&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;3333333333&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method checkmemo&quot; style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;\n    &lt;dt class=&quot;title&quot; style=&quot;margin-bottom: 5.5px; margin-top: 0; font-weight: 400;&quot;&gt;Check / Money order&lt;/dt&gt;\n                        &lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Metodo di spedizione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot; style=&quot;width: 100%; border-collapse: collapse; border-spacing: 0; max-width: 100%;&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left; vertical-align: bottom; padding: 11px;&#039;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 11px; text-align: center;&#039;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 11px; text-align: right;&#039;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px; border-top: 1px solid #dedede;&#039;&gt;\n        &lt;p class=&quot;product-name&quot; style=&quot;margin-top: 0; font-weight: 700; margin-bottom: 5.5px;&quot;&gt;Vino di prova - Delta Informatica&lt;/p&gt;\n        &lt;p class=&quot;sku&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;Cod.Art.: VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px; border-top: 1px solid #dedede; text-align: center;&#039;&gt;1&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px; border-top: 1px solid #dedede; text-align: right;&#039;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;11,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right;&#039;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;11,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;5,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n                \n\n&lt;tr class=&quot;totals-tax&quot;&gt;\n    &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                    Tassa            &lt;/th&gt;\n    &lt;td data-th=&quot;Tassa&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n        &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;2,42 €&lt;/span&gt;    &lt;/td&gt;\n&lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;&lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;18,42 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 27.5px;&#039;&gt;\n                        &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                            &lt;tr&gt;\n                                &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 27.5px; width: 33%;&#039;&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 27.5px; width: 33%;&#039;&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot; style=&quot;margin-top: 0; margin-bottom: 0; font-size: 20px;&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot; style=&quot;text-decoration: none; color: inherit;&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 27.5px; width: 33%;&#039;&gt;\n                                    &lt;p class=&quot;address&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',1,'2022-09-13 08:07:51','Sales <sales@example.com>','andrea.gottardi@deltainformatica.eu',NULL,NULL),(33,'Conferma del tuo ordine su Indaco','&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;\n&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; style=&quot;font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; font-size-adjust: 100%; background-color: #f5f5f5;&quot;&gt;\n&lt;head&gt;\n    &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=utf-8&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;initial-scale=1.0, width=device-width&quot;&gt;\n    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&gt;\n    &lt;style type=&quot;text/css&quot;&gt;\n        \n\n        @import url(&quot;http://magento.test.indaco.store/static/version1662710373/frontend/Magento/indaco/it_IT/css/email-fonts.css&quot;);hr{margin-top:15px;margin-bottom:15px}.text-small{font-size:14px}.text-muted{color:#999}html{font-size:62.5%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;font-size-adjust:100%}body{color:#333;font-family:&#039;Montserrat&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1.42857143;font-size:16px}p{margin-top:0;margin-bottom:11px}abbr[title]{border-bottom:1px dotted #dedede;cursor:help}b,strong{font-weight:700}em,i{font-style:italic}mark{background:#fff;color:#000}small,.small{font-size:14px}hr{border:0;border-top:1px solid #dedede;margin-bottom:22px;margin-top:22px}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dfn{font-style:italic}h1{font-weight:700;line-height:1.1;font-size:40px;margin-top:0;margin-bottom:22px}h2{font-weight:700;line-height:1.1;font-size:32px;margin-top:27.5px;margin-bottom:22px}h3{font-weight:700;line-height:1.1;font-size:26px;margin-top:16.5px;margin-bottom:11px}h4{font-weight:700;line-height:1.1;font-size:20px;margin-top:22px;margin-bottom:22px}h5{font-weight:700;line-height:1.1;font-size:16px;margin-top:22px;margin-bottom:22px}h6{font-weight:700;line-height:1.1;font-size:14px;margin-top:22px;margin-bottom:22px}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small{color:#333;font-family:&#039;Montserrat&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;line-height:1}a,.alink{color:#a2bf1a;text-decoration:none}a:visited,.alink:visited{color:#a2bf1a;text-decoration:none}a:hover,.alink:hover{color:#a2bf1a;text-decoration:underline}a:active,.alink:active{color:#364b9b;text-decoration:underline}ul,ol{margin-top:0;margin-bottom:27.5px}ul&gt;li,ol&gt;li{margin-top:0;margin-bottom:11px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}dl{margin-bottom:22px;margin-top:0}dt{font-weight:700;margin-bottom:5.5px;margin-top:0}dd{margin-bottom:11px;margin-top:0;margin-left:0}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&#039;Courier New&#039;,monospace}code{background:#fff;color:#111;padding:2px 4px;font-size:14px;white-space:nowrap}kbd{background:#fff;color:#111;padding:2px 4px;font-size:14px}pre{background:#fff;border:1px solid #dedede;color:#111;line-height:1.42857143;margin:0 0 11px;padding:11px;font-size:14px;display:block;word-wrap:break-word}pre code{background-color:transparent;border-radius:0;color:inherit;font-size:inherit;padding:0;white-space:pre-wrap}blockquote{border-left:0 solid #dedede;margin:0 0 22px 44px;padding:0;color:#333;font-family:&#039;Montserrat&#039;,&#039;Helvetica Neue&#039;,Helvetica,Arial,sans-serif;font-style:italic;font-weight:400;line-height:1.42857143;font-size:16px}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{color:#333;line-height:1.42857143;font-size:12px;display:block}blockquote footer:before,blockquote small:before,blockquote .small:before{content:&#039;\\2014 \\00A0&#039;}blockquote cite{font-style:normal}blockquote:before,blockquote:after{content:&#039;&#039;}q{quotes:none}q:before,q:after{content:&#039;&#039;;content:none}cite{font-style:normal}.shipment-track th{text-align:left}.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{vertical-align:top}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td{vertical-align:bottom}.shipment-track&gt;thead&gt;tr&gt;th,.shipment-track&gt;tbody&gt;tr&gt;th,.shipment-track&gt;tfoot&gt;tr&gt;th,.shipment-track&gt;thead&gt;tr&gt;td,.shipment-track&gt;tbody&gt;tr&gt;td,.shipment-track&gt;tfoot&gt;tr&gt;td{padding:0 11px}.email-items th{text-align:left}.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{vertical-align:top}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td{vertical-align:bottom}.email-items&gt;thead&gt;tr&gt;th,.email-items&gt;tbody&gt;tr&gt;th,.email-items&gt;tfoot&gt;tr&gt;th,.email-items&gt;thead&gt;tr&gt;td,.email-items&gt;tbody&gt;tr&gt;td,.email-items&gt;tfoot&gt;tr&gt;td{padding:0 11px}@media only screen and (max-width:639px){html,body{background-color:#fff;width:100% !important}.main{max-width:100% !important;min-width:240px;width:auto !important}.rma-items td,.rma-items th{font-size:14px !important;padding:5px !important}}@media only screen and (max-width:479px){.header,.main-content,.footer{padding:27.5px 11px !important}.footer td{display:block;width:auto !important}.email-features&gt;tbody&gt;tr&gt;td{clear:both;display:block;padding-top:22px;width:auto !important}.email-summary h1{font-size:28px !important}.order-details .address-details,.order-details .method-info{display:block;padding:11px 0 !important;width:auto !important}.order-details .address-details h3,.order-details .method-info h3{margin-bottom:5.5px !important;margin-top:0 !important}.button .inner-wrapper{width:100% !important}.button .inner-wrapper td a{font-size:18px}}body,table,td,a{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}img{-ms-interpolation-mode:bicubic}table,td{mso-table-lspace:0pt;mso-table-rspace:0pt}a:visited{color:#a2bf1a !important;text-decoration:none !important}a:hover{color:#a2bf1a !important;text-decoration:underline !important}a:active{color:#364b9b !important;text-decoration:underline !important}.no-link a,.address-details a{color:#333 !important;cursor:default !important;text-decoration:none !important}.button .inner-wrapper td:hover{background-color:#a2bf1a !important}.button .inner-wrapper a:active,.button .inner-wrapper td:active{background-color:#a2bf1a !important}.button a:active,.button a:hover,.button a:visited{border:1px solid #a2bf1a;color:#fff !important;text-decoration:none !important}.email-items{overflow-x:auto;overflow-y:hidden;width:100%;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}\n    &lt;/style&gt;\n&lt;style type=&quot;text/css&quot;&gt;@import url(&quot;http://magento.test.indaco.store/static/version1662710373/frontend/Magento/indaco/it_IT/css/email-fonts.css&quot;);a:visited{color: #a2bf1a; text-decoration: none;}a:hover{color: #a2bf1a; text-decoration: underline;}a:active{color: #364b9b; text-decoration: underline;}&lt;/style&gt;\n&lt;/head&gt;\n&lt;body style=&#039;margin: 0; padding: 0; color: #333; font-style: normal; line-height: 1.42857143; font-size: 16px; font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; font-weight: normal; text-align: left; background-color: #f5f5f5;&#039;&gt;\n\n\n&lt;!-- Begin wrapper table --&gt;\n&lt;table class=&quot;wrapper&quot; width=&quot;100%&quot; style=&quot;border-collapse: collapse; margin: 0 auto;&quot;&gt;\n    &lt;tr&gt;\n        &lt;td class=&quot;wrapper-inner&quot; align=&quot;center&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 33px; width: 100%;&#039;&gt;\n            &lt;table class=&quot;main&quot; align=&quot;center&quot; style=&quot;border-collapse: collapse; margin: 0 auto; text-align: left; width: 660px;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;header&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 27.5px;&#039;&gt;\n                        &lt;a class=&quot;logo&quot; href=&quot;http://magento.test.indaco.store/&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;\n                            &lt;img width=&quot;180&quot; src=&quot;http://magento.test.indaco.store/static/version1662710373/frontend/Magento/indaco/it_IT/Magento_Email/logo_email.png&quot; alt=&quot;Indaco&quot; border=&quot;0&quot; style=&quot;border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none;&quot;&gt;\n                        &lt;/a&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;main-content&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #fff; padding: 27.5px;&#039;&gt;\n                    &lt;!-- Begin Content --&gt;\n\n&lt;table style=&quot;border-collapse: collapse;&quot;&gt;\n    &lt;tr class=&quot;email-intro&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 22px;&#039;&gt;\n            &lt;p class=&quot;greeting&quot; style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Andrea Gottardi,&lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;\n                Grazie per il tuo ordine da Indaco.\n                Una volta che il pacco sarà spedito, ti invieremo il numero di tracciamento.\n            &lt;/p&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;\n                Se hai domande sul tuo ordine, puoi inviare una email a &lt;a href=&quot;mailto:support@example.com&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;support@example.com&lt;/a&gt;.\n            &lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-summary&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            &lt;h1 style=&quot;font-weight: 700; line-height: 1.1; font-size: 40px; margin-top: 0; border-bottom: 1px solid #dedede; margin-bottom: 11px; padding-bottom: 11px;&quot;&gt;Il tuo ordine &lt;span class=&quot;no-link&quot;&gt;#000000010&lt;/span&gt;\n&lt;/h1&gt;\n            &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Effettuato il &lt;span class=&quot;no-link&quot;&gt;13 set 2022, 10:23:30&lt;/span&gt;&lt;/p&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr class=&quot;email-information&quot;&gt;\n        &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top;&#039;&gt;\n            \n            &lt;table class=&quot;order-details&quot; style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Informazioni di fatturazione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Andrea Gottardi&lt;br&gt;\nTest Company&lt;br&gt;\nvia Kufstein 5&lt;br&gt;\nDeltaLab&lt;br&gt;\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3333333333&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;3333333333&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;address-details&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Shipping Info&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Andrea Gottardi&lt;br&gt;\nTest Company&lt;br&gt;\nvia Kufstein 5&lt;br&gt;\nDeltaLab&lt;br&gt;\n\n\nTrento,  Trento, 38121&lt;br&gt;\nItalia&lt;br&gt;\nT: &lt;a href=&quot;tel:3333333333&quot; style=&quot;color: #a2bf1a; text-decoration: none;&quot;&gt;3333333333&lt;/a&gt;\n\n&lt;/p&gt;\n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Metodo di pagamento&lt;/h3&gt;\n                        &lt;dl class=&quot;payment-method checkmemo&quot; style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;\n    &lt;dt class=&quot;title&quot; style=&quot;margin-bottom: 5.5px; margin-top: 0; font-weight: 400;&quot;&gt;Check / Money order&lt;/dt&gt;\n                        &lt;/dl&gt;\n\n                    &lt;/td&gt;\n                    \n                    &lt;td class=&quot;method-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px 11px 11px 0; width: 50%;&#039;&gt;\n                        &lt;h3 style=&quot;font-weight: 700; line-height: 1.1; font-size: 26px; margin-bottom: 11px; margin-top: 0;&quot;&gt;Metodo di spedizione&lt;/h3&gt;\n                        &lt;p style=&quot;margin-top: 0; margin-bottom: 11px;&quot;&gt;Flat Rate - Fixed&lt;/p&gt;\n                        \n                    &lt;/td&gt;\n                    \n                &lt;/tr&gt;\n            &lt;/table&gt;\n                    &lt;table class=&quot;email-items&quot; style=&quot;width: 100%; border-collapse: collapse; border-spacing: 0; max-width: 100%;&quot;&gt;\n        &lt;thead&gt;\n            &lt;tr&gt;\n                &lt;th class=&quot;item-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; text-align: left; vertical-align: bottom; padding: 11px;&#039;&gt;\n                    Elementi                &lt;/th&gt;\n                &lt;th class=&quot;item-qty&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 11px; text-align: center;&#039;&gt;\n                    Qtà                &lt;/th&gt;\n                &lt;th class=&quot;item-price&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: bottom; padding: 11px; text-align: right;&#039;&gt;\n                    Prezzo                &lt;/th&gt;\n            &lt;/tr&gt;\n        &lt;/thead&gt;\n                                    &lt;tbody&gt;\n                    &lt;tr&gt;\n    &lt;td class=&quot;item-info&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px; border-top: 1px solid #dedede;&#039;&gt;\n        &lt;p class=&quot;product-name&quot; style=&quot;margin-top: 0; font-weight: 700; margin-bottom: 5.5px;&quot;&gt;Vino di prova - Delta Informatica&lt;/p&gt;\n        &lt;p class=&quot;sku&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;Cod.Art.: VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4&lt;/p&gt;\n                                                        &lt;/td&gt;\n    &lt;td class=&quot;item-qty&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px; border-top: 1px solid #dedede; text-align: center;&#039;&gt;2&lt;/td&gt;\n    &lt;td class=&quot;item-price&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding: 11px; border-top: 1px solid #dedede; text-align: right;&#039;&gt;\n        \n        &lt;span class=&quot;price&quot;&gt;22,00 €&lt;/span&gt;\n    \n\n    &lt;/td&gt;\n&lt;/tr&gt;\n                &lt;/tbody&gt;\n                            &lt;tfoot class=&quot;order-totals&quot;&gt;\n                    &lt;tr class=&quot;subtotal&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right;&#039;&gt;\n                            Subtotale                    &lt;/th&gt;\n        &lt;td data-th=&quot;Subtotale&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;22,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;tr class=&quot;shipping&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            Spedizione e gestione                    &lt;/th&gt;\n        &lt;td data-th=&quot;Spedizione e gestione&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;10,00 €&lt;/span&gt;                    &lt;/td&gt;\n    &lt;/tr&gt;\n                \n\n&lt;tr class=&quot;totals-tax&quot;&gt;\n    &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                    Tassa            &lt;/th&gt;\n    &lt;td data-th=&quot;Tassa&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n        &lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;4,84 €&lt;/span&gt;    &lt;/td&gt;\n&lt;/tr&gt;\n            &lt;tr class=&quot;grand_total&quot;&gt;\n        &lt;th colspan=&quot;2&quot; scope=&quot;row&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; font-weight: 400; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;Totale complessivo&lt;/strong&gt;\n                    &lt;/th&gt;\n        &lt;td data-th=&quot;Totale complessivo&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 11px; text-align: right; padding-top: 0;&#039;&gt;\n                            &lt;strong style=&quot;font-weight: 700;&quot;&gt;&lt;span class=&quot;price&quot; style=&quot;white-space: nowrap;&quot;&gt;36,84 €&lt;/span&gt;&lt;/strong&gt;\n                    &lt;/td&gt;\n    &lt;/tr&gt;\n            &lt;/tfoot&gt;\n    &lt;/table&gt;\n    \n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n\n&lt;!-- End Content --&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n                &lt;tr&gt;\n                    &lt;td class=&quot;footer&quot; style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; background-color: #f5f5f5; padding: 27.5px;&#039;&gt;\n                        &lt;table style=&quot;border-collapse: collapse; width: 100%;&quot;&gt;\n                            &lt;tr&gt;\n                                &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 27.5px; width: 33%;&#039;&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 27.5px; width: 33%;&#039;&gt;\n                                    \n                                        &lt;p class=&quot;phone&quot; style=&quot;margin-top: 0; margin-bottom: 0; font-size: 20px;&quot;&gt;\n                                            &lt;a href=&quot;tel:+39%200461%20123456&quot; style=&quot;text-decoration: none; color: inherit;&quot;&gt;+39 0461 123456&lt;/a&gt;\n                                        &lt;/p&gt;\n                                    \n                                    \n                                &lt;/td&gt;\n                                &lt;td style=&#039;font-family: &quot;Montserrat&quot;,&quot;Helvetica Neue&quot;,Helvetica,Arial,sans-serif; vertical-align: top; padding-bottom: 27.5px; width: 33%;&#039;&gt;\n                                    &lt;p class=&quot;address&quot; style=&quot;margin-top: 0; margin-bottom: 0;&quot;&gt;\n                                        Indaco&lt;br&gt;\n&lt;br&gt;\nTrento, Trento 38121,&lt;br&gt;\nItalia\n                                    &lt;/p&gt;\n                                &lt;/td&gt;\n                            &lt;/tr&gt;\n                        &lt;/table&gt;\n                    &lt;/td&gt;\n                &lt;/tr&gt;\n            &lt;/table&gt;\n        &lt;/td&gt;\n    &lt;/tr&gt;\n&lt;/table&gt;\n&lt;!-- End wrapper table --&gt;\n&lt;/body&gt;\n&lt;/html&gt;\n',1,'2022-09-13 08:23:36','Sales <sales@example.com>','andreagot16@gmail.com',NULL,NULL);
/*!40000 ALTER TABLE `mageplaza_smtp_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_content_asset`
--

DROP TABLE IF EXISTS `media_content_asset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_content_asset` (
  `asset_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `entity_type` varchar(255) NOT NULL COMMENT 'Content type',
  `entity_id` varchar(255) NOT NULL COMMENT 'Content entity id',
  `field` varchar(255) NOT NULL COMMENT 'Content field',
  PRIMARY KEY (`entity_type`,`entity_id`,`field`,`asset_id`),
  KEY `MEDIA_CONTENT_ASSET_ASSET_ID` (`asset_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Relation between media content and media asset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_content_asset`
--

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

--
-- Table structure for table `media_gallery_asset`
--

DROP TABLE IF EXISTS `media_gallery_asset`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_gallery_asset` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `path` text DEFAULT NULL COMMENT 'Path',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `description` text DEFAULT NULL COMMENT 'Description',
  `source` varchar(255) DEFAULT NULL COMMENT 'Source',
  `hash` varchar(255) DEFAULT NULL COMMENT 'File hash',
  `content_type` varchar(255) DEFAULT NULL COMMENT 'Content Type',
  `width` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Width',
  `height` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Height',
  `size` int(10) unsigned NOT NULL COMMENT 'Asset file size in bytes',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`id`),
  KEY `MEDIA_GALLERY_ASSET_ID` (`id`),
  FULLTEXT KEY `MEDIA_GALLERY_ASSET_TITLE` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Media Gallery Asset';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_gallery_asset`
--

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

--
-- Table structure for table `media_gallery_asset_keyword`
--

DROP TABLE IF EXISTS `media_gallery_asset_keyword`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_gallery_asset_keyword` (
  `keyword_id` int(10) unsigned NOT NULL COMMENT 'Keyword Id',
  `asset_id` int(10) unsigned NOT NULL COMMENT 'Asset ID',
  PRIMARY KEY (`keyword_id`,`asset_id`),
  KEY `MEDIA_GALLERY_ASSET_KEYWORD_ASSET_ID` (`asset_id`),
  KEY `MEDIA_GALLERY_ASSET_KEYWORD_KEYWORD_ID` (`keyword_id`),
  CONSTRAINT `MEDIA_GALLERY_ASSET_KEYWORD_ASSET_ID_MEDIA_GALLERY_ASSET_ID` FOREIGN KEY (`asset_id`) REFERENCES `media_gallery_asset` (`id`) ON DELETE CASCADE,
  CONSTRAINT `MEDIA_GALLERY_ASSET_KEYWORD_KEYWORD_ID_MEDIA_GALLERY_KEYWORD_ID` FOREIGN KEY (`keyword_id`) REFERENCES `media_gallery_keyword` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Media Gallery Asset Keyword';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_gallery_asset_keyword`
--

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

--
-- Table structure for table `media_gallery_keyword`
--

DROP TABLE IF EXISTS `media_gallery_keyword`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_gallery_keyword` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Keyword ID',
  `keyword` varchar(255) NOT NULL COMMENT 'Keyword',
  PRIMARY KEY (`id`),
  UNIQUE KEY `MEDIA_GALLERY_KEYWORD_KEYWORD` (`keyword`),
  KEY `MEDIA_GALLERY_KEYWORD_ID` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Media Gallery Keyword';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_gallery_keyword`
--

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

--
-- Table structure for table `mview_state`
--

DROP TABLE IF EXISTS `mview_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mview_state` (
  `state_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'View State ID',
  `view_id` varchar(255) DEFAULT NULL COMMENT 'View ID',
  `mode` varchar(16) DEFAULT 'disabled' COMMENT 'View Mode',
  `status` varchar(16) DEFAULT 'idle' COMMENT 'View Status',
  `updated` datetime DEFAULT NULL COMMENT 'View updated time',
  `version_id` int(10) unsigned DEFAULT NULL COMMENT 'View Version ID',
  PRIMARY KEY (`state_id`),
  KEY `MVIEW_STATE_VIEW_ID` (`view_id`),
  KEY `MVIEW_STATE_MODE` (`mode`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='View State';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `mview_state`
--

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

--
-- Table structure for table `newsletter_problem`
--

DROP TABLE IF EXISTS `newsletter_problem`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_problem` (
  `problem_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Problem ID',
  `subscriber_id` int(10) unsigned DEFAULT NULL COMMENT 'Subscriber ID',
  `queue_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Queue ID',
  `problem_error_code` int(10) unsigned DEFAULT 0 COMMENT 'Problem Error Code',
  `problem_error_text` varchar(200) DEFAULT NULL COMMENT 'Problem Error Text',
  PRIMARY KEY (`problem_id`),
  KEY `NEWSLETTER_PROBLEM_SUBSCRIBER_ID` (`subscriber_id`),
  KEY `NEWSLETTER_PROBLEM_QUEUE_ID` (`queue_id`),
  CONSTRAINT `NEWSLETTER_PROBLEM_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  CONSTRAINT `NLTTR_PROBLEM_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Problems';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_problem`
--

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

--
-- Table structure for table `newsletter_queue`
--

DROP TABLE IF EXISTS `newsletter_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_queue` (
  `queue_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue ID',
  `template_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Template ID',
  `newsletter_type` int(11) DEFAULT NULL COMMENT 'Newsletter Type',
  `newsletter_text` text DEFAULT NULL COMMENT 'Newsletter Text',
  `newsletter_styles` text DEFAULT NULL COMMENT 'Newsletter Styles',
  `newsletter_subject` varchar(200) DEFAULT NULL COMMENT 'Newsletter Subject',
  `newsletter_sender_name` varchar(200) DEFAULT NULL COMMENT 'Newsletter Sender Name',
  `newsletter_sender_email` varchar(200) DEFAULT NULL COMMENT 'Newsletter Sender Email',
  `queue_status` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Queue Status',
  `queue_start_at` timestamp NULL DEFAULT NULL COMMENT 'Queue Start At',
  `queue_finish_at` timestamp NULL DEFAULT NULL COMMENT 'Queue Finish At',
  PRIMARY KEY (`queue_id`),
  KEY `NEWSLETTER_QUEUE_TEMPLATE_ID` (`template_id`),
  CONSTRAINT `NEWSLETTER_QUEUE_TEMPLATE_ID_NEWSLETTER_TEMPLATE_TEMPLATE_ID` FOREIGN KEY (`template_id`) REFERENCES `newsletter_template` (`template_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_queue`
--

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

--
-- Table structure for table `newsletter_queue_link`
--

DROP TABLE IF EXISTS `newsletter_queue_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_queue_link` (
  `queue_link_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue Link ID',
  `queue_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Queue ID',
  `subscriber_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Subscriber ID',
  `letter_sent_at` timestamp NULL DEFAULT NULL COMMENT 'Letter Sent At',
  PRIMARY KEY (`queue_link_id`),
  KEY `NEWSLETTER_QUEUE_LINK_SUBSCRIBER_ID` (`subscriber_id`),
  KEY `NEWSLETTER_QUEUE_LINK_QUEUE_ID_LETTER_SENT_AT` (`queue_id`,`letter_sent_at`),
  CONSTRAINT `NEWSLETTER_QUEUE_LINK_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  CONSTRAINT `NLTTR_QUEUE_LNK_SUBSCRIBER_ID_NLTTR_SUBSCRIBER_SUBSCRIBER_ID` FOREIGN KEY (`subscriber_id`) REFERENCES `newsletter_subscriber` (`subscriber_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_queue_link`
--

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

--
-- Table structure for table `newsletter_queue_store_link`
--

DROP TABLE IF EXISTS `newsletter_queue_store_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_queue_store_link` (
  `queue_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Queue ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  PRIMARY KEY (`queue_id`,`store_id`),
  KEY `NEWSLETTER_QUEUE_STORE_LINK_STORE_ID` (`store_id`),
  CONSTRAINT `NEWSLETTER_QUEUE_STORE_LINK_QUEUE_ID_NEWSLETTER_QUEUE_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `newsletter_queue` (`queue_id`) ON DELETE CASCADE,
  CONSTRAINT `NEWSLETTER_QUEUE_STORE_LINK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Queue Store Link';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_queue_store_link`
--

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

--
-- Table structure for table `newsletter_subscriber`
--

DROP TABLE IF EXISTS `newsletter_subscriber`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_subscriber` (
  `subscriber_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Subscriber ID',
  `store_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Store ID',
  `change_status_at` timestamp NULL DEFAULT NULL COMMENT 'Change Status At',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `subscriber_email` varchar(150) DEFAULT NULL COMMENT 'Subscriber Email',
  `subscriber_status` int(11) NOT NULL DEFAULT 0 COMMENT 'Subscriber Status',
  `subscriber_confirm_code` varchar(32) DEFAULT 'NULL' COMMENT 'Subscriber Confirm Code',
  `mp_smtp_email_marketing_synced` smallint(6) DEFAULT 0 COMMENT 'Mp SMTP Email Marketing synced',
  PRIMARY KEY (`subscriber_id`),
  KEY `NEWSLETTER_SUBSCRIBER_CUSTOMER_ID` (`customer_id`),
  KEY `NEWSLETTER_SUBSCRIBER_STORE_ID` (`store_id`),
  KEY `NEWSLETTER_SUBSCRIBER_SUBSCRIBER_EMAIL` (`subscriber_email`),
  CONSTRAINT `NEWSLETTER_SUBSCRIBER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Newsletter Subscriber';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_subscriber`
--

LOCK TABLES `newsletter_subscriber` WRITE;
/*!40000 ALTER TABLE `newsletter_subscriber` DISABLE KEYS */;
INSERT INTO `newsletter_subscriber` VALUES (1,1,'2022-08-25 12:51:53',4,'laura.berto@ftcoop.it',3,'8d17vljjbkwa1xhfzzq3t4jvv0ahxtv3',0);
/*!40000 ALTER TABLE `newsletter_subscriber` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletter_template`
--

DROP TABLE IF EXISTS `newsletter_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletter_template` (
  `template_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Template ID',
  `template_code` varchar(150) DEFAULT NULL COMMENT 'Template Code',
  `template_text` text DEFAULT NULL COMMENT 'Template Text',
  `template_styles` text DEFAULT NULL COMMENT 'Template Styles',
  `template_type` int(10) unsigned DEFAULT NULL COMMENT 'Template Type',
  `template_subject` varchar(200) DEFAULT NULL COMMENT 'Template Subject',
  `template_sender_name` varchar(200) DEFAULT NULL COMMENT 'Template Sender Name',
  `template_sender_email` varchar(200) DEFAULT NULL COMMENT 'Template Sender Email',
  `template_actual` smallint(5) unsigned DEFAULT 1 COMMENT 'Template Actual',
  `added_at` timestamp NULL DEFAULT NULL COMMENT 'Added At',
  `modified_at` timestamp NULL DEFAULT NULL COMMENT 'Modified At',
  `is_legacy` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Should the template render in legacy mode',
  PRIMARY KEY (`template_id`),
  KEY `NEWSLETTER_TEMPLATE_TEMPLATE_ACTUAL` (`template_actual`),
  KEY `NEWSLETTER_TEMPLATE_ADDED_AT` (`added_at`),
  KEY `NEWSLETTER_TEMPLATE_MODIFIED_AT` (`modified_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Newsletter Template';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletter_template`
--

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

--
-- Table structure for table `oauth_consumer`
--

DROP TABLE IF EXISTS `oauth_consumer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_consumer` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE current_timestamp() COMMENT 'Updated At',
  `name` varchar(255) NOT NULL COMMENT 'Name of consumer',
  `key` varchar(32) NOT NULL COMMENT 'Key code',
  `secret` varchar(128) NOT NULL COMMENT 'Secret code',
  `callback_url` text DEFAULT NULL COMMENT 'Callback URL',
  `rejected_callback_url` text NOT NULL COMMENT 'Rejected callback URL',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `OAUTH_CONSUMER_KEY` (`key`),
  UNIQUE KEY `OAUTH_CONSUMER_SECRET` (`secret`),
  KEY `OAUTH_CONSUMER_CREATED_AT` (`created_at`),
  KEY `OAUTH_CONSUMER_UPDATED_AT` (`updated_at`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='OAuth Consumers';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_consumer`
--

LOCK TABLES `oauth_consumer` WRITE;
/*!40000 ALTER TABLE `oauth_consumer` DISABLE KEYS */;
INSERT INTO `oauth_consumer` VALUES (2,'2022-08-05 09:32:35','0000-00-00 00:00:00','Integration2','610dee75s27oe0jlx7dx8cyr5k275861','0:3:kRZR6qFBv68LoVyBXVJ6J7ShVv7Rrlp21m16gm/CpQ5gIbzMlzSerIZNXA23BbjL+fGYs++KiBCdMMlI',NULL,''),(3,'2022-08-05 10:26:44','0000-00-00 00:00:00','Integration3','maoz16zpthqi0keg8zp6slx44jsg92za','0:3:dg/uNlGe7EwO0KJUvVRe1abX+V1eg6uGvToCRKzxD8GYC9IM/SblFcYGCaO5Sq5QuE3X3dn+JMqdww83',NULL,''),(4,'2022-09-07 11:00:02','0000-00-00 00:00:00','Integration4','xtlmhulqaaz3eqot8morxwkh51m02zey','0:3:YwzG4be82JHGQA1hvgBz/r22YKNMkqRH7x8B0HGmk1hrI0y+ldl+J2o79yhiU7rnsLmW9VuSZvuykwWX',NULL,'');
/*!40000 ALTER TABLE `oauth_consumer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_nonce`
--

DROP TABLE IF EXISTS `oauth_nonce`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_nonce` (
  `nonce` varchar(32) NOT NULL COMMENT 'Nonce String',
  `timestamp` int(10) unsigned NOT NULL COMMENT 'Nonce Timestamp',
  `consumer_id` int(10) unsigned NOT NULL COMMENT 'Consumer ID',
  PRIMARY KEY (`nonce`,`consumer_id`),
  KEY `OAUTH_NONCE_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` (`consumer_id`),
  KEY `OAUTH_NONCE_TIMESTAMP` (`timestamp`),
  CONSTRAINT `OAUTH_NONCE_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='OAuth Nonce';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_nonce`
--

LOCK TABLES `oauth_nonce` WRITE;
/*!40000 ALTER TABLE `oauth_nonce` DISABLE KEYS */;
INSERT INTO `oauth_nonce` VALUES ('817875523',1663317230,3),('689157973',1663317775,3),('63420665',1663318373,3),('647b41613abc5951fc746d077928daba',1663318765,2),('f97138ae22227bab0120a2471d49e95c',1663318882,2),('1363796831',1663319001,3),('a2eaf40f8bfd0febd4149722a272342a',1663319258,2),('923c6b69cea2a58e30e6a2a675f2f9e0',1663319282,2),('c5fb0bb04a5e49e6a770eae21cd6fb73',1663319282,2),('1144412874',1663319609,3),('eb3128d859781353fbddac58e88b0bd7',1663319950,2),('0b4a0013ce58a2dc960711c2e2d957ec',1663320031,2),('72496381d0d76e5fd9af5dea8a92b131',1663320067,2),('424500718',1663320216,3),('3e9351c877aac90a8407b3d0780eb503',1663320266,2),('9ad5633510643429b7340c5d668a3180',1663320266,2),('f5069dfa52c48b693a76a3637cbd6ce4',1663320267,2),('f6c5a4d6e30ccbe9582df19c8013e658',1663320267,2),('004db682ef2328a5a6a2b6f4accaa430',1663320800,2),('a1b2f846824a46114ebab9a41b278240',1663320800,2),('d08da1513f25965b4b6cbb0fbf3c78f6',1663320800,2),('de875caf0a321565d835b5d54e6fb5af',1663320800,2),('e00b13e9677682684cba0695052f2e9c',1663320809,2),('854946915',1663320829,3),('fd2fc1b7c57df81afbf8197c4bcc1e42',1663320969,2),('347f983016616a542823784b714fb944',1663320987,2),('37abcbdf3872dce768677f415da196e7',1663320987,2),('b161651a9deb47806f4095ce352d3cef',1663320987,2),('cc40231af6a58cb5f8fbee432c59382f',1663320987,2),('d4c725d538ce437be44d8f11453b5baf',1663320999,2),('0c38a6c7e6264be0b086ca3b8fe9df5b',1663321005,2),('58994dbf9b2c3a56928cb09e526727c4',1663321005,2),('64124d4c9787c5eb24faa33f0218d242',1663321005,2),('bdbaf966c008ec3150f96fb4eb583ea0',1663321005,2),('407bb6070978e618d5b091b89821267f',1663321011,2),('3b3161798878579d63f510d56133e57d',1663321017,2),('40104d3e4cff9158eee09751f8d721b1',1663321017,2),('6fa897890e5bec70b5a2b4043da44ed6',1663321017,2),('e347cb5524ef577848a957c83e056802',1663321017,2),('8bca61716ee440b4e25f8d5f04193bdd',1663321024,2),('616ce19801be8a101543af5759c84625',1663321032,2),('8fd40d10b4a4e29df45623597070c95d',1663321032,2),('2c49eba6a2f5ab60091688a45b42aef9',1663321033,2),('591ab9f6eb25be4aba91be9bc55e75e5',1663321033,2),('e63abb4a284e159a3f5f47bdf6a63935',1663321037,2),('6cba79ea40b14e5a783b3c6adb035811',1663321049,2),('520bbcdb4f438a3b1dd40d8c4bea5ea9',1663321050,2),('a993f1a57a973496ff19e1fec622c47d',1663321050,2),('d7fc15c097c3b0b39505756ca045b849',1663321050,2),('a184c1672a3c0853b614faba08187054',1663321053,2),('dd1ae6fef9017c633878a8b01392b4cd',1663321066,2),('ff541e877704c563364f22ee4e4e6708',1663321066,2),('03006ea0b3f53258278bc7466e6ba296',1663321067,2),('c8715333816a1f0534c0697ec2c83669',1663321067,2),('bc95585f95f581487b80e442e6101ffd',1663321071,2),('a2bb7b095e02c1d40cdf6f1417e371f7',1663321091,2),('83fa953b3526308fea70c5471c91c3ab',1663321092,2),('a7d470352b053ac961399d865ccb4dbd',1663321092,2),('f23225e07cb7a831dd05cdd6aeb04d65',1663321092,2),('de0f6976c5a0f1e66b95aa8a115e7ee5',1663321096,2),('5725992e3d86430b66d0cca27c3a8b13',1663321111,2),('5f2c6a933f3d00f5fd0cbc340d9560ac',1663321111,2),('71ed03c53dfe1bfd87beb7b016954e17',1663321111,2),('d0aa5f1564d8081aaab631d49c32780a',1663321111,2),('868729bbe72a1c60ae86ad497cfc1719',1663321116,2),('21f04a75726257a78a803214f7ae8412',1663321128,2),('2b2ac58945cdf4e915429af84d753d14',1663321128,2),('7439279ec89300946f162f8dd5ce1c7f',1663321128,2),('e2299b81a5f9b4d94148c07cbee2f521',1663321128,2),('194b238a2f765662f6968a0ca5e153b8',1663321133,2),('7d7ffd6c0a770992a17eb600dd89bb38',1663321145,2),('ab38c26a907bf9478a19e86ca1e148ce',1663321145,2),('adb00dc4e1728387438319127d5075d4',1663321145,2),('c35a8486596dad17d0c6d910abf8d314',1663321145,2),('287863807f4c7efc9a7d2a60e54a8642',1663321151,2),('4ec6f61aef65a280246f99c4be7a702c',1663321162,2),('c4f10837a8656848f0005342bab4bb17',1663321162,2),('c66f19a9ea08c2d298483c9d9d9fb023',1663321162,2),('e2836c74eff58b573231d6f07230b95b',1663321162,2),('a9a14eb09c0a1cf1c5b1ded047e67361',1663321164,2),('b080dd4facce497ef1c4f7e32adc05d7',1663321186,2),('bed523cf4c7a57d1ef626922df210b8f',1663321186,2),('8c7e7d58aa72ca006386f3b67845ae03',1663321187,2),('ccc646c9022fcc11305289806617be11',1663321187,2),('4313fd4ea93c17ac106c8ec32c9313da',1663321191,2),('ec9c1ebeb4f4bff5125086d0ce8e21be',1663321201,2),('6932dea28f25bda75f12df1a76ec8413',1663321202,2),('a434cc4f86eca04efb1e70717b115b2a',1663321202,2),('e2b6ce82ae8bccdcee37752977441ecb',1663321202,2),('e2cc454152d8ffbee059b03ecbf0ce8f',1663321206,2),('74de9d1daec2fd79de8801d5b1ad2322',1663321220,2),('8ba538d0484b24d9c822911282335387',1663321220,2),('a6f1b327dfa5dba28a07e3b7992ee384',1663321220,2),('d07438a0a7aa4a69cd5698e4804a182b',1663321220,2),('b945e2013014495653b4162adbc79a5d',1663321225,2),('04acd472b597562e94c14f8c14a9dedf',1663321243,2),('23d93738b97201d1491162b60f2559a1',1663321243,2),('5e402be4e2b58142d0343fb4444e262b',1663321243,2),('81a5a9150d13abbaf8470731f1f291a5',1663321243,2),('29d530698caf4c4b24f9b2d5caa91b40',1663321249,2),('0253c208f6821847b0dd70db46152c17',1663321258,2),('8dffa5119a7bcfc9d5d7c7438a79f2aa',1663321258,2),('4623de63c426cc0260142765b36e139e',1663321259,2),('bd9a65840f4952755d256ec3b5f1f083',1663321259,2),('63868bcd1edca17253aa2fe053c80aff',1663321265,2),('0ab6adc560b24068eccd87092b7ffae9',1663321294,2),('173cbc528c4051f1a186b28fef5d4e88',1663321294,2),('43e0e2e4f0ca04282af25979383698df',1663321294,2),('f3172fea11ee1d4d8e6e9397b964d01a',1663321294,2),('51203787424f28bef5f5e0633fa785f4',1663321299,2),('73adaba6a23a02f68a0ad2f110b7e62f',1663321311,2),('b49c3dd278d2f03b24a145eff4af5557',1663321311,2),('cb203c5b0166f4ebd4379cd573ea6d9a',1663321311,2),('cf921339951e877e45b6693243ca4a2f',1663321311,2),('d3eee7eb8a8430f362cf65a028f2d367',1663321316,2),('5a8c657e688eea813ab51160096052ed',1663321328,2),('b6647629ff030d0654477aef16942556',1663321328,2),('37da07470ab96ca7eb11f41eb3087e69',1663321329,2),('a68f72d22f5471608b59d4fb35a86eff',1663321329,2),('4ed7dc299d151a7c5298fb0a03520971',1663321334,2),('5fc3ea64531235d345477491a2a254d6',1663321348,2),('9bd4461371567f49182869e80875868d',1663321348,2),('9f4161d691a11340b8f00675649e0a91',1663321348,2),('fac83a08221334e48c1e3339a3cec538',1663321348,2),('55eefe69f3a9f4b27ed4b508875a631c',1663321351,2),('5b306acf4bcdbbfaf16f81e40298d1e3',1663321368,2),('bd4c3939012461f5fb48cf60301e4eee',1663321368,2),('cd23405d9afebf48461421c0805d21ed',1663321368,2),('f341fe6993893ed24ad7a6ff83896f8c',1663321368,2),('4d3f61e9e88bc70d4b76931bd664d358',1663321372,2),('25ebe3e88e9457d4cac4c5ef9d9a8342',1663321387,2),('2801f45dcd2919a6b7db7c6f1dadb0a1',1663321387,2),('89ac920c4bf105c5013ec0fa3a4f7318',1663321387,2),('ea8df88ef198633794a52812fb4b97c1',1663321387,2),('99dd53b1e46ff9298f8f10947323d3ef',1663321390,2),('05c083a80858a7d4d06eecad9d5ff221',1663321417,2),('46b4299eed2b79542e3aa0bc552d11c6',1663321417,2),('ebc64f238c5083eef22c66e942c2332a',1663321417,2),('f6b1cf843b7958bfe9fdd01d7e238162',1663321417,2),('94c21776d52aaeb1ebdaf3d56916b50c',1663321420,2),('b8d9e7bed1e706978d71d445789f63c9',1663321433,2),('cd53028accb4ebc75f9cf9457ab54a4a',1663321433,2),('ed8569ea654720a615b98178a9789d83',1663321433,2),('f6bc92c1cf9f1b9c2413efb404cc6de5',1663321433,2),('a5d888c92743dc57f194b9eadf1e2958',1663321437,2),('1421661234',1663321446,3),('64a802cdeb624e2b379527b5c87c436a',1663321453,2),('a47c36f271dcb46c0b1e4c873fbd80bb',1663321453,2),('cf979c3f8846d19fdc67bb886b9713cf',1663321453,2),('d6b595714f34c268748b5e559a0d6d7d',1663321453,2),('cd28d0ca8c6a7bf2a612c57dcf0e0794',1663321456,2),('0c1ebde3605de8d30676e81e7eaedf09',1663321563,2),('36cb7af2b19ed7480f4cb0b3d18830c9',1663321563,2),('504238238d29d1d65cce965e5a0dd899',1663321563,2),('36316c040f6670c375eb7b3ff67385c6',1663321564,2),('ab0c1ca01028c01c6b32b6b62dbf73e0',1663321571,2),('9336dc6528bab24701eaae6d58db7887',1663321583,2),('b4f6eb21fd70918811c58f28959c5f44',1663321583,2),('c2f3a663c057d2b52a61b4b44d47a54b',1663321583,2),('ced753cf32a40a985445a50caaff1d57',1663321583,2),('f45b52da528de7599652dae87ed7792f',1663321585,2),('0c68ac96cf98669109a612ceabd3cabd',1663321592,2),('988cdd82b5002a30dabb1b00344ed0fa',1663321592,2),('4e2681f5306dd91459a20692bfb34984',1663321593,2),('a9889d343fc6e2668488657eb84d09a4',1663321593,2),('40fc5c10e0c48279548754fdef5b029e',1663321599,2),('0bf5d49fbbb9144ad2a3f5437fb18d8a',1663321611,2),('6a31f5585cefaa88de67d7f8e6e7043b',1663321611,2),('7bf29bf786bfce2646766f98d006a9b4',1663321611,2),('f7ce623dc71166cee48872b4bdbe6209',1663321611,2),('85fd9b347b3b36576c1310d3e3d435c7',1663321614,2),('0959189a8b866d46eece0835b265d21f',1663321621,2),('14de8373a313c024ef4c9857a3ce6e0f',1663321621,2),('45d3aaaeab8b81ccf918ec8ac65ac3cc',1663321621,2),('c5cf09a82cbb6857cfeddfd815e1e79f',1663321621,2),('c73556ba35b30b71f9c9fac41c828477',1663321624,2),('616327ba6e4e8943bb046eebc019eda9',1663321636,2),('79ffdc73ef44395060ab2b17abcaf38e',1663321636,2),('d461fdeae3b64b01a02fe6407e4fce10',1663321636,2),('e757e2dcb4a006dedeb2ebcfaed744a7',1663321636,2),('4fd91aa7ca8cecfba1693e9a56d4b409',1663321641,2),('6476cedc15292a3ea0c296bc8dc54295',1663321648,2),('8abb27ea8c819178cf87f669ccdf001a',1663321648,2),('b0b59ce569eb25847383c71e4d733f6e',1663321648,2),('c776029c9bd757ed1499919919d34122',1663321648,2),('18d4c0adf0e923a212f515e4bb28f8db',1663321650,2),('272ead49342cb04784ef86a8887bf1a6',1663321657,2),('42f2000faf12b91aa79c277166cc1b69',1663321657,2),('9fcbff6bb3a083148df0f827dbca7679',1663321657,2),('fb2dafb652b83706b8ae5a0e154dbac7',1663321657,2),('cc0a6c200aa4c7f016c7063db26074d8',1663321659,2),('3f86384b8b9ab210b0a4e6f9bcf45e13',1663321667,2),('8d25a149aff2841be742fbc1e69eb605',1663321667,2),('a0d863931fa65c43ddefbb2dc019da8c',1663321667,2),('fb5affd6a7a9318968214d988ee3722f',1663321667,2),('4672f302f4ae554cb0e25e5cdd77aba7',1663321670,2),('2a1158289f1e6222af00a9fa1b389528',1663321825,2),('8f8cbf5629ea0d97bade66b89879b54b',1663321825,2),('1fdbf46d788e919a9f4e12c7a489a5e9',1663321826,2),('9abd04665dbf42097b00e044f40a0f48',1663321826,2),('685ed8cff51569ec98b4b9223df74d6b',1663321913,2),('30d1718b5a2815015846cfdd77142030',1663321936,2),('7234162bfb1b8a2902376b6be37ccda6',1663321936,2),('a661d6fcb97a34538cd13dda7ae3de6a',1663321936,2),('b1510b8f6c5bf3a6b8e81dba4fe43760',1663321936,2),('30b1cd8636f32b8417a51da1e64615a6',1663321943,2),('049c4771c56f16b491c982dedf60be87',1663321950,2),('2d062696e436574eb45a6dca1212be4c',1663321950,2),('348d132944a182562c0e593059a9a3cf',1663321951,2),('3f0d6f58906bf469845e25fff9d748ba',1663321951,2),('25b5539e0970c2dbbd7ad261b64d8e98',1663321957,2),('0d90f72f5226a6fd17fb20a360571ba7',1663321963,2),('108c9719228f72f5db24b46225534f82',1663321963,2),('20be9f1f4ae5002ba89d82c2ca76cd09',1663321963,2),('5a26ae7f6a7f3f91283f8186725726f8',1663321963,2),('c2dd4a894eb524c73bf16b801a244212',1663321969,2),('10b1c314afa4879241dce10ef9f3b21f',1663321977,2),('1c86f4203fb340707f3bdfdd3af6d0ee',1663321977,2),('a7d10b24bf7ed8298e7c6e2bfd803f09',1663321977,2),('e55ff0bdd7fd9ce2f8ed9ecfdfa6c211',1663321977,2),('81c07cd8c65d63ef59c927d033c273fb',1663321983,2),('0c5f71f72f08af395c67119bde0767af',1663322002,2),('7ea212945c4abe81fd7c2646e7e176e1',1663322002,2),('8787a1b93ee800fd571630bdeab18d2c',1663322003,2),('feadd6afafeb992ad833dcdfd42ee19e',1663322003,2),('e4004344ec8373b6ca112e2109c6d0f7',1663322005,2),('1735080bb4ded2b3a7b8cf63e73950d5',1663322012,2),('7854f49ec5260369ebc93aecc1fdda1b',1663322012,2),('b28bdd23df10550de7e24b6b516b1c4b',1663322012,2),('e2e90e6e2812368bdb66385f31b561f1',1663322012,2),('337e8b73c381d64a16b92b06640ead72',1663322020,2),('44ca53fde6f7d3d8cc1e6859591688d9',1663322029,2),('64631c4d57a41caadf8c0984fd1f7aaf',1663322029,2),('cec26afc54ce27712d57a5a4679f6df5',1663322029,2),('da57a32594151a798e8af68082b19f3d',1663322029,2),('116b4ff8405a047de068e42e473b4969',1663322039,2),('5353b990f6fd86f913b619939e750483',1663322039,2),('6328eda7d03157a5a1dd55d799e6a1c0',1663322039,2),('66cd67c1bb76a1b1ddb0013b080451c2',1663322039,2),('b15102b0bee38fc34e1e42f68a8437ff',1663322044,2),('1270202832',1663322057,3),('27190f542c8889261cf70b2f99606485',1663322169,2),('a5b4dc70a96c92c8eeb65c76ef00f8b6',1663322169,2),('d8f44490641f9f6cb2ea4d6a5a3f2c0a',1663322169,2),('f0aa0ef1d2e1f0ae7d191680d36c1b65',1663322169,2),('3d2c75d8c246dfd4847d97fdc3c41404',1663322181,2),('88317a2a4cfb8677437ae5f276531bcb',1663322181,2),('ae0c920bbb6b274ef946987f7e4a06db',1663322181,2),('b9643a36734b78a2131e38c5484e974e',1663322181,2),('aa60cfa131479ff0ba3544560b3da21d',1663322199,2),('238a1918b7e562b20ea1abc11452d219',1663322200,2),('2773b5c6fc19087da13cb6ca175ad98d',1663322200,2),('ed85f85fffc8c3842427998083f30d89',1663322200,2),('42085c9fcd4c680774b54be69a35f300',1663322265,2),('a3b601c45675180b2a93a9543f0ebe3c',1663322265,2),('ddc7d8f34222e580d40b95185a37bf9d',1663322265,2),('e1d99bb33f8f5cf11b5874c5f4ab9544',1663322265,2),('feff1589cee15cc836978d6a41d5a958',1663322277,2),('aa44f701492d6eeef9cfe9d9dfada10f',1663322283,2),('f19b173bbae96422953ddf12815ee4a4',1663322283,2),('2f15408fb1951ce1fb91db31ac425e12',1663322284,2),('c6b832f731504cb6a827753ddd35b765',1663322284,2),('eddd4c91cc7905561e832c267083827d',1663322300,2),('2ed95dc45013732b8d8154f070a6bc60',1663322306,2),('632a82969416a9d3419f1a43bf4520b9',1663322306,2),('c330ba6e2d9c89b6983ecee8f6cb4436',1663322306,2),('f01f365e8f9638317c7ed3d82d89517e',1663322306,2),('cc78d4dc7d82c6822607c7611a3dbce5',1663322321,2),('0c15d249b1990f12da5e029bfc6e1f2c',1663322326,2),('2ca749f05cd2c66acbc5713d7115d09f',1663322326,2),('da61815258a4036761f1d14f73d93159',1663322326,2),('f47532830004f8d5f54a9c2e68254259',1663322326,2),('694a44a9689ea21c35e4b8339b1ad438',1663322340,2),('457dbe1f4075eb8307c8a0e0601de1d5',1663322349,2),('4017023c8f3690f8cde964894b16b6e8',1663322350,2),('dfad5baee17811e602eb2dc0ecdfac38',1663322350,2),('eacc392ca87c7e4f7a4b7bae40e4e7a8',1663322350,2),('4208002f948a42bd2d775e25be2354aa',1663322366,2),('f0d6c23f1070d07a1f8f83cc4ae06fe2',1663322373,2),('3812c7e53dfc66f84b15e6dccfb1cff7',1663322374,2),('4428f848038283f3ad4aefe622cf249c',1663322374,2),('4b6f3bfb37ecb37cea00ac377f26473c',1663322374,2),('b7931d8aa40298d92f63a4eec75f9149',1663322384,2),('271fadbe71d7592c6ddddd5ad28cd1b8',1663322391,2),('5c9ecf7c094d9c32d51a87668b184b3d',1663322391,2),('bfb990c0a4b316814606b4612134d616',1663322391,2),('cfaef6c30e823ff0fe3934ab108ed685',1663322391,2),('935049186ae21d28a002b5e08956066d',1663322400,2),('2c225e67c38522f91152836c48940f69',1663322406,2),('381874ea9bf6a0d99c24a6e01bdee57b',1663322406,2),('e61582ea034e8fb08253bbf2dc2e1d8d',1663322406,2),('e5e772a3d22cdae8e439f9c11ff0599d',1663322407,2),('e56eca1249235916634f57054e5f7fd2',1663322427,2),('3aab68aeb1f6a6822ad7f63947045a5f',1663322458,2),('3ac591a4b842754166465e5d270d1ccf',1663322458,2),('5ab354cb69bba54f7839544c3045862c',1663322458,2),('84d8a75bbd9a473da11c029276010216',1663322458,2),('540615c6f183e406fa4fb7366f5f0f6e',1663322465,2),('48212b598b051efae483296531efc0e8',1663322470,2),('2a4691270016cfaae8fda318d22f2761',1663322471,2),('5fbc7eb2ff54266d52cdf8891fddf954',1663322471,2),('fafc7feb6a5c6dc2bcd18cda9742e48e',1663322471,2),('f61193dade9cc9ff3dd4f5c0c1174842',1663322481,2),('302e76238c83eec29573e9a88c4e054d',1663322486,2),('899c97d79d8ae2c7d67cceb760038253',1663322486,2),('26b2ec9bc7620f4e5e32ed3601555420',1663322487,2),('d299323151d7465b3762a5e5b9b39fc3',1663322487,2),('95fd4b4a16aebcc01fa3670237f6ab41',1663322493,2),('0f19f2cac8ae0023cc39d3e275ae357c',1663322498,2),('47c4a8cad0c50b62f6adab5a5ae9665d',1663322498,2),('608c6d70fdf2b1ec873c9ebc00f01adf',1663322498,2),('3a1597ab904b3a74425eec5bdd48e1ac',1663322499,2),('0c0acce08cf9ef75c044988aca9142d8',1663322506,2),('3215320a1265f7b6b4c0bb88100e9f60',1663322512,2),('3fe1d2b13f1856187fa8d7d9674f32f5',1663322512,2),('81cbb1d0d687f05045b864983f832ac1',1663322512,2),('9f2a1eac5871775c6d55289867e5dcd9',1663322512,2),('678595115',1663323262,3),('919754492',1663323880,3),('0ad52125f059184dcc4a75d171d09f2f',1663324014,2),('9f07c95118731ea8071d6c93b55343a7',1663324014,2),('a08a76fdf04f207da3ddcf6c5ad35f58',1663324019,2),('d64de19bc84ac5315578261b1cd267f6',1663324019,2),('49977e5f5d994e27c8513fc159577114',1663324030,2),('67c5ebbe44594ff3f628f625e32b2527',1663324030,2),('91e5c354b740022fdc0d6f9e0ded466c',1663324048,2),('e56329cc73fd87181763759822662e13',1663324048,2),('ac8fba202839c33d8df8e3bf14261694',1663324052,2),('ff7564242c91b21ac916ccad3808ec19',1663324052,2),('02ccd8e849fc84c1dfb4db1009e89330',1663324057,2),('7031e05b0402507f33fd3c636e39d1db',1663324057,2),('0a4d1a625b2e509cf617084fa823c626',1663324059,2),('df086aea72ebb22bc2ce484d7d250bec',1663324059,2),('1762080449',1663324483,3),('1791417258',1663325107,3),('1513627128',1663325705,3),('1771869058',1663326932,3),('1360096521',1663327534,3),('695eae48d0a7a153a50c912086b561bd',1663328029,2),('c9ba41ddc930932c0d99824238d34e56',1663328029,2),('61550ff00bc5c5a446f2ea2b54167a61',1663328030,2),('133a0403df11224e6794ced816a6c820',1663328038,2),('3415ecae57d5bed70f2919766d66ac4a',1663328038,2),('da0d6bfcfbc5b26efaa0da08d328f845',1663328039,2),('e26dc04f40d422a5ac0dca43aaba8641',1663328039,2),('afb218cbc56bbf7857294d185681d7f3',1663328040,2),('33d4dd4d7beab2e5802fbd72781f2b7d',1663328048,2),('d5fdf9fb730717cb0d901699d04627fb',1663328048,2),('eb53855f0d6b46085e9ad7ef6b6f53d3',1663328048,2),('fecc379eedebab7724cbda7358e2e24b',1663328048,2),('1565535724',1663328144,3),('1244445546',1663328744,3),('551743270',1663329351,3),('370428986',1663329963,3),('616482266',1663330566,3),('11138807',1663331186,3),('81380982',1663331794,3),('2073274054',1663332408,3),('4d7f1735a3446fab0635196d1019778e',1663332651,2),('9ee433009a4b0e35390c76bfe82ddeef',1663332651,2),('cde375d48d2253ea6dfcdaac837a52c6',1663332660,2),('f74d744d41c5fdc493f7791060507d98',1663332660,2),('0d6deca4768ddb2e775241a305c2a923',1663332664,2),('55db2b13e3e1866fcaa275ab840e1840',1663332664,2),('810233b216617215681f300f4376c764',1663332664,2),('8c9a3af3fce2d2b5bff7d2d085810fa8',1663332664,2),('1767025ea19a2110a0bc6ef1e3a799e3',1663332688,2),('6a53e0fd66e0722040878780dccfcaf9',1663332954,2),('bf67b6f1d958dc8c526515e60aeadfd7',1663332954,2),('d886e0f5ab90c71961ad1246151428e6',1663332954,2),('ed0621c63eb3929d53d497422d85479a',1663332954,2),('f307ce60676f9d5438650a040f603cd7',1663332966,2),('c6d6fa4ee100b7ef1cae7369dba9153c',1663332981,2),('1339805878',1663333005,3),('829d6f4aa29f5878b475c3c94f0436ab',1663333032,2),('5abf98c2134d63c7957e829cb4655ed3',1663333128,2),('5ac7bfc625f684f693a755d835b3251d',1663333128,2),('6724100a4d84bb1bbc6646bfa1e11a98',1663333128,2),('c12962c344220c5e19bf63ce2a383414',1663333128,2),('0464b713a5e9d160262c7534d23b5e13',1663333190,2),('b71e6a934af06b82784bf9c30da67f33',1663333317,2),('1727836448',1663333610,3),('360101b078a008e1c1c186226be7a700',1663334161,2),('3aec988cff53cf947487a9229b294b2c',1663334161,2),('4e7fdd4821db970bcd634f5157f13eae',1663334161,2),('83d48b69c487bbf4c7ec88c88de66a89',1663334161,2),('34021b3fcd6bd2909e07c50871c1dbbb',1663334183,2),('530873353',1663334260,3),('2fe6deb8936d443bbb4065eec3095696',1663334495,2),('112169b36fffc9d1536686e35f557da1',1663334520,2),('57a1580d8d6c4ec8e2702f09fb6f3b06',1663334520,2),('a6cb713519ea860d59d129f6fd382626',1663334520,2),('f3f105721464381e90c61c3f95cc9298',1663334520,2),('c91aded6bc47f7455fe7bdf99108d46c',1663334524,2),('e04e81b33411e769d99f68fd93cc9063',1663334556,2),('23bda089f963538986a6de71b549d186',1663334625,2),('4af614dd9bd45b17330e6870e1304944',1663334666,2),('ebe4fb7f8aa97f05c79cba0b56dba138',1663334666,2),('83c7f36a53eb31cf29b9819d984e02db',1663334671,2),('19caf94210e07e5efc19e2d213ef24c6',1663334674,2),('986830e4011ff907964422a8592ca050',1663334674,2),('c171852e13b0784e19df3c29f40ea51c',1663334674,2),('ffa48f1e698c6e7923ab34ccecacefcd',1663334674,2),('56e906dd4a1e7b8ad13128b85041e2e4',1663334681,2),('6c46f6ea070beb17f95b5c97a96d6977',1663334693,2),('d5ee6bf08f19f74c5d7a468975a67773',1663334693,2),('e455ff04fbc1da16c2b2a70f24777649',1663334700,2),('02c7ec0f1e52d6cfc87c2d97bee9b624',1663334743,2),('903b54eeda94cbe760b131dca321d1f1',1663334743,2),('99c6d60237bcfd2a517fb94f4c7a438f',1663334743,2),('cd42fb55c0c62d088644500a62f69351',1663334743,2),('1716515215',1663334839,3),('028d40df8951469530b1f9de17312b15',1663335159,2),('0c451d0a947a7d8a9a730b2a4bfa19bc',1663335292,2),('777c13fdc55c00984a6ec9a70dc0b8db',1663335446,2),('1681779596',1663335447,3),('3f56337f79448b721d7212c5f593a999',1663335700,2),('bce345bae04ce86c27d54071a1e2242b',1663335776,2),('8f3197717c16c70e088f6e842d2436e8',1663335791,2),('5310b35759fc13cf9afda1dd877c3b32',1663335799,2),('d0999f101dda32d3d42fa3c532f992f1',1663335799,2),('371276022a4091a4b82d6c92542654fa',1663335814,2),('1efce3b7a7f312d7df5baf24b1fc00ce',1663335830,2),('45632f7c2ec377ff9789f420f0ced16d',1663335830,2),('5bd4c2f1e76aa394ec35d734f7447bd7',1663335830,2),('f6f8cb2d50d79e66839b798381fbb6fd',1663335830,2),('a3d1432a77895778c79d0e01c53e8aab',1663335849,2),('af809421a8e427dda080383b5821bbe2',1663335994,2),('f231252042e901142797f52efd3b7eb6',1663335994,2),('187504312',1663336061,3),('075330d7e036d1cc2c0d3b8baa0d91dc',1663336138,2),('4cf08fcef87ce629c71e498945e17dea',1663336151,2),('27c4776c3ec6ea08b0aae9b8ca2ff313',1663336162,2),('be997bfd0292c997db2d507b1b3f903e',1663336162,2),('b6c67b6a488b821c913a9798c275a400',1663336176,2),('67e6202f35421fae4944cbc079b97c33',1663336190,2),('9337b2a3d5b8ab4a9ea9f5b8d634c064',1663336190,2),('cd3bfcba430a24ec9feb4c4006df9f4a',1663336190,2),('d0bab2f4ad8e4e6232b53c3a27c85f4a',1663336190,2),('06ba29ea2ff5c17d242621cba7d7d47b',1663336196,2),('5c5925862c191c8b0398f46ccba97e61',1663336597,2),('5d5d2671f72ce3e7ce7594d2d6e96f47',1663336598,2),('949aee5069284887b8ee73802842f220',1663336598,2),('a081ca3d6bab504ccc0cebced90b0e94',1663336598,2),('56d767ca113edaa5c47d861a8447d369',1663336604,2),('d4c593f3cf6acb4f78ba702365e4dd72',1663336604,2),('c81a8aed76f248a92eabfbebb47f1f36',1663336606,2),('819954f6e2004525c4b574c7a0d0d079',1663336619,2),('119d6daf300a752053094cb2fd5e7fb1',1663336625,2),('b4f54e9a25c0a4f1688fa1a7ce7c9961',1663336625,2),('b32cfde454c5e2050cb19f7f173bbbf9',1663336637,2),('1426e389915c59a838172c739e55497a',1663336648,2),('674560037849724d24783a5022b3e35f',1663336648,2),('83592e30ca89b1c23ccb5e61a7bc17ff',1663336667,2),('1784476344',1663336673,3),('d74a0006d1310d8353d88ef694d3524f',1663336745,2),('852990621',1663337272,3);
/*!40000 ALTER TABLE `oauth_nonce` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_token`
--

DROP TABLE IF EXISTS `oauth_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_token` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `consumer_id` int(10) unsigned DEFAULT NULL COMMENT 'Oauth Consumer ID',
  `admin_id` int(10) unsigned DEFAULT NULL COMMENT 'Admin user ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer user ID',
  `type` varchar(16) NOT NULL COMMENT 'Token Type',
  `token` varchar(32) NOT NULL COMMENT 'Token',
  `secret` varchar(128) NOT NULL COMMENT 'Token Secret',
  `verifier` varchar(32) DEFAULT NULL COMMENT 'Token Verifier',
  `callback_url` text NOT NULL COMMENT 'Token Callback URL',
  `revoked` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Token revoked',
  `authorized` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Token authorized',
  `user_type` int(11) DEFAULT NULL COMMENT 'User type',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Token creation timestamp',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `OAUTH_TOKEN_TOKEN` (`token`),
  KEY `OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID` (`admin_id`),
  KEY `OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`),
  KEY `OAUTH_TOKEN_CONSUMER_ID` (`consumer_id`),
  KEY `OAUTH_TOKEN_CREATED_AT` (`created_at`),
  CONSTRAINT `OAUTH_TOKEN_ADMIN_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE,
  CONSTRAINT `OAUTH_TOKEN_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `OAUTH_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='OAuth Tokens';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_token`
--

LOCK TABLES `oauth_token` WRITE;
/*!40000 ALTER TABLE `oauth_token` DISABLE KEYS */;
INSERT INTO `oauth_token` VALUES (5,2,NULL,NULL,'access','0kufmoncdszyzs13bkvyrkjxlgu593bj','0:3:xFdEFj+8nZrbEngpwqOu8ky/MH6OxrDivESsBGX96b7jsTciniwij5jKXNiUcP5ohGzkF41oLcYCX76+','do3e6b9ae7byk45eqmr0dja1jaynx2j0','oob',0,0,1,'2022-08-05 09:36:49'),(6,3,NULL,NULL,'access','97qhoyyozpx76jlogxuwue1g88vlerij','0:3:+jztA0kzUgwyaYXC9QkinigpFKfJKNoOjri/4B8sanwv3I3K3zNQ3G/Tbho4Ljc1tsUhcpsziB+maCP9','634n9ykssegjzy1jfxq9mbsfbxg0o959','oob',0,0,1,'2022-08-05 10:27:23'),(7,4,NULL,NULL,'access','1zccq00ju4g2xwhawik5awp3gcbjewja','0:3:7AWbarOwii9NKod7Uj0mjGf+m0xpXy9ZRb1Hozg3RaMbJOCEcW5aoSg7NFwlttVAxd9ZPQdQ/O33h5f9','sv6d9vko513oscc2cka36myo1pym1t8i','oob',0,0,1,'2022-09-07 11:00:02');
/*!40000 ALTER TABLE `oauth_token` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_token_request_log`
--

DROP TABLE IF EXISTS `oauth_token_request_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_token_request_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `user_name` varchar(255) NOT NULL COMMENT 'Customer email or admin login',
  `user_type` smallint(5) unsigned NOT NULL COMMENT 'User type (admin or customer)',
  `failures_count` smallint(5) unsigned DEFAULT 0 COMMENT 'Number of failed authentication attempts in a row',
  `lock_expires_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Lock expiration time',
  PRIMARY KEY (`log_id`),
  UNIQUE KEY `OAUTH_TOKEN_REQUEST_LOG_USER_NAME_USER_TYPE` (`user_name`,`user_type`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Log of token request authentication failures.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_token_request_log`
--

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

--
-- Table structure for table `pagebuilder_template`
--

DROP TABLE IF EXISTS `pagebuilder_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pagebuilder_template` (
  `template_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Template ID Auto Increment',
  `name` varchar(1024) NOT NULL COMMENT 'Template Name',
  `preview_image` varchar(1024) DEFAULT NULL COMMENT 'Template Preview Image',
  `template` longtext NOT NULL COMMENT 'Master Format HTML',
  `created_for` varchar(255) DEFAULT NULL COMMENT 'Created For',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Update Time',
  PRIMARY KEY (`template_id`),
  FULLTEXT KEY `PAGEBUILDER_TEMPLATE_NAME` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Page Builder Templates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pagebuilder_template`
--

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

--
-- Table structure for table `password_reset_request_event`
--

DROP TABLE IF EXISTS `password_reset_request_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `password_reset_request_event` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `request_type` smallint(5) unsigned NOT NULL COMMENT 'Type of the event under a security control',
  `account_reference` varchar(255) DEFAULT NULL COMMENT 'An identifier for existing account or another target',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Timestamp when the event occurs',
  `ip` varchar(15) NOT NULL COMMENT 'Remote user IP',
  PRIMARY KEY (`id`),
  KEY `PASSWORD_RESET_REQUEST_EVENT_ACCOUNT_REFERENCE` (`account_reference`),
  KEY `PASSWORD_RESET_REQUEST_EVENT_CREATED_AT` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Password Reset Request Event under a security control';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `password_reset_request_event`
--

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

--
-- Table structure for table `patch_list`
--

DROP TABLE IF EXISTS `patch_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `patch_list` (
  `patch_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Patch Auto Increment',
  `patch_name` varchar(1024) NOT NULL COMMENT 'Patch Class Name',
  PRIMARY KEY (`patch_id`)
) ENGINE=InnoDB AUTO_INCREMENT=193 DEFAULT CHARSET=utf8 COMMENT='List of data/schema patches';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `patch_list`
--

LOCK TABLES `patch_list` WRITE;
/*!40000 ALTER TABLE `patch_list` DISABLE KEYS */;
INSERT INTO `patch_list` VALUES (1,'Magento\\Store\\Setup\\Patch\\Schema\\InitializeStoresAndWebsites'),(2,'Magento\\Catalog\\Setup\\Patch\\Schema\\EnableSegmentation'),(3,'Magento\\Bundle\\Setup\\Patch\\Schema\\UpdateBundleRelatedSchema'),(4,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\CreateLegacyStockStatusView'),(5,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\InitializeDefaultStock'),(6,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\UpdateInventorySourceItem'),(7,'Magento\\InventoryCatalog\\Setup\\Patch\\Schema\\ReindexDefaultSource'),(8,'Magento\\InventorySales\\Setup\\Patch\\Schema\\InitializeWebsiteDefaultSock'),(9,'Magento\\Review\\Setup\\Patch\\Schema\\AddUniqueConstraintToReviewEntitySummary'),(10,'Magento\\TwoFactorAuth\\Setup\\Patch\\Schema\\CopyTablesFromOldModule'),(11,'Temando\\ShippingRemover\\Setup\\Patch\\Schema\\EmptyTablesRemoval'),(12,'Magento\\Store\\Setup\\Patch\\Data\\DisableSid'),(13,'Magento\\Store\\Setup\\Patch\\Data\\UpdateStoreGroupCodes'),(14,'Magento\\Directory\\Setup\\Patch\\Data\\InitializeDirectoryData'),(15,'Magento\\Directory\\Setup\\Patch\\Data\\AddCountriesCaribbeanCuracaoKosovoSintMaarten'),(16,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForAlbania'),(17,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForArgentina'),(18,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForCroatia'),(19,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForIndia'),(20,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForAustralia'),(21,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBelarus'),(22,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBelgium'),(23,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBolivia'),(24,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForBulgaria'),(25,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForChile'),(26,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForChina'),(27,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForColombia'),(28,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForDenmark'),(29,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForEcuador'),(30,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForGreece'),(31,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForGuyana'),(32,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForIceland'),(33,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForItaly'),(34,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForMexico'),(35,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForParaguay'),(36,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPeru'),(37,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPoland'),(38,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForPortugal'),(39,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForSuriname'),(40,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForSweden'),(41,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForUruguay'),(42,'Magento\\Directory\\Setup\\Patch\\Data\\AddDataForVenezuela'),(43,'Magento\\Directory\\Setup\\Patch\\Data\\UpdateRegionNamesForSwitzerland'),(44,'Magento\\Theme\\Setup\\Patch\\Data\\RegisterThemes'),(45,'Magento\\Theme\\Setup\\Patch\\Data\\ConvertSerializedData'),(46,'Magento\\Config\\Setup\\Patch\\Data\\RemoveTinymceConfig'),(47,'Magento\\Config\\Setup\\Patch\\Data\\UnsetTinymce3'),(48,'Magento\\Config\\Setup\\Patch\\Data\\UpdateClassAliases'),(49,'Magento\\Authorization\\Setup\\Patch\\Data\\InitializeAuthRoles'),(50,'Magento\\Eav\\Setup\\Patch\\Data\\InitializeAttributeModels'),(51,'Magento\\Customer\\Setup\\Patch\\Data\\DefaultCustomerGroupsAndAttributes'),(52,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributesMetadata'),(53,'Magento\\Customer\\Setup\\Patch\\Data\\AddNonSpecifiedGenderAttributeOption'),(54,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateIdentifierCustomerAttributesVisibility'),(55,'Magento\\Customer\\Setup\\Patch\\Data\\AddCustomerUpdatedAtAttribute'),(56,'Magento\\Customer\\Setup\\Patch\\Data\\UpgradePasswordHashAndAddress'),(57,'Magento\\Customer\\Setup\\Patch\\Data\\RemoveCheckoutRegisterAndUpdateAttributes'),(58,'Magento\\Customer\\Setup\\Patch\\Data\\AddSecurityTrackingAttributes'),(59,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateAutocompleteOnStorefrontConfigPath'),(60,'Magento\\Customer\\Setup\\Patch\\Data\\MigrateStoresAllowedCountriesToWebsite'),(61,'Magento\\Customer\\Setup\\Patch\\Data\\ConvertValidationRulesFromSerializedToJson'),(62,'Magento\\Customer\\Setup\\Patch\\Data\\SessionIDColumnCleanUp'),(63,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAddressAttributesSortOrder'),(64,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateVATNumber'),(65,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateCustomerAttributeInputFilters'),(66,'Magento\\Customer\\Setup\\Patch\\Data\\UpdateDefaultCustomerGroupInConfig'),(67,'Magento\\Indexer\\Setup\\Patch\\Data\\InitializeIndexerState'),(68,'Magento\\Cms\\Setup\\Patch\\Data\\CreateDefaultPages'),(69,'Magento\\Cms\\Setup\\Patch\\Data\\UpdatePrivacyPolicyPage'),(70,'Magento\\Cms\\Setup\\Patch\\Data\\ConvertWidgetConditionsToJson'),(71,'Magento\\Security\\Setup\\Patch\\Data\\SessionIDColumnCleanUp'),(72,'Magento\\Catalog\\Setup\\Patch\\Data\\InstallDefaultCategories'),(73,'Magento\\Catalog\\Setup\\Patch\\Data\\SetNewResourceModelsPaths'),(74,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateDefaultAttributeValue'),(75,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateMediaAttributesBackendTypes'),(76,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductAttributes'),(77,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductMetaDescription'),(78,'Magento\\Catalog\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(79,'Magento\\Catalog\\Setup\\Patch\\Data\\DisallowUsingHtmlForProductName'),(80,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableDirectiveParsing'),(81,'Magento\\Catalog\\Setup\\Patch\\Data\\EnableSegmentation'),(82,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateCustomLayoutAttributes'),(83,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateMultiselectAttributesBackendTypes'),(84,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductDescriptionOrder'),(85,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWidgetData'),(86,'Magento\\Catalog\\Setup\\Patch\\Data\\UpgradeWebsiteAttributes'),(87,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\CreateDefaultStock'),(88,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\UpdateStockItemsWebsite'),(89,'Magento\\CatalogInventory\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(90,'Magento\\CatalogRule\\Setup\\Patch\\Data\\UpdateClassAliasesForCatalogRules'),(91,'Magento\\CatalogRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(92,'Magento\\Msrp\\Setup\\Patch\\Data\\InitializeMsrpAttributes'),(93,'Magento\\Msrp\\Setup\\Patch\\Data\\ChangeMsrpAttributeLabel'),(94,'Magento\\Msrp\\Setup\\Patch\\Data\\ChangePriceAttributeDefaultScope'),(95,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\MySQLSearchRemovalNotification'),(96,'Magento\\CatalogSearch\\Setup\\Patch\\Data\\SetInitialSearchWeightForAttributes'),(97,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\CreateUrlAttributes'),(98,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\UpdateUrlKeyForProducts'),(99,'Magento\\CatalogUrlRewrite\\Setup\\Patch\\Data\\UpdateUrlKeySearchable'),(100,'Magento\\Quote\\Setup\\Patch\\Data\\InstallEntityTypes'),(101,'Magento\\Quote\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(102,'Magento\\Quote\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(103,'Magento\\MediaGalleryUi\\Setup\\Patch\\Data\\AddMediaGalleryPermissions'),(104,'Magento\\User\\Setup\\Patch\\Data\\UpgradePasswordHashes'),(105,'Magento\\User\\Setup\\Patch\\Data\\UpgradeSerializedFields'),(106,'Magento\\Sales\\Setup\\Patch\\Data\\InstallOrderStatusesAndInitialSalesConfig'),(107,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypes'),(108,'Magento\\Sales\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(109,'Magento\\Sales\\Setup\\Patch\\Data\\FillQuoteAddressIdInSalesOrderAddress'),(110,'Magento\\Sales\\Setup\\Patch\\Data\\UpdateEntityTypeModelForInvoice'),(111,'Magento\\Sales\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(112,'Magento\\Checkout\\Setup\\Patch\\Data\\PrepareInitialCheckoutConfiguration'),(113,'Magento\\Widget\\Setup\\Patch\\Data\\UpgradeModelInstanceClassAliases'),(114,'Magento\\Widget\\Setup\\Patch\\Data\\ConvertSerializedData'),(115,'Magento\\Integration\\Setup\\Patch\\Data\\RemoveInactiveTokens'),(116,'Magento\\Integration\\Setup\\Patch\\Data\\UpgradeConsumerSecret'),(117,'Magento\\Integration\\Setup\\Patch\\Data\\UpgradeOauthToken'),(118,'Magento\\Downloadable\\Setup\\Patch\\Data\\AddDownloadableHostsConfig'),(119,'Magento\\Downloadable\\Setup\\Patch\\Data\\InstallDownloadableAttributes'),(120,'Magento\\Downloadable\\Setup\\Patch\\Data\\UpdateLinksExistDefaultAttributeValue'),(121,'Magento\\Dhl\\Setup\\Patch\\Data\\PrepareShipmentDays'),(122,'Magento\\Bundle\\Setup\\Patch\\Data\\ApplyAttributesUpdate'),(123,'Magento\\Bundle\\Setup\\Patch\\Data\\UpdateBundleRelatedEntityTypes'),(124,'Magento\\Elasticsearch\\Setup\\Patch\\Data\\InvalidateIndex'),(125,'Magento\\Email\\Setup\\Patch\\Data\\FlagLegacyTemplates'),(126,'Magento\\EncryptionKey\\Setup\\Patch\\Data\\SodiumChachaPatch'),(127,'Magento\\Fedex\\Setup\\Patch\\Data\\ConfigureFedexDefaults'),(128,'Magento\\GiftMessage\\Setup\\Patch\\Data\\AddGiftMessageAttributes'),(129,'Magento\\GiftMessage\\Setup\\Patch\\Data\\MoveGiftMessageToGiftOptionsGroup'),(130,'Magento\\GiftMessage\\Setup\\Patch\\Data\\UpdateGiftMessageAttribute'),(131,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\InitializeGroupedProductLinks'),(132,'Magento\\GroupedProduct\\Setup\\Patch\\Data\\UpdateProductRelations'),(133,'Magento\\Analytics\\Setup\\Patch\\Data\\PrepareInitialConfig'),(134,'Magento\\Analytics\\Setup\\Patch\\Data\\ActivateDataCollection'),(135,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\InstallInitialConfigurableAttributes'),(136,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateManufacturerAttribute'),(137,'Magento\\ConfigurableProduct\\Setup\\Patch\\Data\\UpdateTierPriceAttribute'),(138,'Magento\\InventoryLowQuantityNotification\\Setup\\Patch\\Data\\MigrateCatalogInventoryNotifyStockQuantityData'),(139,'Magento\\Reports\\Setup\\Patch\\Data\\InitializeReportEntityTypesAndPages'),(140,'Magento\\Reports\\Setup\\Patch\\Data\\ReportDisableNotification'),(141,'Magento\\Newsletter\\Setup\\Patch\\Data\\FlagLegacyTemplates'),(142,'Magento\\SalesRule\\Setup\\Patch\\Data\\PrepareRuleModelSerializedData'),(143,'Magento\\SalesRule\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(144,'Magento\\SalesRule\\Setup\\Patch\\Data\\FillSalesRuleProductAttributeTable'),(145,'Magento\\PageBuilder\\Setup\\Patch\\Data\\UpdateProductAttribute'),(146,'Magento\\PageBuilder\\Setup\\Patch\\Data\\UpgradePageBuilderStripStyles'),(147,'Magento\\Vault\\Setup\\Patch\\Data\\SetCreditCardAsDefaultTokenType'),(148,'Magento\\Paypal\\Setup\\Patch\\Data\\AddPaypalOrderStatuses'),(149,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateBmltoPayLater'),(150,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdatePaypalCreditOption'),(151,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateSmartButtonLabel'),(152,'Magento\\Paypal\\Setup\\Patch\\Data\\UpdateSmartButtonSize'),(153,'Magento\\ReCaptchaMigration\\Setup\\Patch\\Data\\MigrateConfigToRecaptchaModules'),(154,'Magento\\Review\\Setup\\Patch\\Data\\InitReviewStatusesAndData'),(155,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateQuoteShippingAddresses'),(156,'Magento\\OfflineShipping\\Setup\\Patch\\Data\\UpdateShippingTablerate'),(157,'Magento\\UrlRewrite\\Setup\\Patch\\Data\\ConvertSerializedDataToJson'),(158,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageAttribute'),(159,'Magento\\Swatches\\Setup\\Patch\\Data\\AddSwatchImageToDefaultAttribtueSet'),(160,'Magento\\Swatches\\Setup\\Patch\\Data\\UpdateAdminTextSwatchValues'),(161,'Magento\\Swatches\\Setup\\Patch\\Data\\ConvertAdditionalDataToJson'),(162,'Magento\\Tax\\Setup\\Patch\\Data\\AddTaxAttributeAndTaxClasses'),(163,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxClassAttributeVisibility'),(164,'Magento\\Tax\\Setup\\Patch\\Data\\UpdateTaxRegionId'),(165,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\CopyConfigFromOldModule'),(166,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptConfiguration'),(167,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptGoogleSecrets'),(168,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\EncryptSecrets'),(169,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\GenerateDuoSecurityKey'),(170,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\PopulateCountryTable'),(171,'Magento\\TwoFactorAuth\\Setup\\Patch\\Data\\ResetU2fConfig'),(172,'Magento\\SampleData\\Setup\\Patch\\Data\\ClearSampleDataState'),(173,'Magento\\Usps\\Setup\\Patch\\Data\\UpdateAllowedMethods'),(174,'Magento\\Weee\\Setup\\Patch\\Data\\InitQuoteAndOrderAttributes'),(175,'Magento\\CurrencySymbol\\Setup\\Patch\\Data\\ConvertSerializedCustomCurrencySymbolToJson'),(176,'Magento\\Wishlist\\Setup\\Patch\\Data\\ConvertSerializedData'),(177,'Magento\\Wishlist\\Setup\\Patch\\Data\\WishlistDataCleanUp'),(178,'Temando\\ShippingRemover\\Setup\\Patch\\Data\\AttributesRemoval'),(179,'Temando\\ShippingRemover\\Setup\\Patch\\Data\\BookmarkCleaner'),(180,'Temando\\ShippingRemover\\Setup\\Patch\\Data\\ConfigRemoval'),(181,'Plumrocket\\GeoIPLookup\\Setup\\Patch\\Schema\\SplitMaxmindTable'),(182,'Plumrocket\\CookieConsent\\Setup\\Patch\\Data\\CreateEntities'),(183,'Plumrocket\\CookieConsent\\Setup\\Patch\\Data\\CreateDefaultCategories'),(184,'Plumrocket\\CookieConsent\\Setup\\Patch\\Data\\DisableConsentModeForOldClients'),(185,'Plumrocket\\CookieConsent\\Setup\\Patch\\Data\\MigrateConfigsFromGdpr'),(186,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\AddPrivacyFaqsCmsBlock'),(187,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\InstallCheckboxEntities'),(188,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\CreateGeoTargetingUsaStates'),(189,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\MigrateFromGdprCheckboxEntities'),(190,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\UpdateLocationKeyAttribute'),(191,'Plumrocket\\DataPrivacy\\Setup\\Patch\\Data\\SetLocationKeysForCheckboxes'),(192,'Magento\\Catalog\\Setup\\Patch\\Data\\UpdateProductUrlKey');
/*!40000 ALTER TABLE `patch_list` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal_billing_agreement`
--

DROP TABLE IF EXISTS `paypal_billing_agreement`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_billing_agreement` (
  `agreement_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Agreement ID',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID',
  `method_code` varchar(32) NOT NULL COMMENT 'Method Code',
  `reference_id` varchar(32) NOT NULL COMMENT 'Reference ID',
  `status` varchar(20) NOT NULL COMMENT 'Status',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `agreement_label` varchar(255) DEFAULT NULL COMMENT 'Agreement Label',
  PRIMARY KEY (`agreement_id`),
  KEY `PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID` (`customer_id`),
  KEY `PAYPAL_BILLING_AGREEMENT_STORE_ID` (`store_id`),
  CONSTRAINT `PAYPAL_BILLING_AGREEMENT_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PAYPAL_BILLING_AGREEMENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_billing_agreement`
--

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

--
-- Table structure for table `paypal_billing_agreement_order`
--

DROP TABLE IF EXISTS `paypal_billing_agreement_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_billing_agreement_order` (
  `agreement_id` int(10) unsigned NOT NULL COMMENT 'Agreement ID',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  PRIMARY KEY (`agreement_id`,`order_id`),
  KEY `PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID` (`order_id`),
  CONSTRAINT `PAYPAL_BILLING_AGREEMENT_ORDER_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PAYPAL_BILLING_AGRT_ORDER_AGRT_ID_PAYPAL_BILLING_AGRT_AGRT_ID` FOREIGN KEY (`agreement_id`) REFERENCES `paypal_billing_agreement` (`agreement_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Billing Agreement Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_billing_agreement_order`
--

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

--
-- Table structure for table `paypal_cert`
--

DROP TABLE IF EXISTS `paypal_cert`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_cert` (
  `cert_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Cert ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `content` text DEFAULT NULL COMMENT 'Content',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  PRIMARY KEY (`cert_id`),
  KEY `PAYPAL_CERT_WEBSITE_ID` (`website_id`),
  CONSTRAINT `PAYPAL_CERT_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Certificate Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_cert`
--

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

--
-- Table structure for table `paypal_payment_transaction`
--

DROP TABLE IF EXISTS `paypal_payment_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_payment_transaction` (
  `transaction_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `txn_id` varchar(100) DEFAULT NULL COMMENT 'Txn ID',
  `additional_information` blob DEFAULT NULL COMMENT 'Additional Information',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  PRIMARY KEY (`transaction_id`),
  UNIQUE KEY `PAYPAL_PAYMENT_TRANSACTION_TXN_ID` (`txn_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='PayPal Payflow Link Payment Transaction';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_payment_transaction`
--

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

--
-- Table structure for table `paypal_settlement_report`
--

DROP TABLE IF EXISTS `paypal_settlement_report`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_settlement_report` (
  `report_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Report ID',
  `report_date` date DEFAULT NULL COMMENT 'Report Date',
  `account_id` varchar(64) DEFAULT NULL COMMENT 'Account ID',
  `filename` varchar(24) DEFAULT NULL COMMENT 'Filename',
  `last_modified` timestamp NULL DEFAULT NULL COMMENT 'Last Modified',
  PRIMARY KEY (`report_id`),
  UNIQUE KEY `PAYPAL_SETTLEMENT_REPORT_REPORT_DATE_ACCOUNT_ID` (`report_date`,`account_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_settlement_report`
--

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

--
-- Table structure for table `paypal_settlement_report_row`
--

DROP TABLE IF EXISTS `paypal_settlement_report_row`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_settlement_report_row` (
  `row_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Row ID',
  `report_id` int(10) unsigned NOT NULL COMMENT 'Report ID',
  `transaction_id` varchar(19) DEFAULT NULL COMMENT 'Transaction ID',
  `invoice_id` varchar(127) DEFAULT NULL COMMENT 'Invoice ID',
  `paypal_reference_id` varchar(19) DEFAULT NULL COMMENT 'Paypal Reference ID',
  `paypal_reference_id_type` varchar(3) DEFAULT NULL COMMENT 'Paypal Reference ID Type',
  `transaction_event_code` varchar(5) DEFAULT NULL COMMENT 'Transaction Event Code',
  `transaction_initiation_date` timestamp NULL DEFAULT NULL COMMENT 'Transaction Initiation Date',
  `transaction_completion_date` timestamp NULL DEFAULT NULL COMMENT 'Transaction Completion Date',
  `transaction_debit_or_credit` varchar(2) NOT NULL DEFAULT 'CR' COMMENT 'Transaction Debit Or Credit',
  `gross_transaction_amount` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Gross Transaction Amount',
  `gross_transaction_currency` varchar(3) DEFAULT NULL COMMENT 'Gross Transaction Currency',
  `fee_debit_or_credit` varchar(2) DEFAULT NULL COMMENT 'Fee Debit Or Credit',
  `fee_amount` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Fee Amount',
  `fee_currency` varchar(3) DEFAULT NULL COMMENT 'Fee Currency',
  `custom_field` varchar(255) DEFAULT NULL COMMENT 'Custom Field',
  `consumer_id` varchar(127) DEFAULT NULL COMMENT 'Consumer ID',
  `payment_tracking_id` varchar(255) DEFAULT NULL COMMENT 'Payment Tracking ID',
  `store_id` varchar(50) DEFAULT NULL COMMENT 'Store ID',
  PRIMARY KEY (`row_id`),
  KEY `PAYPAL_SETTLEMENT_REPORT_ROW_REPORT_ID` (`report_id`),
  CONSTRAINT `FK_E183E488F593E0DE10C6EBFFEBAC9B55` FOREIGN KEY (`report_id`) REFERENCES `paypal_settlement_report` (`report_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Paypal Settlement Report Row Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_settlement_report_row`
--

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

--
-- Table structure for table `persistent_session`
--

DROP TABLE IF EXISTS `persistent_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `persistent_session` (
  `persistent_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Session ID',
  `key` varchar(50) NOT NULL COMMENT 'Unique cookie key',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `info` text DEFAULT NULL COMMENT 'Session Data',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`persistent_id`),
  UNIQUE KEY `PERSISTENT_SESSION_KEY` (`key`),
  UNIQUE KEY `PERSISTENT_SESSION_CUSTOMER_ID` (`customer_id`),
  KEY `PERSISTENT_SESSION_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` (`website_id`),
  KEY `PERSISTENT_SESSION_UPDATED_AT` (`updated_at`),
  CONSTRAINT `PERSISTENT_SESSION_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PERSISTENT_SESSION_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Persistent Session';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `persistent_session`
--

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

--
-- Table structure for table `plumbase_product`
--

DROP TABLE IF EXISTS `plumbase_product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plumbase_product` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `signature` varchar(32) NOT NULL COMMENT 'Signature',
  `status` smallint(6) NOT NULL COMMENT 'Status',
  `date` date DEFAULT NULL COMMENT 'Date',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Plumrocket Signatures';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumbase_product`
--

LOCK TABLES `plumbase_product` WRITE;
/*!40000 ALTER TABLE `plumbase_product` DISABLE KEYS */;
INSERT INTO `plumbase_product` VALUES (1,'7e8922436a4b4aaee3cb9722ac2c4990',200,'2022-09-18'),(2,'03488e38b7ec76c0bf57f2c5984bc8f8',200,'2022-09-18'),(3,'839e60bf4ac503573cebbfc3c6dc4e59',200,'2022-09-18'),(4,'c33d4e66520ec7c94910a13853e9cd9e',201,'2022-08-23');
/*!40000 ALTER TABLE `plumbase_product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `plumrocket_eav_attribute_additional`
--

DROP TABLE IF EXISTS `plumrocket_eav_attribute_additional`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plumrocket_eav_attribute_additional` (
  `attribute_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Attribute ID',
  `is_global` smallint(5) unsigned NOT NULL COMMENT 'Is Global',
  `is_visible` smallint(5) unsigned NOT NULL COMMENT 'Is Visible',
  PRIMARY KEY (`attribute_id`),
  CONSTRAINT `PLUMROCKET_EAV_ATTR_ADDITIONAL_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=205 DEFAULT CHARSET=utf8 COMMENT='Plumrocket PrivateSale EAV Attributes';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_eav_attribute_additional`
--

LOCK TABLES `plumrocket_eav_attribute_additional` WRITE;
/*!40000 ALTER TABLE `plumrocket_eav_attribute_additional` DISABLE KEYS */;
INSERT INTO `plumrocket_eav_attribute_additional` VALUES (190,1,1),(191,1,1),(192,0,1),(193,1,1),(194,0,1),(195,0,1),(196,0,1),(197,0,1),(198,0,1),(199,1,1),(200,1,1),(201,1,1),(202,1,1),(203,0,1),(204,1,1);
/*!40000 ALTER TABLE `plumrocket_eav_attribute_additional` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `plumrocket_gdpr_consent_location`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_consent_location`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plumrocket_gdpr_consent_location` (
  `location_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `location_key` varchar(32) NOT NULL COMMENT 'Location Key',
  `type` int(11) NOT NULL DEFAULT 2 COMMENT 'Status',
  `visible` tinyint(1) DEFAULT 1,
  `name` varchar(64) NOT NULL COMMENT 'Location Name',
  `description` varchar(255) NOT NULL COMMENT 'Internal Note',
  PRIMARY KEY (`location_id`,`location_key`),
  UNIQUE KEY `PLUMROCKET_GDPR_CONSENT_LOCATION_LOCATION_KEY` (`location_key`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='plumrocket_gdpr_consent_location';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_consent_location`
--

LOCK TABLES `plumrocket_gdpr_consent_location` WRITE;
/*!40000 ALTER TABLE `plumrocket_gdpr_consent_location` DISABLE KEYS */;
INSERT INTO `plumrocket_gdpr_consent_location` VALUES (1,'cookie',1,0,'Cookie Notice','Plumrocket Cookie Consent - Cookie Notice'),(2,'popup_notify',0,0,'Popup Notify','Default Data Privacy Popup Notify'),(3,'checkout',0,1,'Checkout Page','Default Data Privacy Magento Checkout Page'),(4,'registration',0,1,'Registration Page','Default Data Privacy Magento Account Registration Page'),(5,'newsletter',0,1,'Newsletter Subscription','Default Data Privacy Magento Newsletter Subscription Form'),(6,'contact_us',0,1,'Contact Us','Default GDPR Magento Contact Us Page'),(7,'my_account',0,0,'My Account','Default GDPR Magento My Account Page');
/*!40000 ALTER TABLE `plumrocket_gdpr_consent_location` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `plumrocket_gdpr_consents_log`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_consents_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plumrocket_gdpr_consents_log` (
  `consent_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id of requests item',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Request Date',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer entity Id',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website',
  `customer_ip` int(11) DEFAULT NULL COMMENT 'Customer IP',
  `location` varchar(255) NOT NULL COMMENT 'Consent Location',
  `checkbox_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Checkbox ID',
  `label` text DEFAULT NULL COMMENT 'Consent Label',
  `cms_page_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Link to CMS Page',
  `version` varchar(255) DEFAULT NULL COMMENT 'Version',
  `action` smallint(6) DEFAULT NULL COMMENT 'Action',
  `email` varchar(254) DEFAULT NULL COMMENT 'Customer and Guest Email',
  PRIMARY KEY (`consent_id`),
  KEY `PLUMROCKET_GDPR_CONSENTS_LOG_CONSENT_ID` (`consent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='Log of Customer Consents';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_consents_log`
--

LOCK TABLES `plumrocket_gdpr_consents_log` WRITE;
/*!40000 ALTER TABLE `plumrocket_gdpr_consents_log` DISABLE KEYS */;
INSERT INTO `plumrocket_gdpr_consents_log` VALUES (1,'2022-08-11 09:51:00',1,1,151,'registration',1,'I agree',4,NULL,1,'roberto@torresani.eu'),(2,'2022-08-25 06:15:23',3,1,8727,'registration',1,'I agree to Privacy Policy',4,'',1,'mara.giongo@thread.solutions'),(3,'2022-08-25 12:26:11',4,1,21771,'registration',1,'I agree to Privacy Policy',4,'',1,'laura.berto@ftcoop.it'),(4,'2022-08-25 16:28:56',5,1,234,'registration',1,'I agree to Privacy Policy',4,'',1,'michelabranchi@gmail.com');
/*!40000 ALTER TABLE `plumrocket_gdpr_consents_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `plumrocket_gdpr_export_log`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_export_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plumrocket_gdpr_export_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Id of log item',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer entity Id',
  `customer_ip` varchar(255) NOT NULL COMMENT 'Customer IP',
  `customer_email` varchar(254) NOT NULL COMMENT 'Customer Email',
  PRIMARY KEY (`log_id`),
  KEY `PLUMROCKET_GDPR_EXPORT_LOG_CUSTOMER_ID` (`customer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COMMENT='Log of Account Data Downloads';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_export_log`
--

LOCK TABLES `plumrocket_gdpr_export_log` WRITE;
/*!40000 ALTER TABLE `plumrocket_gdpr_export_log` DISABLE KEYS */;
INSERT INTO `plumrocket_gdpr_export_log` VALUES (1,'2022-08-11 09:51:46',1,'151.49.194.8','roberto@torresani.eu'),(2,'2022-08-12 15:39:23',1,'213.21.147.71','roberto@torresani.eu'),(3,'2022-08-12 15:39:44',1,'213.21.147.71','roberto@torresani.eu'),(4,'2022-08-18 14:06:26',1,'151.31.151.125','roberto@torresani.eu'),(5,'2022-08-18 14:06:45',1,'151.31.151.125','roberto@torresani.eu'),(6,'2022-08-18 14:11:35',1,'151.31.151.125','roberto@torresani.eu'),(7,'2022-08-18 14:12:11',1,'151.31.151.125','roberto@torresani.eu'),(8,'2022-08-22 14:57:37',1,'151.31.151.125','roberto@torresani.eu'),(9,'2022-08-23 06:58:59',1,'151.31.151.125','roberto@torresani.eu'),(10,'2022-08-23 06:59:50',1,'151.31.151.125','roberto@torresani.eu'),(11,'2022-08-23 07:13:56',1,'151.31.151.125','roberto@torresani.eu'),(12,'2022-08-25 12:39:55',4,'217.71.68.23','laura.berto@ftcoop.it');
/*!40000 ALTER TABLE `plumrocket_gdpr_export_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `plumrocket_gdpr_removal_requests`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_removal_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plumrocket_gdpr_removal_requests` (
  `request_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Removal Request ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Request Date',
  `created_by` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT '0 - customer, 1 - admin',
  `admin_id` int(10) unsigned NOT NULL COMMENT 'Admin ID',
  `admin_comment` text DEFAULT NULL COMMENT 'Admin Comment',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer Entity ID',
  `customer_email` varchar(254) NOT NULL COMMENT 'Customer Email',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website',
  `customer_ip` varchar(255) NOT NULL COMMENT 'Customer IP',
  `cancelled_at` timestamp NULL DEFAULT NULL COMMENT 'Cancellation Date',
  `cancelled_by` varchar(255) NOT NULL COMMENT 'Cancelled By',
  `scheduled_at` timestamp NULL DEFAULT NULL COMMENT 'Removal Date',
  `status` varchar(32) NOT NULL DEFAULT 'pending' COMMENT 'Status',
  PRIMARY KEY (`request_id`),
  KEY `PLUMROCKET_GDPR_REMOVAL_REQUESTS_CUSTOMER_IP` (`customer_ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Log of Account Removal Requests';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_removal_requests`
--

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

--
-- Table structure for table `plumrocket_gdpr_revision`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_revision`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plumrocket_gdpr_revision` (
  `revision_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `cms_page_id` smallint(6) NOT NULL COMMENT 'CMS Page ID',
  `enable_revisions` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Enable Revisions',
  `notify_via_popup` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Notify All Customers via Popup',
  `document_version` varchar(255) NOT NULL COMMENT 'Document Version',
  `popup_content` mediumtext DEFAULT NULL COMMENT 'Popup Content',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Date Of Creation',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date Of Modification',
  PRIMARY KEY (`revision_id`,`cms_page_id`),
  UNIQUE KEY `PLUMROCKET_GDPR_REVISION_CMS_PAGE_ID` (`cms_page_id`),
  CONSTRAINT `PLUMROCKET_GDPR_REVISION_CMS_PAGE_ID_CMS_PAGE_PAGE_ID` FOREIGN KEY (`cms_page_id`) REFERENCES `cms_page` (`page_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='plumrocket_gdpr_revision';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_revision`
--

LOCK TABLES `plumrocket_gdpr_revision` WRITE;
/*!40000 ALTER TABLE `plumrocket_gdpr_revision` DISABLE KEYS */;
INSERT INTO `plumrocket_gdpr_revision` VALUES (1,5,0,0,'','<h1>Privacy Policy</h1>\r\n                            <p>We’ve updated our Privacy Policy, which disclose what personal information we have, and how we use it in accordance with new privacy laws.</p>\r\n                            <p>By clicking on \"I Agree\" below you are agreeing to the updated <a href=\"#\" target=\"_blank\">Privacy Policy</a>.</p>','2022-08-23 07:46:43','2022-08-23 07:46:43'),(2,4,0,0,'','<h1>Privacy Policy</h1>\r\n                            <p>We’ve updated our Privacy Policy, which disclose what personal information we have, and how we use it in accordance with new privacy laws.</p>\r\n                            <p>By clicking on \"I Agree\" below you are agreeing to the updated <a href=\"#\" target=\"_blank\">Privacy Policy</a>.</p>','2022-08-23 12:04:17','2022-08-23 12:04:17'),(3,2,0,0,'','<h1>Privacy Policy</h1>\r\n                            <p>We’ve updated our Privacy Policy, which disclose what personal information we have, and how we use it in accordance with new privacy laws.</p>\r\n                            <p>By clicking on \"I Agree\" below you are agreeing to the updated <a href=\"#\" target=\"_blank\">Privacy Policy</a>.</p>','2022-09-09 08:24:54','2022-09-09 08:24:54');
/*!40000 ALTER TABLE `plumrocket_gdpr_revision` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `plumrocket_gdpr_revision_history`
--

DROP TABLE IF EXISTS `plumrocket_gdpr_revision_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plumrocket_gdpr_revision_history` (
  `history_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `revision_id` int(10) unsigned NOT NULL COMMENT 'CMS Page ID',
  `user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'User ID',
  `user_name` varchar(255) NOT NULL COMMENT 'User Name',
  `version` varchar(255) NOT NULL COMMENT 'Document Version',
  `content` mediumtext DEFAULT NULL COMMENT 'Version Content',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Date Of Creation',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date Of Modification',
  PRIMARY KEY (`history_id`),
  KEY `PLUMROCKET_GDPR_REVISION_HISTORY_REVISION_ID` (`revision_id`),
  CONSTRAINT `FK_5BBCCDA49B50FD3CC8EB3C2211EACEF0` FOREIGN KEY (`revision_id`) REFERENCES `plumrocket_gdpr_revision` (`revision_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='plumrocket_gdpr_revision_history';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_gdpr_revision_history`
--

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

--
-- Table structure for table `plumrocket_token`
--

DROP TABLE IF EXISTS `plumrocket_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `plumrocket_token` (
  `token_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Token ID',
  `type_key` varchar(50) NOT NULL COMMENT 'Token type',
  `token_hash` varchar(32) NOT NULL COMMENT 'Token hash',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer entity Id',
  `email` varchar(255) DEFAULT NULL COMMENT 'Main recipient email',
  `create_at` date NOT NULL COMMENT 'Date of token creation',
  `expire_at` date NOT NULL COMMENT 'Date for validation and delete',
  `additional_data` text DEFAULT NULL COMMENT 'Field for saving additional data',
  PRIMARY KEY (`token_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Plumrocket Tokens';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `plumrocket_token`
--

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

--
-- Table structure for table `pr_cookie_category_entity`
--

DROP TABLE IF EXISTS `pr_cookie_category_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pr_cookie_category_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `status` tinyint(1) NOT NULL COMMENT 'Status',
  `is_essential` tinyint(1) NOT NULL COMMENT 'Is Essential',
  `key` varchar(20) NOT NULL COMMENT 'Category key',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Update Time',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `PR_COOKIE_CATEGORY_ENTITY_KEY` (`key`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_category_entity`
--

LOCK TABLES `pr_cookie_category_entity` WRITE;
/*!40000 ALTER TABLE `pr_cookie_category_entity` DISABLE KEYS */;
INSERT INTO `pr_cookie_category_entity` VALUES (1,1,1,'necessary','2022-08-11 08:56:22','2022-08-11 08:56:22'),(2,1,0,'preferences','2022-08-11 08:56:22','2022-08-11 08:56:22'),(3,1,0,'statistics','2022-08-11 08:56:22','2022-08-11 08:56:22'),(4,1,0,'marketing','2022-08-11 08:56:22','2022-08-11 08:56:22');
/*!40000 ALTER TABLE `pr_cookie_category_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pr_cookie_category_entity_int`
--

DROP TABLE IF EXISTS `pr_cookie_category_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pr_cookie_category_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value 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 `PR_COOKIE_CATEGORY_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`),
  CONSTRAINT `PR_COOKIE_CATEGORY_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_CTGR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_CTGR_ENTT_INT_ENTT_ID_PR_COOKIE_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `pr_cookie_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Plumrocket Cookie Consent INT Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_category_entity_int`
--

LOCK TABLES `pr_cookie_category_entity_int` WRITE;
/*!40000 ALTER TABLE `pr_cookie_category_entity_int` DISABLE KEYS */;
INSERT INTO `pr_cookie_category_entity_int` VALUES (1,195,0,1,0),(2,195,0,2,0),(3,195,0,3,0),(4,195,0,4,0),(5,198,0,1,0),(6,198,0,2,0),(7,198,0,3,0),(8,198,0,4,0);
/*!40000 ALTER TABLE `pr_cookie_category_entity_int` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pr_cookie_category_entity_text`
--

DROP TABLE IF EXISTS `pr_cookie_category_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pr_cookie_category_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value 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 DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `PR_COOKIE_CATEGORY_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `PR_COOKIE_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `PR_COOKIE_CATEGORY_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_CTGR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_CTGR_ENTT_TEXT_ENTT_ID_PR_COOKIE_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `pr_cookie_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COMMENT='Plumrocket Cookie Consent TEXT Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_category_entity_text`
--

LOCK TABLES `pr_cookie_category_entity_text` WRITE;
/*!40000 ALTER TABLE `pr_cookie_category_entity_text` DISABLE KEYS */;
INSERT INTO `pr_cookie_category_entity_text` VALUES (1,192,0,1,'Cookie strettamente necessari'),(2,194,0,1,'Questi cookie sono essenziali per navigare nel nostro negozio e utilizzare le sue funzionalità, come l\'accesso alle aree sicure del sito web. I cookie che consentono di trattenere gli articoli nel carrello, i cookie che ti mantengono connesso e i cookie che salvano le tue preferenze personalizzate sono un esempio di cookie strettamente necessari. Questi cookie sono essenziali per il funzionamento di un sito web e non possono essere disabilitati dagli utenti.'),(3,192,0,2,'Cookie di preferenze'),(4,194,0,2,'I cookie delle preferenze sono anche noti come \"cookie di funzionalità\". Questi cookie consentono a un sito Web di ricordare le scelte che hai fatto in passato, come la lingua che preferisci, i filtri di ricerca preferiti o il nome utente e la password in modo da poter accedere automaticamente.'),(5,192,0,3,'Cookie statistici'),(6,194,0,3,'I cookie statistici sono anche noti come \"cookie di prestazione\". Questi cookie raccolgono informazioni su come utilizzi un sito Web, ad esempio quali pagine hai visitato e quali link hai cliccato. Nessuna di queste informazioni può essere utilizzata per identificarti. Il tutto è aggregato e, quindi, anonimizzato. Il loro unico scopo è migliorare le funzioni del sito web. Ciò include i cookie di servizi di analisi di terze parti, come analisi dei visitatori, mappe di calore e analisi dei social media.'),(7,192,0,4,'Cookie di marketing'),(8,194,0,4,'Questi cookie tracciano la tua attività online per aiutare gli inserzionisti a fornire pubblicità più pertinente o per limitare il numero di volte in cui visualizzi un annuncio. Questi cookie possono condividere tali informazioni con altre organizzazioni o inserzionisti. Si tratta di cookie persistenti e quasi sempre di provenienza di terze parti.');
/*!40000 ALTER TABLE `pr_cookie_category_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pr_cookie_consent_log`
--

DROP TABLE IF EXISTS `pr_cookie_consent_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pr_cookie_consent_log` (
  `consent_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer entity Id',
  `guest_email` varchar(254) DEFAULT NULL COMMENT 'Customer and Guest Email',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website Id',
  `ip_address` varchar(255) NOT NULL COMMENT 'Customer IP Address',
  `user_agent` varchar(255) DEFAULT NULL COMMENT 'Customer User Agent',
  `url` text DEFAULT NULL COMMENT 'Url',
  `settings` varchar(255) NOT NULL COMMENT 'Customer Consent Settings',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',
  PRIMARY KEY (`consent_id`),
  KEY `PR_COOKIE_CONSENT_LOG_CUSTOMER_ID` (`customer_id`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COMMENT='Log of Customer Consents';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_consent_log`
--

LOCK TABLES `pr_cookie_consent_log` WRITE;
/*!40000 ALTER TABLE `pr_cookie_consent_log` DISABLE KEYS */;
INSERT INTO `pr_cookie_consent_log` VALUES (1,0,NULL,1,'151.49.194.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/privacy-center/account/check/','{\"all\":true}','2022-08-11 09:58:39'),(2,0,NULL,1,'151.49.194.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/','{\"all\":true}','2022-08-11 10:18:41'),(3,0,NULL,1,'37.186.136.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15','http://magento.test.indaco.store/','[]','2022-08-11 15:29:49'),(4,0,NULL,1,'93.71.135.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','http://magento.test.indaco.store/','{\"all\":true}','2022-08-17 13:06:46'),(5,0,NULL,1,'37.176.62.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/','{\"necessary\":true,\"preferences\":false,\"statistics\":false,\"marketing\":false}','2022-08-18 06:58:34'),(6,0,NULL,1,'93.40.240.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/prodotti-del-territorio.html','{\"all\":true}','2022-08-22 13:06:00'),(7,0,NULL,1,'151.31.151.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/','{\"all\":true}','2022-08-23 07:13:12'),(8,0,NULL,1,'213.21.147.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 Edg/104.0.1293.63','http://magento.test.indaco.store/termini-e-condizioni-del-servizio','{\"all\":true}','2022-08-23 09:25:40'),(9,0,NULL,1,'151.31.151.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/','[]','2022-08-23 13:36:54'),(10,0,NULL,1,'93.70.66.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/catalogsearch/advanced/','{\"all\":true}','2022-08-24 07:43:28'),(11,0,NULL,1,'188.152.213.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','http://magento.test.indaco.store/catalogsearch/advanced/','[]','2022-08-24 07:51:34'),(12,0,NULL,1,'151.31.141.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/','{\"all\":true}','2022-08-24 10:22:04'),(13,0,NULL,1,'87.27.194.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/','{\"all\":true}','2022-08-25 06:13:40'),(14,0,NULL,1,'217.71.68.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/','[]','2022-08-25 10:32:20'),(15,4,NULL,1,'217.71.68.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/privacy-center/account/','[]','2022-08-25 12:27:55'),(16,4,NULL,1,'217.71.68.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/privacy-center/account/','{\"necessary\":true,\"preferences\":true,\"statistics\":false,\"marketing\":true}','2022-08-25 12:40:12'),(17,4,NULL,1,'217.71.68.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/privacy-center/account/','{\"necessary\":true,\"preferences\":false,\"statistics\":true,\"marketing\":false}','2022-08-25 13:03:39'),(18,0,NULL,1,'2.34.166.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15','http://magento.test.indaco.store/','{\"necessary\":true,\"preferences\":false,\"statistics\":true,\"marketing\":false}','2022-08-25 13:07:08'),(19,0,NULL,1,'2.34.166.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15','http://magento.test.indaco.store/customer/account/create/','{\"necessary\":true,\"preferences\":false,\"statistics\":true,\"marketing\":false}','2022-08-25 13:08:21'),(20,0,NULL,1,'2.34.166.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','http://magento.test.indaco.store/customer/account/create/','[]','2022-08-31 10:18:29'),(21,0,NULL,1,'151.38.208.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','http://magento.test.indaco.store/checkout/cart/','{\"all\":true}','2022-08-31 16:09:05'),(22,0,NULL,1,'77.83.112.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','http://magento.test.indaco.store/','[]','2022-09-05 07:23:51'),(23,0,NULL,1,'82.48.59.000','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','http://magento.test.indaco.store/','[]','2022-09-12 15:03:31'),(24,0,NULL,1,'79.10.87.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','http://magento.test.indaco.store/','[]','2022-09-13 08:09:04'),(25,0,NULL,1,'95.254.147.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','http://magento.test.indaco.store/','{\"all\":true}','2022-09-13 08:12:26'),(26,0,NULL,1,'79.10.87.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','http://magento.test.indaco.store/','{\"all\":true}','2022-09-13 08:15:11'),(27,0,NULL,1,'81.56.5.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','http://magento.test.indaco.store/','{\"all\":true}','2022-09-13 08:35:28'),(28,0,NULL,1,'95.254.147.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36','http://magento.test.indaco.store/blog/sitemap.html','{\"all\":true}','2022-09-14 07:22:39'),(29,0,NULL,1,'5.90.125.000','Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1','http://magento.test.indaco.store/','{\"all\":true}','2022-09-14 08:04:23'),(30,0,NULL,1,'79.10.87.000','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15','http://magento.test.indaco.store/','{\"all\":true}','2022-09-15 12:48:29');
/*!40000 ALTER TABLE `pr_cookie_consent_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pr_cookie_entity`
--

DROP TABLE IF EXISTS `pr_cookie_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pr_cookie_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `category_key` varchar(20) NOT NULL COMMENT 'Category key',
  `type` varchar(10) NOT NULL COMMENT 'Cookie Type',
  `domain` varchar(255) DEFAULT NULL COMMENT 'Cookie Domain',
  `name` varchar(255) NOT NULL COMMENT 'Cookie Name',
  `duration` int(11) NOT NULL COMMENT 'Cookie Duration (Lifetime)',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Update Time',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `PR_COOKIE_ENTITY_NAME` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_entity`
--

LOCK TABLES `pr_cookie_entity` WRITE;
/*!40000 ALTER TABLE `pr_cookie_entity` DISABLE KEYS */;
INSERT INTO `pr_cookie_entity` VALUES (1,'necessary','first',NULL,'pr-cookie-notice-status',0,'2022-08-11 08:56:22','2022-08-11 08:56:22'),(2,'necessary','first',NULL,'user_allowed_save_cookie',31536000,'2022-08-11 08:56:22','2022-08-11 08:56:22'),(3,'necessary','first',NULL,'guest-view',0,'2022-08-11 08:56:22','2022-08-11 08:56:22'),(4,'necessary','first',NULL,'login_redirect',0,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(5,'necessary','first',NULL,'mage-messages',31536000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(6,'necessary','first',NULL,'section_data_ids',0,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(7,'necessary','first',NULL,'store',31536000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(8,'necessary','first',NULL,'amz_auth_err',31536000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(9,'necessary','first',NULL,'amz_auth_logout',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(10,'necessary','first',NULL,'mage-cache-sessid',0,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(11,'necessary','first',NULL,'mage-cache-storage',0,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(12,'necessary','first',NULL,'stf',0,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(13,'necessary','first',NULL,'recently_viewed_product',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(14,'necessary','first',NULL,'recently_viewed_product_previous',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(15,'necessary','first',NULL,'mage-translation-storage',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(16,'necessary','first',NULL,'mage-translation-file-version',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(17,'necessary','first',NULL,'product_data_storage',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(18,'necessary','first',NULL,'recently_compared_product',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(19,'necessary','first',NULL,'recently_compared_product_previous',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(20,'necessary','first',NULL,'mage-cache-storage-section-invalidation',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(21,'statistics','first',NULL,'_ga',63072000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(22,'statistics','first',NULL,'_gid',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(23,'statistics','first',NULL,'_gat',86400,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(24,'statistics','first',NULL,'_dc_gtm_*',60,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(25,'necessary','first',NULL,'pr-cookie-consent',365,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(26,'necessary','first',NULL,'pr-cookie-consent-id',365,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(27,'necessary','first',NULL,'form_key',3600,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(28,'necessary','first',NULL,'X-Magento-Vary',3600,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(29,'necessary','first',NULL,'private_content_version',31536000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(30,'necessary','first',NULL,'persistent_shopping_cart',31536000,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(31,'statistics','first',NULL,'add_to_cart',3600,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(32,'necessary','first',NULL,'mage-banners-cache-storage',3600,'2022-08-11 08:56:23','2022-08-11 08:56:23'),(33,'statistics','first',NULL,'remove_from_cart',3600,'2022-08-11 08:56:23','2022-08-11 08:56:23');
/*!40000 ALTER TABLE `pr_cookie_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pr_cookie_entity_text`
--

DROP TABLE IF EXISTS `pr_cookie_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pr_cookie_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value 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 DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `PR_COOKIE_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `PR_COOKIE_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
  KEY `PR_COOKIE_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  KEY `PR_COOKIE_ENTITY_TEXT_STORE_ID` (`store_id`),
  CONSTRAINT `PR_COOKIE_ENTITY_TEXT_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_ENTITY_TEXT_ENTITY_ID_PR_COOKIE_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `pr_cookie_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PR_COOKIE_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 COMMENT='Plumrocket Cookie Consent TEXT Value Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pr_cookie_entity_text`
--

LOCK TABLES `pr_cookie_entity_text` WRITE;
/*!40000 ALTER TABLE `pr_cookie_entity_text` DISABLE KEYS */;
INSERT INTO `pr_cookie_entity_text` VALUES (1,203,0,1,'Stores close status of cookie notice.'),(2,203,0,2,'Stores built-in cookie consent per website.'),(3,203,0,3,'Stores the Order ID that guest shoppers use to retrieve their order status. Guest orders view. Used in “Orders and Returns” widgets.'),(4,203,0,4,'Preserves the destination page the customer was loading before being directed to log in.'),(5,203,0,5,'Tracks error messages and other notifications that are shown to the user, such as the cookie consent message, and various error messages. The message is deleted from the cookie after it is shown to the shopper.'),(6,203,0,6,'Stores customer-specific information related to shopper-initiated actions such as display wish list, checkout information, etc.'),(7,203,0,7,'Tracks the specific store view / locale selected by the shopper.'),(8,203,0,8,'Used if Enable Login with Amazon is enabled. Value 1 indicates an authorization error.'),(9,203,0,9,'Used if Enable Login with Amazon is enabled. Value 1 indicates that the user should be logged out.'),(10,203,0,10,'The value of this cookie triggers the cleanup of local cache storage. When the cookie is removed by the backend application, the Admin cleans up local storage, and sets the cookie value to true.'),(11,203,0,11,'Local storage of visitor-specific content that enables ecommerce functions.'),(12,203,0,12,'Records the time messages are sent by the SendFriend (Email a Friend) module.'),(13,203,0,13,'Stores product IDs of recently viewed products for easy navigation.'),(14,203,0,14,'Stores product IDs of recently previously viewed products for easy navigation.'),(15,203,0,15,'Stores translated content when requested by the shopper. Used when Translation Strategy is configured as \"Dictionary (Translation on Storefront side)\".'),(16,203,0,16,'Tracks the version of translations in local storage. Used when Translation Strategy is configured as Dictionary (Translation on Storefront side).'),(17,203,0,17,'Stores configuration for product data related to Recently Viewed / Compared Products.'),(18,203,0,18,'Stores product IDs of recently compared products.'),(19,203,0,19,'Stores product IDs of previously compared products for easy navigation.'),(20,203,0,20,'Forces local storage of specific content sections that should be invalidated.'),(21,203,0,21,'Used to distinguish users.'),(22,203,0,22,'Used to distinguish users.'),(23,203,0,23,'Used to throttle request rate.'),(24,203,0,24,'Used to throttle request rate.'),(25,203,0,25,'Keeps your cookie consent.'),(26,203,0,26,'Keeps your cookie consent id.'),(27,203,0,27,'A security measure that appends a random string to all form submissions to protect the data from Cross-Site Request Forgery (CSRF).'),(28,203,0,28,'Configuration setting that improves performance when using Varnish static content caching.'),(29,203,0,29,'Appends a random, unique number and time to pages with customer content to prevent them from being cached on the server.'),(30,203,0,30,'Stores the key (ID) of persistent cart to make it possible to restore the cart for an anonymous shopper.'),(31,203,0,31,'Used by Google Tag Manager. Captures the product SKU, name, price and quantity removed from the cart, and makes the information available for future integration by third-party scripts.'),(32,203,0,32,'Stores banner content locally to improve performance.'),(33,203,0,33,'Used by Google Tag Manager. Captures the product SKU, name, price and quantity added to the cart, and makes the information available for future integration by third-party scripts.');
/*!40000 ALTER TABLE `pr_cookie_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `prgdpr_checkbox_entity`
--

DROP TABLE IF EXISTS `prgdpr_checkbox_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgdpr_checkbox_entity` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `location_key` text DEFAULT NULL COMMENT 'Location Key',
  `internal_note` mediumtext NOT NULL COMMENT 'Internal Note',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Update Time',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='prgdpr_checkbox_entity';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgdpr_checkbox_entity`
--

LOCK TABLES `prgdpr_checkbox_entity` WRITE;
/*!40000 ALTER TABLE `prgdpr_checkbox_entity` DISABLE KEYS */;
INSERT INTO `prgdpr_checkbox_entity` VALUES (1,'registration,my_account','','2022-08-11 09:47:15','2022-08-11 09:47:15');
/*!40000 ALTER TABLE `prgdpr_checkbox_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `prgdpr_checkbox_entity_int`
--

DROP TABLE IF EXISTS `prgdpr_checkbox_entity_int`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgdpr_checkbox_entity_int` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value 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 `PRGDPR_CHECKBOX_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `PRGDPR_CHECKBOX_ENTITY_INT_STORE_ID` (`store_id`),
  KEY `PRGDPR_CHECKBOX_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `PRGDPR_CHECKBOX_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PRGDPR_CHECKBOX_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `PRGDPR_CHECKBOX_ENTT_INT_ENTT_ID_PRGDPR_CHECKBOX_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `prgdpr_checkbox_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='PR Checkbox Int Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgdpr_checkbox_entity_int`
--

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

--
-- Table structure for table `prgdpr_checkbox_entity_text`
--

DROP TABLE IF EXISTS `prgdpr_checkbox_entity_text`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgdpr_checkbox_entity_text` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value 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 DEFAULT NULL,
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `PRGDPR_CHECKBOX_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
  KEY `PRGDPR_CHECKBOX_ENTITY_TEXT_STORE_ID` (`store_id`),
  KEY `PRGDPR_CHECKBOX_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `PRGDPR_CHECKBOX_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PRGDPR_CHECKBOX_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `PRGDPR_CHECKBOX_ENTT_TEXT_ENTT_ID_PRGDPR_CHECKBOX_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `prgdpr_checkbox_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='PR Checkbox text Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgdpr_checkbox_entity_text`
--

LOCK TABLES `prgdpr_checkbox_entity_text` WRITE;
/*!40000 ALTER TABLE `prgdpr_checkbox_entity_text` DISABLE KEYS */;
INSERT INTO `prgdpr_checkbox_entity_text` VALUES (1,207,0,1,'I agree to <a href=\"{{url}}\" class=\"pr-inpopup\" target=\"_blank\">Privacy Policy</a>'),(2,210,0,1,'all'),(3,212,0,1,'all');
/*!40000 ALTER TABLE `prgdpr_checkbox_entity_text` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `prgeoiplookup_installed_versions`
--

DROP TABLE IF EXISTS `prgeoiplookup_installed_versions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgeoiplookup_installed_versions` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `data_name` varchar(255) DEFAULT NULL COMMENT 'Database Name',
  `file_version` varchar(15) DEFAULT NULL COMMENT 'Database File Version',
  `installed_date` datetime DEFAULT NULL COMMENT 'Installation Date',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Installed Versions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_installed_versions`
--

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

--
-- Table structure for table `prgeoiplookup_iptocountry`
--

DROP TABLE IF EXISTS `prgeoiplookup_iptocountry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgeoiplookup_iptocountry` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `country_iso_code2` varchar(2) DEFAULT NULL COMMENT 'Country Code (ISO 3166-1 alpha-2)',
  `country_iso_code3` varchar(3) DEFAULT NULL COMMENT 'Country Code (ISO 3166-1 alpha-3)',
  `country_name` varchar(255) DEFAULT NULL COMMENT 'Country Name',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='IpToCountry Geo Ip Country Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_iptocountry`
--

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

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks`
--

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

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part0`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part0` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part0`
--

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

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part1`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part1` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part1`
--

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

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part2`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part2`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part2` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part2`
--

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

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part3`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part3`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part3` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part3`
--

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

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part4`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part4`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part4` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part4`
--

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

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_blocks_part5`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_blocks_part5`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_blocks_part5` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `ip_from` int(10) unsigned NOT NULL COMMENT 'IP From',
  `ip_to` int(10) unsigned NOT NULL COMMENT 'IP To',
  `location_id` int(10) unsigned NOT NULL COMMENT 'Location Id',
  `postal_code` varchar(25) DEFAULT NULL COMMENT 'Postal Code',
  `latitude` varchar(25) DEFAULT NULL COMMENT 'Latitude',
  `longitude` varchar(25) DEFAULT NULL COMMENT 'Longitude',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Blocks';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_blocks_part5`
--

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

--
-- Table structure for table `prgeoiplookup_maxmindgeoip_city_locations`
--

DROP TABLE IF EXISTS `prgeoiplookup_maxmindgeoip_city_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `prgeoiplookup_maxmindgeoip_city_locations` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Record Identifier',
  `locale_code` varchar(2) NOT NULL COMMENT 'Locale Code',
  `continent_code` varchar(2) NOT NULL COMMENT 'Continent Code',
  `continent_name` varchar(50) NOT NULL COMMENT 'Continent Name',
  `country_iso_code2` varchar(2) DEFAULT NULL COMMENT 'Country Code (ISO 3166-1 alpha-2)',
  `country_name` varchar(255) DEFAULT NULL COMMENT 'Country Name',
  `subdivision_1_iso_code` varchar(5) DEFAULT NULL COMMENT 'Subdivision 1 (ISO Code)',
  `subdivision_1_name` varchar(25) DEFAULT NULL COMMENT 'Subdivision 1 Name',
  `subdivision_2_iso_code` varchar(5) DEFAULT NULL COMMENT 'Subdivision 2 (ISO Code)',
  `subdivision_2_name` varchar(100) DEFAULT NULL COMMENT 'Subdivision 2 Name',
  `city_name` varchar(100) NOT NULL COMMENT 'City Name',
  `metro_code` varchar(15) DEFAULT NULL COMMENT 'Area Code',
  `time_zone` varchar(100) NOT NULL COMMENT 'Time Zone',
  `is_in_european_union` tinyint(1) NOT NULL COMMENT 'Is in European Union',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Maxmindgeoip GeoLite2-City-Locations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `prgeoiplookup_maxmindgeoip_city_locations`
--

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

--
-- Table structure for table `product_alert_price`
--

DROP TABLE IF EXISTS `product_alert_price`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_alert_price` (
  `alert_price_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product alert price ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `price` decimal(20,6) NOT NULL DEFAULT 0.000000 COMMENT 'Price amount',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `store_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Store ID',
  `add_date` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Product alert add date',
  `last_send_date` timestamp NULL DEFAULT NULL COMMENT 'Product alert last send date',
  `send_count` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Product alert send count',
  `status` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Product alert status',
  PRIMARY KEY (`alert_price_id`),
  KEY `PRODUCT_ALERT_PRICE_CUSTOMER_ID` (`customer_id`),
  KEY `PRODUCT_ALERT_PRICE_PRODUCT_ID` (`product_id`),
  KEY `PRODUCT_ALERT_PRICE_WEBSITE_ID` (`website_id`),
  KEY `PRODUCT_ALERT_PRICE_STORE_ID` (`store_id`),
  CONSTRAINT `PRODUCT_ALERT_PRICE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_PRICE_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_PRICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_PRICE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Product Alert Price';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_alert_price`
--

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

--
-- Table structure for table `product_alert_stock`
--

DROP TABLE IF EXISTS `product_alert_stock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_alert_stock` (
  `alert_stock_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Product alert stock ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `store_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Store ID',
  `add_date` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Product alert add date',
  `send_date` timestamp NULL DEFAULT NULL COMMENT 'Product alert send date',
  `send_count` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Send Count',
  `status` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Product alert status',
  PRIMARY KEY (`alert_stock_id`),
  KEY `PRODUCT_ALERT_STOCK_CUSTOMER_ID` (`customer_id`),
  KEY `PRODUCT_ALERT_STOCK_PRODUCT_ID` (`product_id`),
  KEY `PRODUCT_ALERT_STOCK_WEBSITE_ID` (`website_id`),
  KEY `PRODUCT_ALERT_STOCK_STORE_ID` (`store_id`),
  CONSTRAINT `PRODUCT_ALERT_STOCK_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_STOCK_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_STOCK_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `PRODUCT_ALERT_STOCK_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Product Alert Stock';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_alert_stock`
--

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

--
-- Table structure for table `queue`
--

DROP TABLE IF EXISTS `queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queue` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Queue ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Queue name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `QUEUE_NAME` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8 COMMENT='Table storing unique queues';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue`
--

LOCK TABLES `queue` WRITE;
/*!40000 ALTER TABLE `queue` DISABLE KEYS */;
INSERT INTO `queue` VALUES (18,'async.operations.all'),(15,'codegenerator'),(4,'export'),(10,'inventory.indexer.sourceItem'),(11,'inventory.indexer.stock'),(6,'inventory.mass.update'),(7,'inventory.reservations.cleanup'),(8,'inventory.reservations.update'),(9,'inventory.reservations.updateSalabilityStatus'),(5,'inventory.source.items.cleanup'),(12,'media.content.synchronization'),(13,'media.gallery.renditions.update'),(14,'media.gallery.synchronization'),(3,'media.storage.catalog.image.resize'),(1,'product_action_attribute.update'),(2,'product_action_attribute.website.update'),(17,'product_alert.queue'),(19,'queueOrder'),(20,'queueTest'),(21,'sales.rule.quote.trigger.recollect'),(16,'sales.rule.update.coupon.usage');
/*!40000 ALTER TABLE `queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `queue_lock`
--

DROP TABLE IF EXISTS `queue_lock`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queue_lock` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Message ID',
  `message_code` varchar(255) NOT NULL DEFAULT '' COMMENT 'Message Code',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`id`),
  UNIQUE KEY `QUEUE_LOCK_MESSAGE_CODE` (`message_code`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='Messages that were processed are inserted here to be locked.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_lock`
--

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

--
-- Table structure for table `queue_message`
--

DROP TABLE IF EXISTS `queue_message`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queue_message` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Message ID',
  `topic_name` varchar(255) DEFAULT NULL COMMENT 'Message topic',
  `body` longtext DEFAULT NULL COMMENT 'Message body',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Queue messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_message`
--

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

--
-- Table structure for table `queue_message_status`
--

DROP TABLE IF EXISTS `queue_message_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queue_message_status` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Relation ID',
  `queue_id` int(10) unsigned NOT NULL COMMENT 'Queue ID',
  `message_id` bigint(20) unsigned NOT NULL COMMENT 'Message ID',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `status` smallint(5) unsigned NOT NULL COMMENT 'Message status in particular queue',
  `number_of_trials` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of trials to processed failed message processing',
  PRIMARY KEY (`id`),
  UNIQUE KEY `QUEUE_MESSAGE_STATUS_QUEUE_ID_MESSAGE_ID` (`queue_id`,`message_id`),
  KEY `QUEUE_MESSAGE_STATUS_MESSAGE_ID_QUEUE_MESSAGE_ID` (`message_id`),
  KEY `QUEUE_MESSAGE_STATUS_STATUS_UPDATED_AT` (`status`,`updated_at`),
  CONSTRAINT `QUEUE_MESSAGE_STATUS_MESSAGE_ID_QUEUE_MESSAGE_ID` FOREIGN KEY (`message_id`) REFERENCES `queue_message` (`id`) ON DELETE CASCADE,
  CONSTRAINT `QUEUE_MESSAGE_STATUS_QUEUE_ID_QUEUE_ID` FOREIGN KEY (`queue_id`) REFERENCES `queue` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Relation table to keep associations between queues and messages';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_message_status`
--

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

--
-- Table structure for table `queue_poison_pill`
--

DROP TABLE IF EXISTS `queue_poison_pill`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `queue_poison_pill` (
  `version` varchar(255) NOT NULL COMMENT 'Poison Pill version.'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sequence table for poison pill versions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `queue_poison_pill`
--

LOCK TABLES `queue_poison_pill` WRITE;
/*!40000 ALTER TABLE `queue_poison_pill` DISABLE KEYS */;
INSERT INTO `queue_poison_pill` VALUES ('version-632316f65b588');
/*!40000 ALTER TABLE `queue_poison_pill` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote`
--

DROP TABLE IF EXISTS `quote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `converted_at` timestamp NULL DEFAULT NULL COMMENT 'Converted At',
  `is_active` smallint(5) unsigned DEFAULT 1 COMMENT 'Is Active',
  `is_virtual` smallint(5) unsigned DEFAULT 0 COMMENT 'Is Virtual',
  `is_multi_shipping` smallint(5) unsigned DEFAULT 0 COMMENT 'Is Multi Shipping',
  `items_count` int(10) unsigned DEFAULT 0 COMMENT 'Items Count',
  `items_qty` decimal(12,4) DEFAULT 0.0000 COMMENT 'Items Qty',
  `orig_order_id` int(10) unsigned DEFAULT 0 COMMENT 'Orig Order ID',
  `store_to_base_rate` decimal(12,4) DEFAULT 0.0000 COMMENT 'Store To Base Rate',
  `store_to_quote_rate` decimal(12,4) DEFAULT 0.0000 COMMENT 'Store To Quote Rate',
  `base_currency_code` varchar(255) DEFAULT NULL COMMENT 'Base Currency Code',
  `store_currency_code` varchar(255) DEFAULT NULL COMMENT 'Store Currency Code',
  `quote_currency_code` varchar(255) DEFAULT NULL COMMENT 'Quote Currency Code',
  `grand_total` decimal(20,4) DEFAULT 0.0000 COMMENT 'Grand Total',
  `base_grand_total` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Grand Total',
  `checkout_method` varchar(255) DEFAULT NULL COMMENT 'Checkout Method',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `customer_tax_class_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Tax Class ID',
  `customer_group_id` int(10) unsigned DEFAULT 0 COMMENT 'Customer Group ID',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_prefix` varchar(40) DEFAULT NULL COMMENT 'Customer Prefix',
  `customer_firstname` varchar(255) DEFAULT NULL COMMENT 'Customer Firstname',
  `customer_middlename` varchar(40) DEFAULT NULL COMMENT 'Customer Middlename',
  `customer_lastname` varchar(255) DEFAULT NULL COMMENT 'Customer Lastname',
  `customer_suffix` varchar(40) DEFAULT NULL COMMENT 'Customer Suffix',
  `customer_dob` datetime DEFAULT NULL COMMENT 'Customer Dob',
  `customer_note` text DEFAULT NULL COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT 1 COMMENT 'Customer Note Notify',
  `customer_is_guest` smallint(5) unsigned DEFAULT 0 COMMENT 'Customer Is Guest',
  `remote_ip` varchar(45) DEFAULT NULL COMMENT 'Remote Ip',
  `applied_rule_ids` varchar(255) DEFAULT NULL COMMENT 'Applied Rule Ids',
  `reserved_order_id` varchar(64) DEFAULT NULL COMMENT 'Reserved Order ID',
  `password_hash` varchar(255) DEFAULT NULL COMMENT 'Password Hash',
  `coupon_code` varchar(255) DEFAULT NULL COMMENT 'Coupon Code',
  `global_currency_code` varchar(255) DEFAULT NULL COMMENT 'Global Currency Code',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_to_quote_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Quote Rate',
  `customer_taxvat` varchar(255) DEFAULT NULL COMMENT 'Customer Taxvat',
  `customer_gender` varchar(255) DEFAULT NULL COMMENT 'Customer Gender',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `subtotal_with_discount` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal With Discount',
  `base_subtotal_with_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal With Discount',
  `is_changed` int(10) unsigned DEFAULT NULL COMMENT 'Is Changed',
  `trigger_recollect` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Trigger Recollect',
  `ext_shipping_info` text DEFAULT NULL COMMENT 'Ext Shipping Info',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `is_persistent` smallint(5) unsigned DEFAULT 0 COMMENT 'Is Quote Persistent',
  `mp_smtp_ace_token` varchar(255) DEFAULT NULL COMMENT 'ACE Token',
  `mp_smtp_ace_sent` smallint(6) DEFAULT 0 COMMENT 'ACE Sent',
  `mp_smtp_ace_log_ids` text DEFAULT NULL COMMENT 'ACE Log Ids',
  `mp_smtp_ace_log_data` text DEFAULT NULL COMMENT 'ACE Log Data',
  PRIMARY KEY (`entity_id`),
  KEY `QUOTE_CUSTOMER_ID_STORE_ID_IS_ACTIVE` (`customer_id`,`store_id`,`is_active`),
  KEY `QUOTE_STORE_ID` (`store_id`),
  CONSTRAINT `QUOTE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote`
--

LOCK TABLES `quote` WRITE;
/*!40000 ALTER TABLE `quote` DISABLE KEYS */;
INSERT INTO `quote` VALUES (16,1,'2022-08-18 06:58:48','2022-08-18 06:58:48',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1.0000,1.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'37.176.62.187',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'zlTDty8P5wPLiNLkTjdno9mTTTRltRSQ',0,NULL,NULL),(17,1,'2022-08-25 06:15:24','2022-08-25 06:18:03',NULL,0,0,0,1,2.0000,0,0.0000,0.0000,'EUR','EUR','EUR',34.0000,34.0000,NULL,3,3,1,'mara.giongo@thread.solutions',NULL,'Mara',NULL,'Giongo',NULL,NULL,NULL,1,0,'87.27.194.133',NULL,'000000006',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,24.0000,24.0000,24.0000,24.0000,1,0,NULL,NULL,0,'S9rfn4mRkOk20k2evSM4xhrzJD8bWHW6',0,NULL,NULL),(18,1,'2022-08-25 07:29:55','2022-08-25 07:31:35',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',9.5000,9.5000,'guest',NULL,3,NULL,'stefano.gabrielli@deltainformatica.eu',NULL,'STEFANO',NULL,'GABRIELLI',NULL,NULL,NULL,1,1,'37.176.81.119',NULL,'000000007',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,4.5000,4.5000,4.5000,4.5000,1,0,NULL,NULL,0,'y5rxBbhwF8Sc5x58IWIAAbjWEpj1lb5P',0,NULL,NULL),(19,1,'2022-08-25 12:26:11','2022-08-25 12:26:11',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.0000,0.0000,NULL,4,NULL,1,'laura.berto@ftcoop.it',NULL,'Laura',NULL,'Bertò',NULL,NULL,NULL,1,0,'217.71.68.23',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,'AKpQfd54dVNpcl01JMr9HxFC6LFH3crX',0,NULL,NULL),(20,1,'2022-08-25 16:28:56','2022-08-25 16:28:56',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.0000,0.0000,NULL,5,NULL,1,'michelabranchi@gmail.com',NULL,'MICHELA',NULL,'BRANCHI',NULL,NULL,NULL,1,0,'2.34.166.152',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,'Its2UI1jZGBHqxIb8iujUh1evPCXgqps',0,NULL,NULL),(21,1,'2022-08-26 13:15:14','2022-08-26 14:20:09',NULL,1,0,0,2,3.0000,0,0.0000,0.0000,'EUR','EUR','EUR',36.0000,36.0000,NULL,3,3,1,'mara.giongo@thread.solutions',NULL,'Mara',NULL,'Giongo',NULL,NULL,NULL,1,0,'87.27.194.133',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,21.0000,21.0000,21.0000,21.0000,1,0,NULL,NULL,0,'9dQ6TuKqVd2iPcz6ip2B0b6NkFGuC313',0,NULL,NULL),(22,1,'2022-08-31 08:36:40','2022-08-31 08:36:40',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',4.5000,4.5000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'37.186.230.194',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,4.5000,4.5000,4.5000,4.5000,1,0,NULL,NULL,0,'a0lWKGqmim0dYNwQPpwoOcj5eait6QQi',0,NULL,NULL),(23,1,'2022-09-04 19:45:47','2022-09-04 19:45:47',NULL,1,0,0,0,0.0000,0,0.0000,0.0000,'EUR','EUR','EUR',0.0000,0.0000,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,0.0000,0.0000,0.0000,0.0000,1,0,NULL,NULL,0,'thueYbVp6h2ET3PDa0hQT1u0lhjEcXkJ',0,NULL,NULL),(24,1,'2022-09-13 08:01:58','2022-09-13 08:02:49',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',18.4200,18.4200,'guest',NULL,3,NULL,'andrea.gottardi@deltainformatica.eu',NULL,'Andrea',NULL,'Gottardi',NULL,NULL,NULL,1,1,'213.21.147.71',NULL,'000000008',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,11.0000,11.0000,11.0000,11.0000,1,0,NULL,NULL,0,'olgvlKGh9FryyISrzX1j3mSuEXNcxIlf',0,NULL,NULL),(25,1,'2022-09-13 08:06:45','2022-09-13 08:07:51',NULL,0,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',18.4200,18.4200,'guest',NULL,3,NULL,'andrea.gottardi@deltainformatica.eu',NULL,'Andrea',NULL,'Gottardi',NULL,NULL,NULL,1,1,'213.21.147.71',NULL,'000000009',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,11.0000,11.0000,11.0000,11.0000,1,0,NULL,NULL,0,'CteT5AHgUAGCYIs8dM8LBlMJiHq3URcN',0,NULL,NULL),(26,1,'2022-09-13 08:20:50','2022-09-13 08:23:37',NULL,0,0,0,1,2.0000,0,0.0000,0.0000,'EUR','EUR','EUR',36.8400,36.8400,'guest',NULL,3,NULL,'andreagot16@gmail.com',NULL,'Andrea',NULL,'Gottardi',NULL,NULL,NULL,1,1,'213.21.147.71',NULL,'000000010',NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,22.0000,22.0000,22.0000,22.0000,1,0,NULL,NULL,0,'mmcN8OCp9jLUykdcU5C9O9Qao21QIwN0',0,NULL,NULL),(27,1,'2022-09-13 08:23:25','2022-09-13 08:23:25',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',4.5000,4.5000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'213.21.147.71',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,4.5000,4.5000,4.5000,4.5000,1,0,NULL,NULL,0,'45FtCNArl3p87JBH3d1p3Opq7qYVBf2w',0,NULL,NULL),(28,1,'2022-09-15 12:13:15','2022-09-15 12:13:15',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1.0000,1.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'95.131.43.130',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'fNOa6ehFjJwhNsSAtWL8axgbxkVN6RYS',0,NULL,NULL),(29,1,'2022-09-16 10:00:31','2022-09-16 10:00:31',NULL,1,0,0,1,1.0000,0,0.0000,0.0000,'EUR','EUR','EUR',1.0000,1.0000,NULL,NULL,3,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,'213.21.147.71',NULL,NULL,NULL,NULL,'EUR',1.0000,1.0000,NULL,NULL,1.0000,1.0000,1.0000,1.0000,1,0,NULL,NULL,0,'yam1MCObcpYrahUtKqzUmApgwZijs7l8',0,NULL,NULL);
/*!40000 ALTER TABLE `quote` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_address`
--

DROP TABLE IF EXISTS `quote_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_address` (
  `address_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Address ID',
  `quote_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `save_in_address_book` smallint(6) DEFAULT 0 COMMENT 'Save In Address Book',
  `customer_address_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer Address ID',
  `address_type` varchar(10) DEFAULT NULL COMMENT 'Address Type',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `prefix` varchar(40) DEFAULT NULL COMMENT 'Prefix',
  `firstname` varchar(255) DEFAULT NULL,
  `middlename` varchar(40) DEFAULT NULL,
  `lastname` varchar(255) DEFAULT NULL,
  `suffix` varchar(40) DEFAULT NULL COMMENT 'Suffix',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `street` varchar(255) DEFAULT NULL COMMENT 'Street',
  `city` varchar(255) DEFAULT NULL,
  `region` varchar(255) DEFAULT NULL,
  `region_id` int(10) unsigned DEFAULT NULL COMMENT 'Region ID',
  `postcode` varchar(20) DEFAULT NULL COMMENT 'Postcode',
  `country_id` varchar(30) DEFAULT NULL COMMENT 'Country ID',
  `telephone` varchar(255) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `same_as_billing` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Same As Billing',
  `collect_shipping_rates` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Collect Shipping Rates',
  `shipping_method` varchar(120) DEFAULT NULL,
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `weight` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Weight',
  `subtotal` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Subtotal',
  `subtotal_with_discount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal With Discount',
  `base_subtotal_with_discount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Subtotal With Discount',
  `tax_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Tax Amount',
  `shipping_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Shipping Amount',
  `base_shipping_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Shipping Amount',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `discount_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Discount Amount',
  `grand_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Grand Total',
  `base_grand_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Grand Total',
  `customer_notes` text DEFAULT NULL COMMENT 'Customer Notes',
  `applied_taxes` text DEFAULT NULL COMMENT 'Applied Taxes',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Amount',
  `base_shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `base_subtotal_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `vat_id` text DEFAULT NULL COMMENT 'Vat ID',
  `vat_is_valid` smallint(6) DEFAULT NULL COMMENT 'Vat Is Valid',
  `vat_request_id` text DEFAULT NULL COMMENT 'Vat Request ID',
  `vat_request_date` text DEFAULT NULL COMMENT 'Vat Request Date',
  `vat_request_success` smallint(6) DEFAULT NULL COMMENT 'Vat Request Success',
  `validated_country_code` text DEFAULT NULL COMMENT 'Validated Country Code',
  `validated_vat_number` text DEFAULT NULL COMMENT 'Validated Vat Number',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `free_shipping` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Free Shipping',
  PRIMARY KEY (`address_id`),
  KEY `QUOTE_ADDRESS_QUOTE_ID` (`quote_id`),
  CONSTRAINT `QUOTE_ADDRESS_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_address`
--

LOCK TABLES `quote_address` WRITE;
/*!40000 ALTER TABLE `quote_address` DISABLE KEYS */;
INSERT INTO `quote_address` VALUES (38,16,'2022-08-18 06:58:48','2022-08-18 06:58:48',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(39,16,'2022-08-18 06:58:48','2022-08-18 06:58:48',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(41,17,'2022-08-25 06:15:24','2022-08-25 06:17:53',3,1,3,'shipping','mara.giongo@thread.solutions',NULL,'Mara',NULL,'Giongo',NULL,'Test','test','trento','Trento',909,'38122','IT','333333333333',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',2.0000,24.0000,24.0000,24.0000,24.0000,0.0000,0.0000,10.0000,10.0000,0.0000,0.0000,0.0000,0.0000,34.0000,34.0000,NULL,'[]',NULL,0.0000,0.0000,24.0000,24.0000,0.0000,0.0000,0.0000,NULL,10.0000,10.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(42,17,'2022-08-25 06:18:02','2022-08-25 06:18:02',3,NULL,NULL,'billing','mara.giongo@thread.solutions',NULL,'Mara',NULL,'Giongo',NULL,'Test','test','trento','Trento',909,'38122','IT','333333333333',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(44,18,'2022-08-25 07:29:55','2022-08-25 07:31:16',NULL,0,NULL,'shipping','stefano.gabrielli@deltainformatica.eu',NULL,'STEFANO',NULL,'GABRIELLI',NULL,NULL,'VIA PERINI 55','TRENTO','Trento',909,'38122','IT','3404713511',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',0.5000,4.5000,4.5000,4.5000,4.5000,0.0000,0.0000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,9.5000,9.5000,NULL,'[]',NULL,0.0000,0.0000,4.5000,4.5000,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(45,18,'2022-08-25 07:31:34','2022-08-25 07:31:34',NULL,NULL,NULL,'billing','stefano.gabrielli@deltainformatica.eu',NULL,'STEFANO',NULL,'GABRIELLI',NULL,NULL,'VIA PERINI 55','TRENTO','Trento',909,'38122','IT','3404713511',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(46,19,'2022-08-25 12:26:11','2022-08-25 12:26:11',4,0,NULL,'billing','laura.berto@ftcoop.it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(47,19,'2022-08-25 12:26:11','2022-08-25 12:26:11',4,0,NULL,'shipping','laura.berto@ftcoop.it',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(48,20,'2022-08-25 16:28:56','2022-08-25 16:28:56',5,0,NULL,'billing','michelabranchi@gmail.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(49,20,'2022-08-25 16:28:56','2022-08-25 16:28:56',5,0,NULL,'shipping','michelabranchi@gmail.com',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(50,21,'2022-08-26 13:15:14','2022-08-26 13:15:14',3,0,3,'billing','mara.giongo@thread.solutions',NULL,'Mara',NULL,'Giongo',NULL,'Test','test','trento','Trento',909,'38122','IT','333333333333',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(51,21,'2022-08-26 13:15:14','2022-08-26 14:20:09',3,0,3,'shipping','mara.giongo@thread.solutions',NULL,'Mara',NULL,'Giongo',NULL,'Test','test','trento','Trento',909,'38122','IT','333333333333',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',2.0000,21.0000,21.0000,21.0000,21.0000,0.0000,0.0000,15.0000,15.0000,0.0000,0.0000,0.0000,0.0000,36.0000,36.0000,NULL,'[]',NULL,0.0000,0.0000,21.0000,21.0000,0.0000,0.0000,0.0000,NULL,15.0000,15.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(52,22,'2022-08-31 08:36:40','2022-08-31 08:36:40',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(53,22,'2022-08-31 08:36:40','2022-08-31 08:36:40',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.5000,4.5000,4.5000,4.5000,4.5000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,4.5000,NULL,'[]',NULL,0.0000,0.0000,4.5000,4.5000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(54,23,'2022-09-04 19:45:47','2022-09-04 19:45:47',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(55,23,'2022-09-04 19:45:47','2022-09-04 19:45:47',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(57,24,'2022-09-13 08:01:58','2022-09-13 08:02:41',NULL,0,NULL,'shipping','andrea.gottardi@deltainformatica.eu',NULL,'Andrea',NULL,'Gottardi',NULL,'Delta Informatica','Via Kufstein, 5','Trento','Trento',909,'38121','IT','3333333333',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',111.0000,11.0000,11.0000,11.0000,11.0000,2.4200,2.4200,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,18.4200,18.4200,NULL,'{\"Iva 22%\":{\"amount\":2.42,\"base_amount\":2.42,\"percent\":22,\"id\":\"Iva 22%\",\"rates\":[{\"percent\":22,\"code\":\"Iva 22%\",\"title\":\"Iva 22%\"}],\"item_id\":\"18\",\"item_type\":\"product\",\"associated_item_id\":null,\"process\":0}}',NULL,0.0000,0.0000,13.4200,13.4200,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(58,24,'2022-09-13 08:02:45','2022-09-13 08:02:45',NULL,NULL,NULL,'billing','andrea.gottardi@deltainformatica.eu',NULL,'Andrea',NULL,'Gottardi',NULL,'Delta Informatica','Via Kufstein, 5','Trento','Trento',909,'38121','IT','3333333333',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(60,25,'2022-09-13 08:06:45','2022-09-13 08:07:48',NULL,0,NULL,'shipping','andrea.gottardi@deltainformatica.eu',NULL,'Andrea',NULL,'Gottardi',NULL,'Delta','Kufstein, 5','Trento','Trento',909,'38121','IT','3333333333',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',111.0000,11.0000,11.0000,11.0000,11.0000,2.4200,2.4200,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,18.4200,18.4200,NULL,'{\"Iva 22%\":{\"amount\":2.42,\"base_amount\":2.42,\"percent\":22,\"id\":\"Iva 22%\",\"rates\":[{\"percent\":22,\"code\":\"Iva 22%\",\"title\":\"Iva 22%\"}],\"item_id\":\"19\",\"item_type\":\"product\",\"associated_item_id\":null,\"process\":0}}',NULL,0.0000,0.0000,13.4200,13.4200,0.0000,0.0000,0.0000,NULL,5.0000,5.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(61,25,'2022-09-13 08:07:50','2022-09-13 08:07:50',NULL,NULL,NULL,'billing','andrea.gottardi@deltainformatica.eu',NULL,'Andrea',NULL,'Gottardi',NULL,'Delta','Kufstein, 5','Trento','Trento',909,'38121','IT','3333333333',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(63,26,'2022-09-13 08:20:50','2022-09-13 08:22:59',NULL,0,NULL,'shipping','andreagot16@gmail.com',NULL,'Andrea',NULL,'Gottardi',NULL,'Test Company','via Kufstein 5\nDeltaLab','Trento','Trento',909,'38121','IT','3333333333',NULL,0,0,'flatrate_flatrate','Flat Rate - Fixed',2222.0000,22.0000,22.0000,22.0000,22.0000,4.8400,4.8400,10.0000,10.0000,0.0000,0.0000,0.0000,0.0000,36.8400,36.8400,NULL,'{\"Iva 22%\":{\"amount\":4.84,\"base_amount\":4.84,\"percent\":22,\"id\":\"Iva 22%\",\"rates\":[{\"percent\":22,\"code\":\"Iva 22%\",\"title\":\"Iva 22%\"}],\"item_id\":\"20\",\"item_type\":\"product\",\"associated_item_id\":null,\"process\":0}}',NULL,0.0000,0.0000,26.8400,26.8400,0.0000,0.0000,0.0000,NULL,10.0000,10.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(64,27,'2022-09-13 08:23:25','2022-09-13 08:23:25',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(65,27,'2022-09-13 08:23:25','2022-09-13 08:23:25',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.5000,4.5000,4.5000,4.5000,4.5000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,4.5000,NULL,'[]',NULL,0.0000,0.0000,4.5000,4.5000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(66,26,'2022-09-13 08:23:29','2022-09-13 08:23:29',NULL,NULL,NULL,'billing','andreagot16@gmail.com',NULL,'Andrea',NULL,'Gottardi',NULL,'Test Company','via Kufstein 5\nDeltaLab','Trento','Trento',909,'38121','IT','3333333333',NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(67,28,'2022-09-15 12:13:15','2022-09-15 12:13:15',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(68,28,'2022-09-15 12:13:15','2022-09-15 12:13:15',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(69,29,'2022-09-16 10:00:31','2022-09-16 10:00:31',NULL,0,NULL,'billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,NULL,'null',NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(70,29,'2022-09-16 10:00:31','2022-09-16 10:00:31',NULL,0,NULL,'shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,0.0000,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,NULL,'[]',NULL,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `quote_address` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_address_item`
--

DROP TABLE IF EXISTS `quote_address_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_address_item` (
  `address_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Address Item ID',
  `parent_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Item ID',
  `quote_address_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote Address ID',
  `quote_item_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote Item ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `applied_rule_ids` text DEFAULT NULL COMMENT 'Applied Rule Ids',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Weight',
  `qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty',
  `discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Discount Amount',
  `tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Tax Amount',
  `row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Row Total',
  `row_total_with_discount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Row Total With Discount',
  `base_discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Discount Amount',
  `base_tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Tax Amount',
  `row_weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Row Weight',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `super_product_id` int(10) unsigned DEFAULT NULL COMMENT 'Super Product ID',
  `parent_product_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `image` varchar(255) DEFAULT NULL COMMENT 'Image',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text DEFAULT NULL COMMENT 'Description',
  `is_qty_decimal` int(10) unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `price` decimal(12,4) DEFAULT NULL COMMENT 'Price',
  `discount_percent` decimal(12,4) DEFAULT NULL COMMENT 'Discount Percent',
  `no_discount` int(10) unsigned DEFAULT NULL COMMENT 'No Discount',
  `tax_percent` decimal(12,4) DEFAULT NULL COMMENT 'Tax Percent',
  `base_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Price',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `free_shipping` int(10) unsigned DEFAULT NULL COMMENT 'Free Shipping',
  PRIMARY KEY (`address_item_id`),
  KEY `QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID` (`quote_address_id`),
  KEY `QUOTE_ADDRESS_ITEM_PARENT_ITEM_ID` (`parent_item_id`),
  KEY `QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID` (`quote_item_id`),
  KEY `QUOTE_ADDRESS_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `QUOTE_ADDRESS_ITEM_QUOTE_ADDRESS_ID_QUOTE_ADDRESS_ADDRESS_ID` FOREIGN KEY (`quote_address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ADDRESS_ITEM_QUOTE_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`quote_item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ADDR_ITEM_PARENT_ITEM_ID_QUOTE_ADDR_ITEM_ADDR_ITEM_ID` FOREIGN KEY (`parent_item_id`) REFERENCES `quote_address_item` (`address_item_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Address Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_address_item`
--

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

--
-- Table structure for table `quote_id_mask`
--

DROP TABLE IF EXISTS `quote_id_mask`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_id_mask` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `quote_id` int(10) unsigned NOT NULL COMMENT 'Quote ID',
  `masked_id` varchar(32) DEFAULT NULL COMMENT 'Masked ID',
  PRIMARY KEY (`entity_id`,`quote_id`),
  KEY `QUOTE_ID_MASK_QUOTE_ID` (`quote_id`),
  KEY `QUOTE_ID_MASK_MASKED_ID` (`masked_id`),
  CONSTRAINT `QUOTE_ID_MASK_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COMMENT='Quote ID and masked ID mapping';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_id_mask`
--

LOCK TABLES `quote_id_mask` WRITE;
/*!40000 ALTER TABLE `quote_id_mask` DISABLE KEYS */;
INSERT INTO `quote_id_mask` VALUES (14,24,'1UGyr1MTmep9QlTN9ieETBxQqx4VKDEF'),(17,27,'6WUaEzHAHPN5QmkhiD2cyIY4GTy53kCu'),(11,18,'gwVQd7JjHccHxLk3R47B8PkUKLayB58f'),(16,26,'LrixtrFaWThmZXcBzBpWYym0cwFQtktA'),(13,23,'oiAfphTVdOkQv3yO42gl45hhRx6N98Tu'),(15,25,'paoPW4e5TPeDI5xdGmabUbvS4SpvqV0x'),(19,29,'PcBBHrprnrmFIWJe0bFymHgqdC2cDFzY'),(10,16,'xTki2ljZpYYnXWXxCspANebVjRF2cD7E'),(18,28,'y1SaFEuuDuYn25PvYbJ0RuL3laoGG6xh'),(12,22,'Y73l177LRRGBJyrC47CkpqccCe02LUj2');
/*!40000 ALTER TABLE `quote_id_mask` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_item`
--

DROP TABLE IF EXISTS `quote_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `quote_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `parent_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Item ID',
  `is_virtual` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text DEFAULT NULL COMMENT 'Description',
  `applied_rule_ids` text DEFAULT NULL COMMENT 'Applied Rule Ids',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `is_qty_decimal` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `no_discount` smallint(5) unsigned DEFAULT 0 COMMENT 'No Discount',
  `weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Weight',
  `qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty',
  `price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Price',
  `base_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Price',
  `custom_price` decimal(12,4) DEFAULT NULL COMMENT 'Custom Price',
  `discount_percent` decimal(12,4) DEFAULT 0.0000 COMMENT 'Discount Percent',
  `discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Discount Amount',
  `tax_percent` decimal(12,4) DEFAULT 0.0000 COMMENT 'Tax Percent',
  `tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Tax Amount',
  `row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Row Total',
  `row_total_with_discount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Row Total With Discount',
  `row_weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Row Weight',
  `product_type` varchar(255) DEFAULT NULL COMMENT 'Product Type',
  `base_tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Before Discount',
  `tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Before Discount',
  `original_custom_price` decimal(12,4) DEFAULT NULL COMMENT 'Original Custom Price',
  `redirect_url` varchar(255) DEFAULT NULL COMMENT 'Redirect Url',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `free_shipping` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Free Shipping',
  `weee_tax_applied` text DEFAULT NULL COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`item_id`),
  KEY `QUOTE_ITEM_PARENT_ITEM_ID` (`parent_item_id`),
  KEY `QUOTE_ITEM_PRODUCT_ID` (`product_id`),
  KEY `QUOTE_ITEM_QUOTE_ID` (`quote_id`),
  KEY `QUOTE_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `QUOTE_ITEM_PARENT_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`parent_item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ITEM_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `QUOTE_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_item`
--

LOCK TABLES `quote_item` WRITE;
/*!40000 ALTER TABLE `quote_item` DISABLE KEYS */;
INSERT INTO `quote_item` VALUES (12,16,'2022-08-18 06:58:48','2022-08-18 06:58:48',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(13,17,'2022-08-25 06:16:12','2022-08-25 06:16:29',2,1,NULL,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,1.0000,2.0000,12.0000,12.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,24.0000,24.0000,0.0000,2.0000,'simple',NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,24.0000,24.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,18,'2022-08-25 07:29:55','2022-08-25 07:29:55',4,1,NULL,0,'12345678-0aa9916d-2da6-433b-8d0a-127cda4606c8','Costata di Manzo 1 - Federazione Trentina della Cooperazione',NULL,NULL,NULL,1,0,0.5000,1.0000,4.5000,4.5000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,4.5000,0.0000,0.5000,'simple',NULL,NULL,NULL,NULL,NULL,4.5000,4.5000,4.5000,4.5000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(15,21,'2022-08-26 13:15:24','2022-08-26 13:15:28',4,1,NULL,0,'12345678-0aa9916d-2da6-433b-8d0a-127cda4606c8','Costata di Manzo 1 - Federazione Trentina della Cooperazione',NULL,NULL,NULL,1,0,0.5000,2.0000,4.5000,4.5000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,9.0000,9.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,4.5000,4.5000,9.0000,9.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(16,21,'2022-08-26 13:15:29','2022-08-26 13:15:29',2,1,NULL,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,1.0000,1.0000,12.0000,12.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,0.0000,1.0000,'simple',NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(17,22,'2022-08-31 08:36:40','2022-08-31 08:36:40',4,1,NULL,0,'12345678-0aa9916d-2da6-433b-8d0a-127cda4606c8','Costata di Manzo 1 - Federazione Trentina della Cooperazione',NULL,NULL,NULL,1,0,0.5000,1.0000,4.5000,4.5000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,4.5000,0.0000,0.5000,'simple',NULL,NULL,NULL,NULL,NULL,4.5000,4.5000,4.5000,4.5000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(18,24,'2022-09-13 08:01:58','2022-09-13 08:02:41',8,1,NULL,0,'VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4','Vino di prova - Delta Informatica',NULL,NULL,NULL,1,0,111.0000,1.0000,11.0000,11.0000,NULL,0.0000,0.0000,0.0000,22.0000,2.4200,2.4200,11.0000,11.0000,0.0000,111.0000,'simple',NULL,NULL,NULL,NULL,NULL,13.4200,13.4200,13.4200,13.4200,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(19,25,'2022-09-13 08:06:45','2022-09-13 08:07:48',8,1,NULL,0,'VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4','Vino di prova - Delta Informatica',NULL,NULL,NULL,1,0,111.0000,1.0000,11.0000,11.0000,NULL,0.0000,0.0000,0.0000,22.0000,2.4200,2.4200,11.0000,11.0000,0.0000,111.0000,'simple',NULL,NULL,NULL,NULL,NULL,13.4200,13.4200,13.4200,13.4200,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(20,26,'2022-09-13 08:20:50','2022-09-13 08:22:59',8,1,NULL,0,'VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4','Vino di prova - Delta Informatica',NULL,NULL,NULL,1,0,1111.0000,2.0000,11.0000,11.0000,NULL,0.0000,0.0000,0.0000,22.0000,4.8400,4.8400,22.0000,22.0000,0.0000,2222.0000,'simple',NULL,NULL,NULL,NULL,NULL,13.4200,13.4200,26.8400,26.8400,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(21,27,'2022-09-13 08:23:25','2022-09-13 08:23:25',4,1,NULL,0,'12345678-0aa9916d-2da6-433b-8d0a-127cda4606c8','Costata di Manzo 1 - Federazione Trentina della Cooperazione',NULL,NULL,NULL,1,0,0.5000,1.0000,4.5000,4.5000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,4.5000,0.0000,0.5000,'simple',NULL,NULL,NULL,NULL,NULL,4.5000,4.5000,4.5000,4.5000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(22,28,'2022-09-15 12:13:15','2022-09-15 12:13:15',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(23,29,'2022-09-16 10:00:31','2022-09-16 10:00:31',1,1,NULL,0,'vinotest','Vino Test',NULL,NULL,NULL,0,0,NULL,1.0000,1.0000,1.0000,NULL,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,'simple',NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `quote_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_item_option`
--

DROP TABLE IF EXISTS `quote_item_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_item_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `item_id` int(10) unsigned NOT NULL COMMENT 'Item ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `value` text DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`option_id`),
  KEY `QUOTE_ITEM_OPTION_ITEM_ID` (`item_id`),
  CONSTRAINT `QUOTE_ITEM_OPTION_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Item Option';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_item_option`
--

LOCK TABLES `quote_item_option` WRITE;
/*!40000 ALTER TABLE `quote_item_option` DISABLE KEYS */;
INSERT INTO `quote_item_option` VALUES (12,12,1,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}'),(13,13,2,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS92aW5vLmh0bWw,\",\"product\":\"2\",\"qty\":1}'),(14,14,4,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvY29zdGF0YS1kaS1tYW56by0xLWZlZGVyYXppb25lLXRyZW50aW5hLWRlbGxhLWNvb3BlcmF6aW9uZS5odG1s\",\"product\":\"4\",\"selected_configurable_option\":\"\",\"related_product\":\"\",\"item\":\"4\",\"qty\":\"1\"}'),(15,15,4,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"4\",\"qty\":1}'),(16,16,2,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"2\",\"qty\":1}'),(17,17,4,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"4\",\"qty\":1}'),(18,18,8,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvdmluby1kaS1wcm92YS1kZWx0YS1pbmZvcm1hdGljYS5odG1s\",\"product\":\"8\",\"selected_configurable_option\":\"\",\"related_product\":\"\",\"item\":\"8\",\"qty\":\"1\"}'),(19,19,8,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUv\",\"product\":\"8\",\"qty\":\"1\"}'),(20,20,8,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUv\",\"product\":\"8\",\"qty\":\"2\"}'),(21,21,4,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUv\",\"product\":\"4\",\"qty\":1}'),(22,22,1,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvY2F0YWxvZ3NlYXJjaC9yZXN1bHQvP3E9dmlubw,,\",\"product\":\"1\",\"qty\":1}'),(23,23,1,'info_buyRequest','{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvY2F0YWxvZ3NlYXJjaC9yZXN1bHQvP3E9dmlubyt0ZXN0\",\"product\":\"1\",\"qty\":1}');
/*!40000 ALTER TABLE `quote_item_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_payment`
--

DROP TABLE IF EXISTS `quote_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_payment` (
  `payment_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Payment ID',
  `quote_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `method` varchar(255) DEFAULT NULL COMMENT 'Method',
  `cc_type` varchar(255) DEFAULT NULL COMMENT 'Cc Type',
  `cc_number_enc` varchar(255) DEFAULT NULL COMMENT 'Cc Number Enc',
  `cc_last_4` varchar(255) DEFAULT NULL COMMENT 'Cc Last 4',
  `cc_cid_enc` varchar(255) DEFAULT NULL COMMENT 'Cc Cid Enc',
  `cc_owner` varchar(255) DEFAULT NULL COMMENT 'Cc Owner',
  `cc_exp_month` varchar(255) DEFAULT NULL COMMENT 'Cc Exp Month',
  `cc_exp_year` smallint(5) unsigned DEFAULT 0 COMMENT 'Cc Exp Year',
  `cc_ss_owner` varchar(255) DEFAULT NULL COMMENT 'Cc Ss Owner',
  `cc_ss_start_month` smallint(5) unsigned DEFAULT 0 COMMENT 'Cc Ss Start Month',
  `cc_ss_start_year` smallint(5) unsigned DEFAULT 0 COMMENT 'Cc Ss Start Year',
  `po_number` varchar(255) DEFAULT NULL COMMENT 'Po Number',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `cc_ss_issue` varchar(255) DEFAULT NULL COMMENT 'Cc Ss Issue',
  `additional_information` text DEFAULT NULL COMMENT 'Additional Information',
  `paypal_payer_id` varchar(255) DEFAULT NULL COMMENT 'Paypal Payer ID',
  `paypal_payer_status` varchar(255) DEFAULT NULL COMMENT 'Paypal Payer Status',
  `paypal_correlation_id` varchar(255) DEFAULT NULL COMMENT 'Paypal Correlation ID',
  PRIMARY KEY (`payment_id`),
  KEY `QUOTE_PAYMENT_QUOTE_ID` (`quote_id`),
  CONSTRAINT `QUOTE_PAYMENT_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_payment`
--

LOCK TABLES `quote_payment` WRITE;
/*!40000 ALTER TABLE `quote_payment` DISABLE KEYS */;
INSERT INTO `quote_payment` VALUES (9,17,'2022-08-25 06:17:37','2022-08-25 06:17:37','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(10,18,'2022-08-25 07:31:16','2022-08-25 07:31:16','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(11,21,'2022-08-26 14:20:09','2022-08-26 14:20:09','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(12,24,'2022-09-13 08:02:41','2022-09-13 08:02:41','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(13,25,'2022-09-13 08:07:48','2022-09-13 08:07:48','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL),(14,26,'2022-09-13 08:22:59','2022-09-13 08:22:59','checkmo',NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,0,0,NULL,NULL,NULL,'null',NULL,NULL,NULL);
/*!40000 ALTER TABLE `quote_payment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `quote_shipping_rate`
--

DROP TABLE IF EXISTS `quote_shipping_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quote_shipping_rate` (
  `rate_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rate ID',
  `address_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Address ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `carrier` varchar(255) DEFAULT NULL COMMENT 'Carrier',
  `carrier_title` varchar(255) DEFAULT NULL COMMENT 'Carrier Title',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `method` varchar(255) DEFAULT NULL COMMENT 'Method',
  `method_description` text DEFAULT NULL COMMENT 'Method Description',
  `price` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Price',
  `error_message` text DEFAULT NULL COMMENT 'Error Message',
  `method_title` text DEFAULT NULL COMMENT 'Method Title',
  PRIMARY KEY (`rate_id`),
  KEY `QUOTE_SHIPPING_RATE_ADDRESS_ID` (`address_id`),
  CONSTRAINT `QUOTE_SHIPPING_RATE_ADDRESS_ID_QUOTE_ADDRESS_ADDRESS_ID` FOREIGN KEY (`address_id`) REFERENCES `quote_address` (`address_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Quote Shipping Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `quote_shipping_rate`
--

LOCK TABLES `quote_shipping_rate` WRITE;
/*!40000 ALTER TABLE `quote_shipping_rate` DISABLE KEYS */;
INSERT INTO `quote_shipping_rate` VALUES (21,41,'2022-08-25 06:18:02','2022-08-25 06:18:02','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,10.0000,NULL,'Fixed'),(24,44,'2022-08-25 07:31:34','2022-08-25 07:31:34','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(26,51,'2022-08-26 14:20:09','2022-08-26 14:20:09','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,15.0000,NULL,'Fixed'),(29,57,'2022-09-13 08:02:45','2022-09-13 08:02:45','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(32,60,'2022-09-13 08:07:50','2022-09-13 08:07:50','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,5.0000,NULL,'Fixed'),(35,63,'2022-09-13 08:23:29','2022-09-13 08:23:29','flatrate','Flat Rate','flatrate_flatrate','flatrate',NULL,10.0000,NULL,'Fixed');
/*!40000 ALTER TABLE `quote_shipping_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rating`
--

DROP TABLE IF EXISTS `rating`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating` (
  `rating_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rating ID',
  `entity_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `rating_code` varchar(64) NOT NULL COMMENT 'Rating Code',
  `position` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Position On Storefront',
  `is_active` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Rating is active.',
  PRIMARY KEY (`rating_id`),
  UNIQUE KEY `RATING_RATING_CODE` (`rating_code`),
  KEY `RATING_ENTITY_ID` (`entity_id`),
  CONSTRAINT `RATING_ENTITY_ID_RATING_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `rating_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Ratings';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating`
--

LOCK TABLES `rating` WRITE;
/*!40000 ALTER TABLE `rating` DISABLE KEYS */;
INSERT INTO `rating` VALUES (1,1,'Quality',0,1),(2,1,'Value',0,1),(3,1,'Price',0,1);
/*!40000 ALTER TABLE `rating` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rating_entity`
--

DROP TABLE IF EXISTS `rating_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_entity` (
  `entity_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `entity_code` varchar(64) NOT NULL COMMENT 'Entity Code',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `RATING_ENTITY_ENTITY_CODE` (`entity_code`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Rating entities';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_entity`
--

LOCK TABLES `rating_entity` WRITE;
/*!40000 ALTER TABLE `rating_entity` DISABLE KEYS */;
INSERT INTO `rating_entity` VALUES (1,'product'),(2,'product_review'),(3,'review');
/*!40000 ALTER TABLE `rating_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rating_option`
--

DROP TABLE IF EXISTS `rating_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rating Option ID',
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating ID',
  `code` varchar(32) NOT NULL COMMENT 'Rating Option Code',
  `value` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Option Value',
  `position` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Ration option position on Storefront',
  PRIMARY KEY (`option_id`),
  KEY `RATING_OPTION_RATING_ID` (`rating_id`),
  CONSTRAINT `RATING_OPTION_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8 COMMENT='Rating options';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_option`
--

LOCK TABLES `rating_option` WRITE;
/*!40000 ALTER TABLE `rating_option` DISABLE KEYS */;
INSERT INTO `rating_option` VALUES (1,1,'1',1,1),(2,1,'2',2,2),(3,1,'3',3,3),(4,1,'4',4,4),(5,1,'5',5,5),(6,2,'1',1,1),(7,2,'2',2,2),(8,2,'3',3,3),(9,2,'4',4,4),(10,2,'5',5,5),(11,3,'1',1,1),(12,3,'2',2,2),(13,3,'3',3,3),(14,3,'4',4,4),(15,3,'5',5,5);
/*!40000 ALTER TABLE `rating_option` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `rating_option_vote`
--

DROP TABLE IF EXISTS `rating_option_vote`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_option_vote` (
  `vote_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Vote ID',
  `option_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Vote option ID',
  `remote_ip` varchar(16) NOT NULL COMMENT 'Customer IP',
  `remote_ip_long` bigint(20) NOT NULL DEFAULT 0 COMMENT 'Customer IP converted to long integer format',
  `customer_id` int(10) unsigned DEFAULT 0 COMMENT 'Customer ID',
  `entity_pk_value` bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating ID',
  `review_id` bigint(20) unsigned DEFAULT NULL COMMENT 'Review ID',
  `percent` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Percent amount',
  `value` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Vote option value',
  PRIMARY KEY (`vote_id`),
  KEY `RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` (`review_id`),
  KEY `RATING_OPTION_VOTE_OPTION_ID` (`option_id`),
  CONSTRAINT `RATING_OPTION_VOTE_OPTION_ID_RATING_OPTION_OPTION_ID` FOREIGN KEY (`option_id`) REFERENCES `rating_option` (`option_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_OPTION_VOTE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating option values';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_option_vote`
--

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

--
-- Table structure for table `rating_option_vote_aggregated`
--

DROP TABLE IF EXISTS `rating_option_vote_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_option_vote_aggregated` (
  `primary_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Vote aggregation ID',
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating ID',
  `entity_pk_value` bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `vote_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Vote dty',
  `vote_value_sum` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'General vote sum',
  `percent` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Vote percent',
  `percent_approved` smallint(6) DEFAULT 0 COMMENT 'Vote percent approved by admin',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  PRIMARY KEY (`primary_id`),
  KEY `RATING_OPTION_VOTE_AGGREGATED_RATING_ID` (`rating_id`),
  KEY `RATING_OPTION_VOTE_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `RATING_OPTION_VOTE_AGGREGATED_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_OPTION_VOTE_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating vote aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_option_vote_aggregated`
--

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

--
-- Table structure for table `rating_store`
--

DROP TABLE IF EXISTS `rating_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_store` (
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  PRIMARY KEY (`rating_id`,`store_id`),
  KEY `RATING_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `RATING_STORE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_store`
--

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

--
-- Table structure for table `rating_title`
--

DROP TABLE IF EXISTS `rating_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `rating_title` (
  `rating_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `value` varchar(255) NOT NULL COMMENT 'Rating Label',
  PRIMARY KEY (`rating_id`,`store_id`),
  KEY `RATING_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `RATING_TITLE_RATING_ID_RATING_RATING_ID` FOREIGN KEY (`rating_id`) REFERENCES `rating` (`rating_id`) ON DELETE CASCADE,
  CONSTRAINT `RATING_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Rating Title';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `rating_title`
--

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

--
-- Table structure for table `release_notification_viewer_log`
--

DROP TABLE IF EXISTS `release_notification_viewer_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `release_notification_viewer_log` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `viewer_id` int(10) unsigned NOT NULL COMMENT 'Viewer admin user ID',
  `last_view_version` varchar(16) NOT NULL COMMENT 'Viewer last view on product version',
  PRIMARY KEY (`id`),
  UNIQUE KEY `RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID` (`viewer_id`),
  CONSTRAINT `RELEASE_NOTIFICATION_VIEWER_LOG_VIEWER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`viewer_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Release Notification Viewer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `release_notification_viewer_log`
--

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

--
-- Table structure for table `report_compared_product_index`
--

DROP TABLE IF EXISTS `report_compared_product_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_compared_product_index` (
  `index_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Index ID',
  `visitor_id` int(10) unsigned DEFAULT NULL COMMENT 'Visitor ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `added_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Added At',
  PRIMARY KEY (`index_id`),
  UNIQUE KEY `REPORT_COMPARED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  UNIQUE KEY `REPORT_COMPARED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `REPORT_COMPARED_PRODUCT_INDEX_STORE_ID` (`store_id`),
  KEY `REPORT_COMPARED_PRODUCT_INDEX_ADDED_AT` (`added_at`),
  KEY `REPORT_COMPARED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_CMPD_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_CMPD_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_COMPARED_PRODUCT_INDEX_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reports Compared Product Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_compared_product_index`
--

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

--
-- Table structure for table `report_event`
--

DROP TABLE IF EXISTS `report_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_event` (
  `event_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Event ID',
  `logged_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Logged At',
  `event_type_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Event Type ID',
  `object_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Object ID',
  `subject_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Subject ID',
  `subtype` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Subtype',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`event_id`),
  KEY `REPORT_EVENT_EVENT_TYPE_ID` (`event_type_id`),
  KEY `REPORT_EVENT_SUBJECT_ID` (`subject_id`),
  KEY `REPORT_EVENT_OBJECT_ID` (`object_id`),
  KEY `REPORT_EVENT_SUBTYPE` (`subtype`),
  KEY `REPORT_EVENT_STORE_ID` (`store_id`),
  CONSTRAINT `REPORT_EVENT_EVENT_TYPE_ID_REPORT_EVENT_TYPES_EVENT_TYPE_ID` FOREIGN KEY (`event_type_id`) REFERENCES `report_event_types` (`event_type_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_EVENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reports Event Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_event`
--

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

--
-- Table structure for table `report_event_types`
--

DROP TABLE IF EXISTS `report_event_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_event_types` (
  `event_type_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Event Type ID',
  `event_name` varchar(64) NOT NULL COMMENT 'Event Name',
  `customer_login` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer Login',
  PRIMARY KEY (`event_type_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='Reports Event Type Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_event_types`
--

LOCK TABLES `report_event_types` WRITE;
/*!40000 ALTER TABLE `report_event_types` DISABLE KEYS */;
INSERT INTO `report_event_types` VALUES (1,'catalog_product_view',0),(2,'sendfriend_product',0),(3,'catalog_product_compare_add_product',0),(4,'checkout_cart_add_product',0),(5,'wishlist_add_product',0),(6,'wishlist_share',0);
/*!40000 ALTER TABLE `report_event_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `report_viewed_product_aggregated_daily`
--

DROP TABLE IF EXISTS `report_viewed_product_aggregated_daily`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_viewed_product_aggregated_daily` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `views_num` int(11) NOT NULL DEFAULT 0 COMMENT 'Number of Views',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_DAILY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_DAILY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_DAILY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Daily';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_aggregated_daily`
--

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

--
-- Table structure for table `report_viewed_product_aggregated_monthly`
--

DROP TABLE IF EXISTS `report_viewed_product_aggregated_monthly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_viewed_product_aggregated_monthly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `views_num` int(11) NOT NULL DEFAULT 0 COMMENT 'Number of Views',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_MONTHLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_MONTHLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_MONTHLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Monthly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_aggregated_monthly`
--

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

--
-- Table structure for table `report_viewed_product_aggregated_yearly`
--

DROP TABLE IF EXISTS `report_viewed_product_aggregated_yearly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_viewed_product_aggregated_yearly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `views_num` int(11) NOT NULL DEFAULT 0 COMMENT 'Number of Views',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `REPORT_VIEWED_PRD_AGGRED_YEARLY_PERIOD_STORE_ID_PRD_ID` (`period`,`store_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_AGGRED_YEARLY_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_AGGREGATED_YEARLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Most Viewed Products Aggregated Yearly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_aggregated_yearly`
--

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

--
-- Table structure for table `report_viewed_product_index`
--

DROP TABLE IF EXISTS `report_viewed_product_index`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `report_viewed_product_index` (
  `index_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Index ID',
  `visitor_id` int(10) unsigned DEFAULT NULL COMMENT 'Visitor ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `added_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Added At',
  PRIMARY KEY (`index_id`),
  UNIQUE KEY `REPORT_VIEWED_PRODUCT_INDEX_VISITOR_ID_PRODUCT_ID` (`visitor_id`,`product_id`),
  UNIQUE KEY `REPORT_VIEWED_PRODUCT_INDEX_CUSTOMER_ID_PRODUCT_ID` (`customer_id`,`product_id`),
  KEY `REPORT_VIEWED_PRODUCT_INDEX_STORE_ID` (`store_id`),
  KEY `REPORT_VIEWED_PRODUCT_INDEX_ADDED_AT` (`added_at`),
  KEY `REPORT_VIEWED_PRODUCT_INDEX_PRODUCT_ID` (`product_id`),
  CONSTRAINT `REPORT_VIEWED_PRD_IDX_CSTR_ID_CSTR_ENTT_ENTT_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRD_IDX_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REPORT_VIEWED_PRODUCT_INDEX_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reports Viewed Product Index Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `report_viewed_product_index`
--

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

--
-- Table structure for table `reporting_counts`
--

DROP TABLE IF EXISTS `reporting_counts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reporting_counts` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'Item Reported',
  `count` int(10) unsigned DEFAULT NULL COMMENT 'Count Value',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for all count related events generated via the cron job';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_counts`
--

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

--
-- Table structure for table `reporting_module_status`
--

DROP TABLE IF EXISTS `reporting_module_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reporting_module_status` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Module ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Module Name',
  `active` varchar(255) DEFAULT NULL COMMENT 'Module Active Status',
  `setup_version` varchar(255) DEFAULT NULL COMMENT 'Module Version',
  `state` varchar(255) DEFAULT NULL COMMENT 'Module State',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Module Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_module_status`
--

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

--
-- Table structure for table `reporting_orders`
--

DROP TABLE IF EXISTS `reporting_orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reporting_orders` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `total` decimal(20,4) unsigned DEFAULT NULL,
  `total_base` decimal(20,4) unsigned DEFAULT NULL,
  `item_count` int(10) unsigned NOT NULL COMMENT 'Line Item Count',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for all orders';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_orders`
--

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

--
-- Table structure for table `reporting_system_updates`
--

DROP TABLE IF EXISTS `reporting_system_updates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reporting_system_updates` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'Update Type',
  `action` varchar(255) DEFAULT NULL COMMENT 'Action Performed',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for system updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_system_updates`
--

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

--
-- Table structure for table `reporting_users`
--

DROP TABLE IF EXISTS `reporting_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reporting_users` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `type` varchar(255) DEFAULT NULL COMMENT 'User Type',
  `action` varchar(255) DEFAULT NULL COMMENT 'Action Performed',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Reporting for user actions';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reporting_users`
--

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

--
-- Table structure for table `review`
--

DROP TABLE IF EXISTS `review`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review` (
  `review_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Review create date',
  `entity_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `entity_pk_value` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `status_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Status code',
  PRIMARY KEY (`review_id`),
  KEY `REVIEW_ENTITY_ID` (`entity_id`),
  KEY `REVIEW_STATUS_ID` (`status_id`),
  KEY `REVIEW_ENTITY_PK_VALUE` (`entity_pk_value`),
  CONSTRAINT `REVIEW_ENTITY_ID_REVIEW_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `review_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `REVIEW_STATUS_ID_REVIEW_STATUS_STATUS_ID` FOREIGN KEY (`status_id`) REFERENCES `review_status` (`status_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review base information';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review`
--

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

--
-- Table structure for table `review_detail`
--

DROP TABLE IF EXISTS `review_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_detail` (
  `detail_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review detail ID',
  `review_id` bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT 'Review ID',
  `store_id` smallint(5) unsigned DEFAULT 0 COMMENT 'Store ID',
  `title` varchar(255) NOT NULL COMMENT 'Title',
  `detail` text NOT NULL COMMENT 'Detail description',
  `nickname` varchar(128) NOT NULL COMMENT 'User nickname',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  PRIMARY KEY (`detail_id`),
  KEY `REVIEW_DETAIL_REVIEW_ID` (`review_id`),
  KEY `REVIEW_DETAIL_STORE_ID` (`store_id`),
  KEY `REVIEW_DETAIL_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `REVIEW_DETAIL_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `REVIEW_DETAIL_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE,
  CONSTRAINT `REVIEW_DETAIL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review detail information';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_detail`
--

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

--
-- Table structure for table `review_entity`
--

DROP TABLE IF EXISTS `review_entity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_entity` (
  `entity_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Review entity ID',
  `entity_code` varchar(32) NOT NULL COMMENT 'Review entity code',
  PRIMARY KEY (`entity_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Review entities';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_entity`
--

LOCK TABLES `review_entity` WRITE;
/*!40000 ALTER TABLE `review_entity` DISABLE KEYS */;
INSERT INTO `review_entity` VALUES (1,'product'),(2,'customer'),(3,'category');
/*!40000 ALTER TABLE `review_entity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `review_entity_summary`
--

DROP TABLE IF EXISTS `review_entity_summary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_entity_summary` (
  `primary_id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'Summary review entity ID',
  `entity_pk_value` bigint(20) NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `entity_type` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Entity type ID',
  `reviews_count` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Qty of reviews',
  `rating_summary` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Summarized rating',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  PRIMARY KEY (`primary_id`),
  UNIQUE KEY `REVIEW_ENTITY_SUMMARY_ENTITY_PK_VALUE_STORE_ID_ENTITY_TYPE` (`entity_pk_value`,`store_id`,`entity_type`),
  KEY `REVIEW_ENTITY_SUMMARY_STORE_ID` (`store_id`),
  CONSTRAINT `REVIEW_ENTITY_SUMMARY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review aggregates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_entity_summary`
--

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

--
-- Table structure for table `review_status`
--

DROP TABLE IF EXISTS `review_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_status` (
  `status_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Status ID',
  `status_code` varchar(32) NOT NULL COMMENT 'Status code',
  PRIMARY KEY (`status_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Review statuses';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_status`
--

LOCK TABLES `review_status` WRITE;
/*!40000 ALTER TABLE `review_status` DISABLE KEYS */;
INSERT INTO `review_status` VALUES (1,'Approved'),(2,'Pending'),(3,'Not Approved');
/*!40000 ALTER TABLE `review_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `review_store`
--

DROP TABLE IF EXISTS `review_store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `review_store` (
  `review_id` bigint(20) unsigned NOT NULL COMMENT 'Review ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  PRIMARY KEY (`review_id`,`store_id`),
  KEY `REVIEW_STORE_STORE_ID` (`store_id`),
  CONSTRAINT `REVIEW_STORE_REVIEW_ID_REVIEW_REVIEW_ID` FOREIGN KEY (`review_id`) REFERENCES `review` (`review_id`) ON DELETE CASCADE,
  CONSTRAINT `REVIEW_STORE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Review Store';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `review_store`
--

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

--
-- Table structure for table `sales_bestsellers_aggregated_daily`
--

DROP TABLE IF EXISTS `sales_bestsellers_aggregated_daily`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_bestsellers_aggregated_daily` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty Ordered',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID` (`store_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_DAILY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_DAILY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Daily';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_bestsellers_aggregated_daily`
--

LOCK TABLES `sales_bestsellers_aggregated_daily` WRITE;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_daily` DISABLE KEYS */;
INSERT INTO `sales_bestsellers_aggregated_daily` VALUES (1,'2022-09-13',1,8,'Vino di prova - Delta Informatica',11.0000,4.0000,1),(2,'2022-09-13',0,8,'Vino di prova - Delta Informatica',11.0000,4.0000,1);
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_daily` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_bestsellers_aggregated_monthly`
--

DROP TABLE IF EXISTS `sales_bestsellers_aggregated_monthly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_bestsellers_aggregated_monthly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty Ordered',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID` (`store_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_MONTHLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_MONTHLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Monthly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_bestsellers_aggregated_monthly`
--

LOCK TABLES `sales_bestsellers_aggregated_monthly` WRITE;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_monthly` DISABLE KEYS */;
INSERT INTO `sales_bestsellers_aggregated_monthly` VALUES (1,'2022-09-01',0,8,'Vino di prova - Delta Informatica',11.0000,4.0000,1),(2,'2022-09-01',1,8,'Vino di prova - Delta Informatica',11.0000,4.0000,1);
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_monthly` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_bestsellers_aggregated_yearly`
--

DROP TABLE IF EXISTS `sales_bestsellers_aggregated_yearly`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_bestsellers_aggregated_yearly` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_name` varchar(255) DEFAULT NULL COMMENT 'Product Name',
  `product_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Product Price',
  `qty_ordered` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty Ordered',
  `rating_pos` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Rating Pos',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_PERIOD_STORE_ID_PRODUCT_ID` (`period`,`store_id`,`product_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID` (`store_id`),
  KEY `SALES_BESTSELLERS_AGGREGATED_YEARLY_PRODUCT_ID` (`product_id`),
  CONSTRAINT `SALES_BESTSELLERS_AGGREGATED_YEARLY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Sales Bestsellers Aggregated Yearly';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_bestsellers_aggregated_yearly`
--

LOCK TABLES `sales_bestsellers_aggregated_yearly` WRITE;
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_yearly` DISABLE KEYS */;
INSERT INTO `sales_bestsellers_aggregated_yearly` VALUES (1,'2022-01-01',0,8,'Vino di prova - Delta Informatica',11.0000,4.0000,1),(2,'2022-01-01',1,8,'Vino di prova - Delta Informatica',11.0000,4.0000,1);
/*!40000 ALTER TABLE `sales_bestsellers_aggregated_yearly` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_creditmemo`
--

DROP TABLE IF EXISTS `sales_creditmemo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_creditmemo` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `store_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `base_adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Negative',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `store_to_base_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_adjustment` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `adjustment` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Positive',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `creditmemo_status` int(11) DEFAULT NULL COMMENT 'Creditmemo Status',
  `state` int(11) DEFAULT NULL COMMENT 'State',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address ID',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address ID',
  `invoice_id` int(11) DEFAULT NULL COMMENT 'Invoice ID',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `transaction_id` varchar(255) DEFAULT NULL COMMENT 'Transaction ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `customer_note` text DEFAULT NULL COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_CREDITMEMO_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_CREDITMEMO_STORE_ID` (`store_id`),
  KEY `SALES_CREDITMEMO_ORDER_ID` (`order_id`),
  KEY `SALES_CREDITMEMO_CREDITMEMO_STATUS` (`creditmemo_status`),
  KEY `SALES_CREDITMEMO_STATE` (`state`),
  KEY `SALES_CREDITMEMO_CREATED_AT` (`created_at`),
  KEY `SALES_CREDITMEMO_UPDATED_AT` (`updated_at`),
  KEY `SALES_CREDITMEMO_SEND_EMAIL` (`send_email`),
  KEY `SALES_CREDITMEMO_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_CREDITMEMO_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_CREDITMEMO_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo`
--

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

--
-- Table structure for table `sales_creditmemo_comment`
--

DROP TABLE IF EXISTS `sales_creditmemo_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_creditmemo_comment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` int(11) DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible On Front',
  `comment` text DEFAULT NULL COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_CREDITMEMO_COMMENT_CREATED_AT` (`created_at`),
  KEY `SALES_CREDITMEMO_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_CREDITMEMO_COMMENT_PARENT_ID_SALES_CREDITMEMO_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_creditmemo` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo_comment`
--

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

--
-- Table structure for table `sales_creditmemo_grid`
--

DROP TABLE IF EXISTS `sales_creditmemo_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_creditmemo_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID',
  `order_created_at` timestamp NULL DEFAULT NULL COMMENT 'Order Created At',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `state` int(11) DEFAULT NULL COMMENT 'Status',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `order_status` varchar(32) DEFAULT NULL COMMENT 'Order Status',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `customer_name` varchar(128) NOT NULL COMMENT 'Customer Name',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` smallint(6) DEFAULT NULL COMMENT 'Customer Group ID',
  `payment_method` varchar(32) DEFAULT NULL COMMENT 'Payment Method',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `order_base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Order Grand Total',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_CREDITMEMO_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `SALES_CREDITMEMO_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_CREDITMEMO_GRID_UPDATED_AT` (`updated_at`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `SALES_CREDITMEMO_GRID_STATE` (`state`),
  KEY `SALES_CREDITMEMO_GRID_BILLING_NAME` (`billing_name`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_STATUS` (`order_status`),
  KEY `SALES_CREDITMEMO_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  KEY `SALES_CREDITMEMO_GRID_STORE_ID` (`store_id`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_BASE_GRAND_TOTAL` (`order_base_grand_total`),
  KEY `SALES_CREDITMEMO_GRID_ORDER_ID` (`order_id`),
  FULLTEXT KEY `FTI_32B7BA885941A8254EE84AE650ABDC86` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo_grid`
--

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

--
-- Table structure for table `sales_creditmemo_item`
--

DROP TABLE IF EXISTS `sales_creditmemo_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_creditmemo_item` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `base_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Price',
  `tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_row_total` decimal(12,4) DEFAULT NULL COMMENT 'Base Row Total',
  `discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Amount',
  `row_total` decimal(12,4) DEFAULT NULL COMMENT 'Row Total',
  `base_discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price` decimal(12,4) DEFAULT NULL COMMENT 'Price',
  `base_row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `product_id` int(11) DEFAULT NULL COMMENT 'Product ID',
  `order_item_id` int(11) DEFAULT NULL COMMENT 'Order Item ID',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `description` text DEFAULT NULL COMMENT 'Description',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `tax_ratio` text DEFAULT NULL COMMENT 'Ratio of tax in the creditmemo item over tax of the order item',
  `weee_tax_applied` text DEFAULT NULL COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_CREDITMEMO_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_CREDITMEMO_ITEM_PARENT_ID_SALES_CREDITMEMO_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_creditmemo` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Creditmemo Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_creditmemo_item`
--

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

--
-- Table structure for table `sales_invoice`
--

DROP TABLE IF EXISTS `sales_invoice`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoice` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `store_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `store_to_base_rate` decimal(20,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address ID',
  `is_used_for_refund` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Used For Refund',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `can_void_flag` smallint(5) unsigned DEFAULT NULL COMMENT 'Can Void Flag',
  `state` int(11) DEFAULT NULL COMMENT 'State',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address ID',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `transaction_id` varchar(255) DEFAULT NULL COMMENT 'Transaction ID',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `base_total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Refunded',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `customer_note` text DEFAULT NULL COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_INVOICE_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_INVOICE_STORE_ID` (`store_id`),
  KEY `SALES_INVOICE_GRAND_TOTAL` (`grand_total`),
  KEY `SALES_INVOICE_ORDER_ID` (`order_id`),
  KEY `SALES_INVOICE_STATE` (`state`),
  KEY `SALES_INVOICE_CREATED_AT` (`created_at`),
  KEY `SALES_INVOICE_UPDATED_AT` (`updated_at`),
  KEY `SALES_INVOICE_SEND_EMAIL` (`send_email`),
  KEY `SALES_INVOICE_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_INVOICE_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_INVOICE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice`
--

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

--
-- Table structure for table `sales_invoice_comment`
--

DROP TABLE IF EXISTS `sales_invoice_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoice_comment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible On Front',
  `comment` text DEFAULT NULL COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_INVOICE_COMMENT_CREATED_AT` (`created_at`),
  KEY `SALES_INVOICE_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_INVOICE_COMMENT_PARENT_ID_SALES_INVOICE_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_invoice` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice_comment`
--

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

--
-- Table structure for table `sales_invoice_grid`
--

DROP TABLE IF EXISTS `sales_invoice_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoice_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `state` int(11) DEFAULT NULL COMMENT 'State',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `order_increment_id` varchar(50) DEFAULT NULL COMMENT 'Order Increment ID',
  `order_created_at` timestamp NULL DEFAULT NULL COMMENT 'Order Created At',
  `customer_name` varchar(255) DEFAULT NULL COMMENT 'Customer Name',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` int(11) DEFAULT NULL,
  `payment_method` varchar(128) DEFAULT NULL COMMENT 'Payment Method',
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_INVOICE_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_INVOICE_GRID_STORE_ID` (`store_id`),
  KEY `SALES_INVOICE_GRID_GRAND_TOTAL` (`grand_total`),
  KEY `SALES_INVOICE_GRID_ORDER_ID` (`order_id`),
  KEY `SALES_INVOICE_GRID_STATE` (`state`),
  KEY `SALES_INVOICE_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `SALES_INVOICE_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_INVOICE_GRID_UPDATED_AT` (`updated_at`),
  KEY `SALES_INVOICE_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `SALES_INVOICE_GRID_BILLING_NAME` (`billing_name`),
  KEY `SALES_INVOICE_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  FULLTEXT KEY `FTI_95D9C924DD6A8734EB8B5D01D60F90DE` (`increment_id`,`order_increment_id`,`billing_name`,`billing_address`,`shipping_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice_grid`
--

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

--
-- Table structure for table `sales_invoice_item`
--

DROP TABLE IF EXISTS `sales_invoice_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoice_item` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `base_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Price',
  `tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Tax Amount',
  `base_row_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total',
  `discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Amount',
  `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total',
  `base_discount_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_price_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',
  `price` decimal(12,4) DEFAULT NULL COMMENT 'Price',
  `base_row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `row_total_incl_tax` decimal(12,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `product_id` int(11) DEFAULT NULL COMMENT 'Product ID',
  `order_item_id` int(11) DEFAULT NULL COMMENT 'Order Item ID',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `description` text DEFAULT NULL COMMENT 'Description',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `tax_ratio` text DEFAULT NULL COMMENT 'Ratio of tax invoiced over tax of the order item',
  `weee_tax_applied` text DEFAULT NULL COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_INVOICE_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_INVOICE_ITEM_PARENT_ID_SALES_INVOICE_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_invoice` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Invoice Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoice_item`
--

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

--
-- Table structure for table `sales_invoiced_aggregated`
--

DROP TABLE IF EXISTS `sales_invoiced_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoiced_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `orders_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Orders Invoiced',
  `invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced',
  `invoiced_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Captured',
  `invoiced_not_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Not Captured',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_INVOICED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_INVOICED_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_INVOICED_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoiced_aggregated`
--

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

--
-- Table structure for table `sales_invoiced_aggregated_order`
--

DROP TABLE IF EXISTS `sales_invoiced_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_invoiced_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `orders_invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Orders Invoiced',
  `invoiced` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced',
  `invoiced_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Captured',
  `invoiced_not_captured` decimal(12,4) DEFAULT NULL COMMENT 'Invoiced Not Captured',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_INVOICED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_INVOICED_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_INVOICED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Invoiced Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_invoiced_aggregated_order`
--

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

--
-- Table structure for table `sales_order`
--

DROP TABLE IF EXISTS `sales_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `state` varchar(32) DEFAULT NULL COMMENT 'State',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `coupon_code` varchar(255) DEFAULT NULL COMMENT 'Coupon Code',
  `protect_code` varchar(255) DEFAULT NULL COMMENT 'Protect Code',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `is_virtual` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `base_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Amount',
  `base_discount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Canceled',
  `base_discount_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Invoiced',
  `base_discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Refunded',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `base_shipping_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Canceled',
  `base_shipping_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Invoiced',
  `base_shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Refunded',
  `base_shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Amount',
  `base_shipping_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Tax Refunded',
  `base_subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal',
  `base_subtotal_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Canceled',
  `base_subtotal_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Invoiced',
  `base_subtotal_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Refunded',
  `base_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Amount',
  `base_tax_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Canceled',
  `base_tax_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Invoiced',
  `base_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Refunded',
  `base_to_global_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Global Rate',
  `base_to_order_rate` decimal(20,4) DEFAULT NULL COMMENT 'Base To Order Rate',
  `base_total_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Canceled',
  `base_total_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Invoiced',
  `base_total_invoiced_cost` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Invoiced Cost',
  `base_total_offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Offline Refunded',
  `base_total_online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Online Refunded',
  `base_total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Paid',
  `base_total_qty_ordered` decimal(12,4) DEFAULT NULL COMMENT 'Base Total Qty Ordered',
  `base_total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Refunded',
  `discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Amount',
  `discount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Discount Canceled',
  `discount_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Invoiced',
  `discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Refunded',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `shipping_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Canceled',
  `shipping_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Invoiced',
  `shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Refunded',
  `shipping_tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Amount',
  `shipping_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Tax Refunded',
  `store_to_base_rate` decimal(12,4) DEFAULT NULL COMMENT 'Store To Base Rate',
  `store_to_order_rate` decimal(12,4) DEFAULT NULL COMMENT 'Store To Order Rate',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `subtotal_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Canceled',
  `subtotal_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Invoiced',
  `subtotal_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Refunded',
  `tax_amount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Amount',
  `tax_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Tax Canceled',
  `tax_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Tax Invoiced',
  `tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Tax Refunded',
  `total_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Total Canceled',
  `total_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Total Invoiced',
  `total_offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Offline Refunded',
  `total_online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Online Refunded',
  `total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Total Paid',
  `total_qty_ordered` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty Ordered',
  `total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Refunded',
  `can_ship_partially` smallint(5) unsigned DEFAULT NULL COMMENT 'Can Ship Partially',
  `can_ship_partially_item` smallint(5) unsigned DEFAULT NULL COMMENT 'Can Ship Partially Item',
  `customer_is_guest` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Is Guest',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address ID',
  `customer_group_id` int(11) DEFAULT NULL,
  `edit_increment` int(11) DEFAULT NULL COMMENT 'Edit Increment',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `forced_shipment_with_invoice` smallint(5) unsigned DEFAULT NULL COMMENT 'Forced Do Shipment With Invoice',
  `payment_auth_expiration` int(11) DEFAULT NULL COMMENT 'Payment Authorization Expiration',
  `quote_address_id` int(11) DEFAULT NULL COMMENT 'Quote Address ID',
  `quote_id` int(11) DEFAULT NULL COMMENT 'Quote ID',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address ID',
  `adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Negative',
  `adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Adjustment Positive',
  `base_adjustment_negative` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Negative',
  `base_adjustment_positive` decimal(20,4) DEFAULT NULL COMMENT 'Base Adjustment Positive',
  `base_shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Amount',
  `base_subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Subtotal Incl Tax',
  `base_total_due` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Due',
  `payment_authorization_amount` decimal(20,4) DEFAULT NULL COMMENT 'Payment Authorization Amount',
  `shipping_discount_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Amount',
  `subtotal_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal Incl Tax',
  `total_due` decimal(20,4) DEFAULT NULL COMMENT 'Total Due',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `customer_dob` datetime DEFAULT NULL COMMENT 'Customer Dob',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `applied_rule_ids` varchar(128) DEFAULT NULL COMMENT 'Applied Rule Ids',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_firstname` varchar(128) DEFAULT NULL COMMENT 'Customer Firstname',
  `customer_lastname` varchar(128) DEFAULT NULL COMMENT 'Customer Lastname',
  `customer_middlename` varchar(128) DEFAULT NULL COMMENT 'Customer Middlename',
  `customer_prefix` varchar(32) DEFAULT NULL COMMENT 'Customer Prefix',
  `customer_suffix` varchar(32) DEFAULT NULL COMMENT 'Customer Suffix',
  `customer_taxvat` varchar(32) DEFAULT NULL COMMENT 'Customer Taxvat',
  `discount_description` varchar(255) DEFAULT NULL COMMENT 'Discount Description',
  `ext_customer_id` varchar(32) DEFAULT NULL COMMENT 'Ext Customer ID',
  `ext_order_id` varchar(32) DEFAULT NULL COMMENT 'Ext Order ID',
  `global_currency_code` varchar(3) DEFAULT NULL COMMENT 'Global Currency Code',
  `hold_before_state` varchar(32) DEFAULT NULL COMMENT 'Hold Before State',
  `hold_before_status` varchar(32) DEFAULT NULL COMMENT 'Hold Before Status',
  `order_currency_code` varchar(3) DEFAULT NULL COMMENT 'Order Currency Code',
  `original_increment_id` varchar(50) DEFAULT NULL COMMENT 'Original Increment ID',
  `relation_child_id` varchar(32) DEFAULT NULL COMMENT 'Relation Child ID',
  `relation_child_real_id` varchar(32) DEFAULT NULL COMMENT 'Relation Child Real ID',
  `relation_parent_id` varchar(32) DEFAULT NULL COMMENT 'Relation Parent ID',
  `relation_parent_real_id` varchar(32) DEFAULT NULL COMMENT 'Relation Parent Real ID',
  `remote_ip` varchar(45) DEFAULT NULL COMMENT 'Remote Ip',
  `shipping_method` varchar(120) DEFAULT NULL,
  `store_currency_code` varchar(3) DEFAULT NULL COMMENT 'Store Currency Code',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `x_forwarded_for` varchar(255) DEFAULT NULL COMMENT 'X Forwarded For',
  `customer_note` text DEFAULT NULL COMMENT 'Customer Note',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `total_item_count` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Total Item Count',
  `customer_gender` int(11) DEFAULT NULL COMMENT 'Customer Gender',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `shipping_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Discount Tax Compensation Amount',
  `base_shipping_discount_tax_compensation_amnt` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Discount Tax Compensation Amount',
  `discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Invoiced',
  `base_discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Invoiced',
  `discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Refunded',
  `base_discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Refunded',
  `shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Incl Tax',
  `base_shipping_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Incl Tax',
  `coupon_rule_name` varchar(255) DEFAULT NULL COMMENT 'Coupon Sales Rule Name',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `paypal_ipn_customer_notified` int(11) DEFAULT 0 COMMENT 'Paypal Ipn Customer Notified',
  `mp_smtp_email_marketing_synced` smallint(6) DEFAULT 0 COMMENT 'Mp SMTP Email Marketing synced',
  `mp_smtp_email_marketing_order_created` smallint(6) DEFAULT 0 COMMENT 'Mp SMTP Email Marketing order created',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_ORDER_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_ORDER_STATUS` (`status`),
  KEY `SALES_ORDER_STATE` (`state`),
  KEY `SALES_ORDER_STORE_ID` (`store_id`),
  KEY `SALES_ORDER_CREATED_AT` (`created_at`),
  KEY `SALES_ORDER_CUSTOMER_ID` (`customer_id`),
  KEY `SALES_ORDER_EXT_ORDER_ID` (`ext_order_id`),
  KEY `SALES_ORDER_QUOTE_ID` (`quote_id`),
  KEY `SALES_ORDER_UPDATED_AT` (`updated_at`),
  KEY `SALES_ORDER_SEND_EMAIL` (`send_email`),
  KEY `SALES_ORDER_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_ORDER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE SET NULL,
  CONSTRAINT `SALES_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order`
--

LOCK TABLES `sales_order` WRITE;
/*!40000 ALTER TABLE `sales_order` DISABLE KEYS */;
INSERT INTO `sales_order` VALUES (1,'new','pending',NULL,'6a0f29d90d3e420f506c88a2dc903a65','Flat Rate - Fixed',0,1,1,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,6.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,1.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,2,1,NULL,1,1,NULL,NULL,NULL,2,1,NULL,NULL,NULL,NULL,0.0000,1.0000,6.0000,NULL,0.0000,1.0000,6.0000,0.0000,NULL,'000000001',NULL,'EUR','roberto@torresani.eu','Roberto','Torresani',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'151.49.194.8','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-04 16:22:44','2022-08-04 16:23:32',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(2,'new','pending',NULL,'2f2514bf58a8b89076e4d00f9cdfeae4','Flat Rate - Fixed',0,1,NULL,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,1,1,4,NULL,NULL,1,1,NULL,NULL,NULL,9,3,NULL,NULL,NULL,NULL,0.0000,12.0000,17.0000,NULL,0.0000,12.0000,17.0000,1.0000,NULL,'000000002',NULL,'EUR','daniele.dellagiacoma@deltainformatica.eu','Daniele','Dellagiacoma',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'77.83.112.61','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-08 15:24:47','2022-08-08 15:24:48',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(3,'new','pending',NULL,'ea0697ee87b2daff826d40d67cbf8748','Flat Rate - Fixed',0,1,2,0.0000,NULL,NULL,NULL,34.0000,10.0000,NULL,NULL,NULL,0.0000,NULL,24.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,34.0000,10.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,24.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2.0000,NULL,NULL,NULL,0,1,6,1,NULL,1,1,NULL,NULL,NULL,10,5,NULL,NULL,NULL,NULL,0.0000,24.0000,34.0000,NULL,0.0000,24.0000,34.0000,2.0000,NULL,'000000003',NULL,'EUR','daniele.dellagiacoma@deltainformatica.eu','Daniele','Dellagiacoma',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'213.21.147.71','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-09 08:08:41','2022-08-09 08:08:42',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,10.0000,10.0000,NULL,NULL,0,0,0),(4,'new','pending',NULL,'3ad41ba5c896ffccb642c35ef84027d1','Flat Rate - Fixed',0,1,2,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,8,1,NULL,1,1,NULL,NULL,NULL,11,7,NULL,NULL,NULL,NULL,0.0000,12.0000,17.0000,NULL,0.0000,12.0000,17.0000,1.0000,NULL,'000000004',NULL,'EUR','daniele.dellagiacoma@deltainformatica.eu','Daniele','Dellagiacoma',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'213.21.147.71','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-09 11:59:19','2022-08-09 11:59:19',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(5,'new','pending',NULL,'1cc405a1ffbddb2a1fbf11d0beb0142a','Flat Rate - Fixed',0,1,2,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,17.0000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,12.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,0,1,10,1,NULL,1,1,NULL,NULL,NULL,12,9,NULL,NULL,NULL,NULL,0.0000,12.0000,17.0000,NULL,0.0000,12.0000,17.0000,1.0000,NULL,'000000005',NULL,'EUR','daniele.dellagiacoma@deltainformatica.eu','Daniele','Dellagiacoma',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'213.21.147.71','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-09 12:25:53','2022-08-09 12:25:54',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(6,'new','pending',NULL,'49465ddd1c44d91c691841a23c29e1a5','Flat Rate - Fixed',0,1,3,0.0000,NULL,NULL,NULL,34.0000,10.0000,NULL,NULL,NULL,0.0000,NULL,24.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,34.0000,10.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,24.0000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2.0000,NULL,NULL,NULL,0,1,12,1,NULL,1,1,NULL,NULL,NULL,17,11,NULL,NULL,NULL,NULL,0.0000,24.0000,34.0000,NULL,0.0000,24.0000,34.0000,2.0000,NULL,'000000006',NULL,'EUR','mara.giongo@thread.solutions','Mara','Giongo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'87.27.194.133','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-25 06:18:03','2022-08-25 06:18:03',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,10.0000,10.0000,NULL,NULL,0,0,0),(7,'new','pending',NULL,'1714053878552c87c1b263af07889c44','Flat Rate - Fixed',0,1,NULL,0.0000,NULL,NULL,NULL,9.5000,5.0000,NULL,NULL,NULL,0.0000,NULL,4.5000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,9.5000,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,4.5000,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,1,1,14,NULL,NULL,1,1,NULL,NULL,NULL,18,13,NULL,NULL,NULL,NULL,0.0000,4.5000,9.5000,NULL,0.0000,4.5000,9.5000,0.5000,NULL,'000000007',NULL,'EUR','stefano.gabrielli@deltainformatica.eu','STEFANO','GABRIELLI',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'37.176.81.119','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-08-25 07:31:34','2022-08-25 07:31:35',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(8,'new','pending',NULL,'8b74fd14199f51fea7cfdc79926737da','Flat Rate - Fixed',0,1,NULL,0.0000,NULL,NULL,NULL,18.4200,5.0000,NULL,NULL,NULL,0.0000,NULL,11.0000,NULL,NULL,NULL,2.4200,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,18.4200,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,11.0000,NULL,NULL,NULL,2.4200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,1,1,16,NULL,NULL,1,1,NULL,NULL,NULL,24,15,NULL,NULL,NULL,NULL,0.0000,13.4200,18.4200,NULL,0.0000,13.4200,18.4200,111.0000,NULL,'000000008',NULL,'EUR','andrea.gottardi@deltainformatica.eu','Andrea','Gottardi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'213.21.147.71','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-09-13 08:02:46','2022-09-13 08:02:48',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(9,'new','pending',NULL,'af5991245d26edea927bf7d5f9d5636f','Flat Rate - Fixed',0,1,NULL,0.0000,NULL,NULL,NULL,18.4200,5.0000,NULL,NULL,NULL,0.0000,NULL,11.0000,NULL,NULL,NULL,2.4200,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,18.4200,5.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,11.0000,NULL,NULL,NULL,2.4200,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1.0000,NULL,NULL,NULL,1,1,18,NULL,NULL,1,1,NULL,NULL,NULL,25,17,NULL,NULL,NULL,NULL,0.0000,13.4200,18.4200,NULL,0.0000,13.4200,18.4200,111.0000,NULL,'000000009',NULL,'EUR','andrea.gottardi@deltainformatica.eu','Andrea','Gottardi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'213.21.147.71','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-09-13 08:07:50','2022-09-13 08:07:51',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,0,0,0),(10,'new','pending',NULL,'9fd7aaa2705285c490d2ca1a0952ebc8','Flat Rate - Fixed',0,1,NULL,0.0000,NULL,NULL,NULL,36.8400,10.0000,NULL,NULL,NULL,0.0000,NULL,22.0000,NULL,NULL,NULL,4.8400,NULL,NULL,NULL,1.0000,1.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.0000,NULL,NULL,NULL,36.8400,10.0000,NULL,NULL,NULL,0.0000,NULL,0.0000,0.0000,22.0000,NULL,NULL,NULL,4.8400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2.0000,NULL,NULL,NULL,1,1,20,NULL,NULL,1,1,NULL,NULL,NULL,26,19,NULL,NULL,NULL,NULL,0.0000,26.8400,36.8400,NULL,0.0000,26.8400,36.8400,2222.0000,NULL,'000000010',NULL,'EUR','andreagot16@gmail.com','Andrea','Gottardi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'EUR',NULL,NULL,'EUR',NULL,NULL,NULL,NULL,NULL,'213.21.147.71','flatrate_flatrate','EUR','Main Website\nMain Website Store\nDefault Store View',NULL,NULL,'2022-09-13 08:23:30','2022-09-13 08:23:36',1,NULL,0.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,10.0000,10.0000,NULL,NULL,0,0,0);
/*!40000 ALTER TABLE `sales_order` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_address`
--

DROP TABLE IF EXISTS `sales_order_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_address` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent ID',
  `customer_address_id` int(11) DEFAULT NULL COMMENT 'Customer Address ID',
  `quote_address_id` int(11) DEFAULT NULL COMMENT 'Quote Address ID',
  `region_id` int(11) DEFAULT NULL COMMENT 'Region ID',
  `customer_id` int(11) DEFAULT NULL COMMENT 'Customer ID',
  `fax` varchar(255) DEFAULT NULL COMMENT 'Fax',
  `region` varchar(255) DEFAULT NULL COMMENT 'Region',
  `postcode` varchar(255) DEFAULT NULL COMMENT 'Postcode',
  `lastname` varchar(255) DEFAULT NULL COMMENT 'Lastname',
  `street` varchar(255) DEFAULT NULL COMMENT 'Street',
  `city` varchar(255) DEFAULT NULL COMMENT 'City',
  `email` varchar(255) DEFAULT NULL COMMENT 'Email',
  `telephone` varchar(255) DEFAULT NULL COMMENT 'Phone Number',
  `country_id` varchar(2) DEFAULT NULL COMMENT 'Country ID',
  `firstname` varchar(255) DEFAULT NULL COMMENT 'Firstname',
  `address_type` varchar(255) DEFAULT NULL COMMENT 'Address Type',
  `prefix` varchar(255) DEFAULT NULL COMMENT 'Prefix',
  `middlename` varchar(255) DEFAULT NULL COMMENT 'Middlename',
  `suffix` varchar(255) DEFAULT NULL COMMENT 'Suffix',
  `company` varchar(255) DEFAULT NULL COMMENT 'Company',
  `vat_id` text DEFAULT NULL COMMENT 'Vat ID',
  `vat_is_valid` smallint(6) DEFAULT NULL COMMENT 'Vat Is Valid',
  `vat_request_id` text DEFAULT NULL COMMENT 'Vat Request ID',
  `vat_request_date` text DEFAULT NULL COMMENT 'Vat Request Date',
  `vat_request_success` smallint(6) DEFAULT NULL COMMENT 'Vat Request Success',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_ORDER_ADDRESS_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_ORDER_ADDRESS_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Address';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_address`
--

LOCK TABLES `sales_order_address` WRITE;
/*!40000 ALTER TABLE `sales_order_address` DISABLE KEYS */;
INSERT INTO `sales_order_address` VALUES (1,1,NULL,4,909,NULL,NULL,'Trento','38121','Torresani','Via Trentino','Trento','roberto@torresani.eu','3404922491','IT','Roberto','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,1,NULL,5,909,NULL,NULL,'Trento','38121','Torresani','Via Trentino','Trento','roberto@torresani.eu','3404922491','IT','Roberto','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,2,NULL,21,909,NULL,NULL,'Trento','38121','Dellagiacoma','Via kufstein,5','Trento','daniele.dellagiacoma@deltainformatica.eu','3232323236','IT','Daniele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,2,NULL,22,909,NULL,NULL,'Trento','38121','Dellagiacoma','Via kufstein,5','Trento','daniele.dellagiacoma@deltainformatica.eu','3232323236','IT','Daniele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,3,2,24,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,3,2,25,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,4,2,27,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,4,2,28,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,5,2,30,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,5,2,31,909,NULL,NULL,'Trento','38121','Dellagiacoma','via Kufstein, 5','Trento','daniele.dellagiacoma@deltainformatica.eu','3462547685','IT','Daniele','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(11,6,3,41,909,NULL,NULL,'Trento','38122','Giongo','test','trento','mara.giongo@thread.solutions','333333333333','IT','Mara','shipping',NULL,NULL,NULL,'Test',NULL,NULL,NULL,NULL,NULL),(12,6,NULL,42,909,NULL,NULL,'Trento','38122','Giongo','test','trento','mara.giongo@thread.solutions','333333333333','IT','Mara','billing',NULL,NULL,NULL,'Test',NULL,NULL,NULL,NULL,NULL),(13,7,NULL,44,909,NULL,NULL,'Trento','38122','GABRIELLI','VIA PERINI 55','TRENTO','stefano.gabrielli@deltainformatica.eu','3404713511','IT','STEFANO','shipping',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(14,7,NULL,45,909,NULL,NULL,'Trento','38122','GABRIELLI','VIA PERINI 55','TRENTO','stefano.gabrielli@deltainformatica.eu','3404713511','IT','STEFANO','billing',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(15,8,NULL,57,909,NULL,NULL,'Trento','38121','Gottardi','Via Kufstein, 5','Trento','andrea.gottardi@deltainformatica.eu','3333333333','IT','Andrea','shipping',NULL,NULL,NULL,'Delta Informatica',NULL,NULL,NULL,NULL,NULL),(16,8,NULL,58,909,NULL,NULL,'Trento','38121','Gottardi','Via Kufstein, 5','Trento','andrea.gottardi@deltainformatica.eu','3333333333','IT','Andrea','billing',NULL,NULL,NULL,'Delta Informatica',NULL,NULL,NULL,NULL,NULL),(17,9,NULL,60,909,NULL,NULL,'Trento','38121','Gottardi','Kufstein, 5','Trento','andrea.gottardi@deltainformatica.eu','3333333333','IT','Andrea','shipping',NULL,NULL,NULL,'Delta',NULL,NULL,NULL,NULL,NULL),(18,9,NULL,61,909,NULL,NULL,'Trento','38121','Gottardi','Kufstein, 5','Trento','andrea.gottardi@deltainformatica.eu','3333333333','IT','Andrea','billing',NULL,NULL,NULL,'Delta',NULL,NULL,NULL,NULL,NULL),(19,10,NULL,63,909,NULL,NULL,'Trento','38121','Gottardi','via Kufstein 5\nDeltaLab','Trento','andreagot16@gmail.com','3333333333','IT','Andrea','shipping',NULL,NULL,NULL,'Test Company',NULL,NULL,NULL,NULL,NULL),(20,10,NULL,66,909,NULL,NULL,'Trento','38121','Gottardi','via Kufstein 5\nDeltaLab','Trento','andreagot16@gmail.com','3333333333','IT','Andrea','billing',NULL,NULL,NULL,'Test Company',NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `sales_order_address` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_aggregated_created`
--

DROP TABLE IF EXISTS `sales_order_aggregated_created`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_aggregated_created` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `total_qty_ordered` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Qty Ordered',
  `total_qty_invoiced` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Qty Invoiced',
  `total_income_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Income Amount',
  `total_revenue_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Revenue Amount',
  `total_profit_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Profit Amount',
  `total_invoiced_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Invoiced Amount',
  `total_canceled_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Canceled Amount',
  `total_paid_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Paid Amount',
  `total_refunded_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Refunded Amount',
  `total_tax_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Tax Amount',
  `total_tax_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Tax Amount Actual',
  `total_shipping_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Shipping Amount',
  `total_shipping_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Shipping Amount Actual',
  `total_discount_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Discount Amount',
  `total_discount_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Discount Amount Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_ORDER_AGGREGATED_CREATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_AGGREGATED_CREATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Created';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_aggregated_created`
--

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

--
-- Table structure for table `sales_order_aggregated_updated`
--

DROP TABLE IF EXISTS `sales_order_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_aggregated_updated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `total_qty_ordered` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Qty Ordered',
  `total_qty_invoiced` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Qty Invoiced',
  `total_income_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Income Amount',
  `total_revenue_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Revenue Amount',
  `total_profit_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Profit Amount',
  `total_invoiced_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Invoiced Amount',
  `total_canceled_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Canceled Amount',
  `total_paid_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Paid Amount',
  `total_refunded_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Refunded Amount',
  `total_tax_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Tax Amount',
  `total_tax_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Tax Amount Actual',
  `total_shipping_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Shipping Amount',
  `total_shipping_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Shipping Amount Actual',
  `total_discount_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Discount Amount',
  `total_discount_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Discount Amount Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_ORDER_AGGREGATED_UPDATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_aggregated_updated`
--

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

--
-- Table structure for table `sales_order_grid`
--

DROP TABLE IF EXISTS `sales_order_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `store_name` varchar(255) DEFAULT NULL COMMENT 'Store Name',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `base_grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Base Grand Total',
  `base_total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Total Paid',
  `grand_total` decimal(20,4) DEFAULT NULL COMMENT 'Grand Total',
  `total_paid` decimal(20,4) DEFAULT NULL COMMENT 'Total Paid',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `base_currency_code` varchar(3) DEFAULT NULL COMMENT 'Base Currency Code',
  `order_currency_code` varchar(255) DEFAULT NULL COMMENT 'Order Currency Code',
  `shipping_name` varchar(255) DEFAULT NULL COMMENT 'Shipping Name',
  `billing_name` varchar(255) DEFAULT NULL COMMENT 'Billing Name',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `customer_email` varchar(255) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group` varchar(255) DEFAULT NULL COMMENT 'Customer Group',
  `subtotal` decimal(20,4) DEFAULT NULL COMMENT 'Subtotal',
  `shipping_and_handling` decimal(20,4) DEFAULT NULL COMMENT 'Shipping and handling amount',
  `customer_name` varchar(255) DEFAULT NULL COMMENT 'Customer Name',
  `payment_method` varchar(255) DEFAULT NULL COMMENT 'Payment Method',
  `total_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Total Refunded',
  `pickup_location_code` varchar(255) DEFAULT NULL COMMENT 'Pickup Location Code',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_ORDER_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_ORDER_GRID_STATUS` (`status`),
  KEY `SALES_ORDER_GRID_STORE_ID` (`store_id`),
  KEY `SALES_ORDER_GRID_BASE_GRAND_TOTAL` (`base_grand_total`),
  KEY `SALES_ORDER_GRID_BASE_TOTAL_PAID` (`base_total_paid`),
  KEY `SALES_ORDER_GRID_GRAND_TOTAL` (`grand_total`),
  KEY `SALES_ORDER_GRID_TOTAL_PAID` (`total_paid`),
  KEY `SALES_ORDER_GRID_SHIPPING_NAME` (`shipping_name`),
  KEY `SALES_ORDER_GRID_BILLING_NAME` (`billing_name`),
  KEY `SALES_ORDER_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_ORDER_GRID_CUSTOMER_ID` (`customer_id`),
  KEY `SALES_ORDER_GRID_UPDATED_AT` (`updated_at`),
  KEY `SALES_ORDER_GRID_PICKUP_LOCATION_CODE` (`pickup_location_code`),
  FULLTEXT KEY `FTI_65B9E9925EC58F0C7C2E2F6379C233E7` (`increment_id`,`billing_name`,`shipping_name`,`shipping_address`,`billing_address`,`customer_name`,`customer_email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_grid`
--

LOCK TABLES `sales_order_grid` WRITE;
/*!40000 ALTER TABLE `sales_order_grid` DISABLE KEYS */;
INSERT INTO `sales_order_grid` VALUES (1,'pending',1,'Main Website\nMain Website Store\nDefault Store View',1,6.0000,NULL,6.0000,NULL,'000000001','EUR','EUR','Roberto Torresani','Roberto Torresani','2022-08-04 16:22:44','2022-08-04 16:23:32','Via Trentino,Trento,Trento,38121','Via Trentino,Trento,Trento,38121','Flat Rate - Fixed','roberto@torresani.eu','1',1.0000,5.0000,'Roberto Torresani','checkmo',NULL,NULL),(2,'pending',1,'Main Website\nMain Website Store\nDefault Store View',NULL,17.0000,NULL,17.0000,NULL,'000000002','EUR','EUR','Daniele Dellagiacoma','Daniele Dellagiacoma','2022-08-08 15:24:47','2022-08-08 15:24:47','Via kufstein,5,Trento,Trento,38121','Via kufstein,5,Trento,Trento,38121','Flat Rate - Fixed','daniele.dellagiacoma@deltainformatica.eu',NULL,12.0000,5.0000,'Daniele Dellagiacoma','checkmo',NULL,NULL),(3,'pending',1,'Main Website\nMain Website Store\nDefault Store View',2,34.0000,NULL,34.0000,NULL,'000000003','EUR','EUR','Daniele Dellagiacoma','Daniele Dellagiacoma','2022-08-09 08:08:41','2022-08-09 08:08:41','via Kufstein, 5,Trento,Trento,38121','via Kufstein, 5,Trento,Trento,38121','Flat Rate - Fixed','daniele.dellagiacoma@deltainformatica.eu','1',24.0000,10.0000,'Daniele Dellagiacoma','checkmo',NULL,NULL),(4,'pending',1,'Main Website\nMain Website Store\nDefault Store View',2,17.0000,NULL,17.0000,NULL,'000000004','EUR','EUR','Daniele Dellagiacoma','Daniele Dellagiacoma','2022-08-09 11:59:19','2022-08-09 11:59:19','via Kufstein, 5,Trento,Trento,38121','via Kufstein, 5,Trento,Trento,38121','Flat Rate - Fixed','daniele.dellagiacoma@deltainformatica.eu','1',12.0000,5.0000,'Daniele Dellagiacoma','checkmo',NULL,NULL),(5,'pending',1,'Main Website\nMain Website Store\nDefault Store View',2,17.0000,NULL,17.0000,NULL,'000000005','EUR','EUR','Daniele Dellagiacoma','Daniele Dellagiacoma','2022-08-09 12:25:53','2022-08-09 12:25:53','via Kufstein, 5,Trento,Trento,38121','via Kufstein, 5,Trento,Trento,38121','Flat Rate - Fixed','daniele.dellagiacoma@deltainformatica.eu','1',12.0000,5.0000,'Daniele Dellagiacoma','checkmo',NULL,NULL),(6,'pending',1,'Main Website\nMain Website Store\nDefault Store View',3,34.0000,NULL,34.0000,NULL,'000000006','EUR','EUR','Mara Giongo','Mara Giongo','2022-08-25 06:18:03','2022-08-25 06:18:03','Test,test,trento,Trento,38122','Test,test,trento,Trento,38122','Flat Rate - Fixed','mara.giongo@thread.solutions','1',24.0000,10.0000,'Mara Giongo','checkmo',NULL,NULL),(7,'pending',1,'Main Website\nMain Website Store\nDefault Store View',NULL,9.5000,NULL,9.5000,NULL,'000000007','EUR','EUR','STEFANO GABRIELLI','STEFANO GABRIELLI','2022-08-25 07:31:34','2022-08-25 07:31:34','VIA PERINI 55,TRENTO,Trento,38122','VIA PERINI 55,TRENTO,Trento,38122','Flat Rate - Fixed','stefano.gabrielli@deltainformatica.eu',NULL,4.5000,5.0000,'STEFANO GABRIELLI','checkmo',NULL,NULL),(8,'pending',1,'Main Website\nMain Website Store\nDefault Store View',NULL,18.4200,NULL,18.4200,NULL,'000000008','EUR','EUR','Andrea Gottardi','Andrea Gottardi','2022-09-13 08:02:46','2022-09-13 08:02:46','Delta Informatica,Via Kufstein, 5,Trento,Trento,38121','Delta Informatica,Via Kufstein, 5,Trento,Trento,38121','Flat Rate - Fixed','andrea.gottardi@deltainformatica.eu',NULL,11.0000,5.0000,'Andrea Gottardi','checkmo',NULL,NULL),(9,'pending',1,'Main Website\nMain Website Store\nDefault Store View',NULL,18.4200,NULL,18.4200,NULL,'000000009','EUR','EUR','Andrea Gottardi','Andrea Gottardi','2022-09-13 08:07:50','2022-09-13 08:07:50','Delta,Kufstein, 5,Trento,Trento,38121','Delta,Kufstein, 5,Trento,Trento,38121','Flat Rate - Fixed','andrea.gottardi@deltainformatica.eu',NULL,11.0000,5.0000,'Andrea Gottardi','checkmo',NULL,NULL),(10,'pending',1,'Main Website\nMain Website Store\nDefault Store View',NULL,36.8400,NULL,36.8400,NULL,'000000010','EUR','EUR','Andrea Gottardi','Andrea Gottardi','2022-09-13 08:23:30','2022-09-13 08:23:30','Test Company,via Kufstein 5\nDeltaLab,Trento,Trento,38121','Test Company,via Kufstein 5\nDeltaLab,Trento,Trento,38121','Flat Rate - Fixed','andreagot16@gmail.com',NULL,22.0000,10.0000,'Andrea Gottardi','checkmo',NULL,NULL);
/*!40000 ALTER TABLE `sales_order_grid` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_item`
--

DROP TABLE IF EXISTS `sales_order_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_item` (
  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',
  `order_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Order ID',
  `parent_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Item ID',
  `quote_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Quote Item ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',
  `product_type` varchar(255) DEFAULT NULL COMMENT 'Product Type',
  `product_options` text DEFAULT NULL COMMENT 'Product Options',
  `weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Weight',
  `is_virtual` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Virtual',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text DEFAULT NULL COMMENT 'Description',
  `applied_rule_ids` text DEFAULT NULL COMMENT 'Applied Rule Ids',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `is_qty_decimal` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',
  `no_discount` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'No Discount',
  `qty_backordered` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Backordered',
  `qty_canceled` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Canceled',
  `qty_invoiced` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Invoiced',
  `qty_ordered` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Ordered',
  `qty_refunded` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Refunded',
  `qty_shipped` decimal(12,4) DEFAULT 0.0000 COMMENT 'Qty Shipped',
  `base_cost` decimal(12,4) DEFAULT 0.0000 COMMENT 'Base Cost',
  `price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Price',
  `base_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Price',
  `original_price` decimal(12,4) DEFAULT NULL COMMENT 'Original Price',
  `base_original_price` decimal(12,4) DEFAULT NULL COMMENT 'Base Original Price',
  `tax_percent` decimal(12,4) DEFAULT 0.0000 COMMENT 'Tax Percent',
  `tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Tax Amount',
  `base_tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Tax Amount',
  `tax_invoiced` decimal(20,4) DEFAULT 0.0000 COMMENT 'Tax Invoiced',
  `base_tax_invoiced` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Tax Invoiced',
  `discount_percent` decimal(12,4) DEFAULT 0.0000 COMMENT 'Discount Percent',
  `discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Discount Amount',
  `base_discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Discount Amount',
  `discount_invoiced` decimal(20,4) DEFAULT 0.0000 COMMENT 'Discount Invoiced',
  `base_discount_invoiced` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Discount Invoiced',
  `amount_refunded` decimal(20,4) DEFAULT 0.0000 COMMENT 'Amount Refunded',
  `base_amount_refunded` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Amount Refunded',
  `row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Row Total',
  `base_row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Row Total',
  `row_invoiced` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Row Invoiced',
  `base_row_invoiced` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Row Invoiced',
  `row_weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Row Weight',
  `base_tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Before Discount',
  `tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Before Discount',
  `ext_order_item_id` varchar(255) DEFAULT NULL COMMENT 'Ext Order Item ID',
  `locked_do_invoice` smallint(5) unsigned DEFAULT NULL COMMENT 'Locked Do Invoice',
  `locked_do_ship` smallint(5) unsigned DEFAULT NULL COMMENT 'Locked Do Ship',
  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',
  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',
  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',
  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',
  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',
  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',
  `discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Invoiced',
  `base_discount_tax_compensation_invoiced` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Invoiced',
  `discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Refunded',
  `base_discount_tax_compensation_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Refunded',
  `tax_canceled` decimal(12,4) DEFAULT NULL COMMENT 'Tax Canceled',
  `discount_tax_compensation_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Canceled',
  `tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Tax Refunded',
  `base_tax_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Refunded',
  `discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Discount Refunded',
  `base_discount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Refunded',
  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',
  `gift_message_available` int(11) DEFAULT NULL COMMENT 'Gift Message Available',
  `free_shipping` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Free Shipping',
  `weee_tax_applied` text DEFAULT NULL COMMENT 'Weee Tax Applied',
  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',
  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',
  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',
  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',
  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',
  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',
  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',
  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',
  PRIMARY KEY (`item_id`),
  KEY `SALES_ORDER_ITEM_ORDER_ID` (`order_id`),
  KEY `SALES_ORDER_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_ITEM_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_item`
--

LOCK TABLES `sales_order_item` WRITE;
/*!40000 ALTER TABLE `sales_order_item` DISABLE KEYS */;
INSERT INTO `sales_order_item` VALUES (1,1,NULL,2,1,'2022-08-04 16:22:44','2022-08-04 16:22:44',1,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"1\",\"qty\":1}}',NULL,0,'Vino Test','Vino Test',NULL,NULL,NULL,0,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,1.0000,1.0000,0.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,1.0000,1.0000,1.0000,1.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2,2,NULL,6,1,'2022-08-08 15:24:47','2022-08-08 15:24:47',2,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvcHJpbW8tcHJvZG90dG8tZGVsdGEtaW5mb3JtYXRpY2EuaHRtbA,,\",\"product\":\"2\",\"selected_configurable_option\":\"\",\"related_product\":\"\",\"item\":\"2\",\"qty\":\"1\"}}',1.0000,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,0.0000,0.0000,1.0000,NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(3,3,NULL,7,1,'2022-08-09 08:08:41','2022-08-09 08:08:41',2,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS92aW5vLmh0bWw,\",\"product\":\"2\",\"qty\":1}}',1.0000,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,2.0000,0.0000,0.0000,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,24.0000,24.0000,0.0000,0.0000,2.0000,NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,24.0000,24.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4,4,NULL,8,1,'2022-08-09 11:59:19','2022-08-09 11:59:19',2,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"2\",\"qty\":1}}',1.0000,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,0.0000,0.0000,1.0000,NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(5,5,NULL,9,1,'2022-08-09 12:25:53','2022-08-09 12:25:53',2,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS5odG1s\",\"product\":\"2\",\"qty\":1}}',1.0000,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,12.0000,12.0000,0.0000,0.0000,1.0000,NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(6,6,NULL,13,1,'2022-08-25 06:18:03','2022-08-25 06:18:03',2,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvYWxpbWVudGFyaS92aW5vLmh0bWw,\",\"product\":\"2\",\"qty\":1}}',1.0000,0,'primoprodotto-b80ad593-ca45-4af0-b620-d23fbe242324','primo prodotto - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,2.0000,0.0000,0.0000,NULL,12.0000,12.0000,12.0000,12.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,24.0000,24.0000,0.0000,0.0000,2.0000,NULL,NULL,NULL,NULL,NULL,12.0000,12.0000,24.0000,24.0000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(7,7,NULL,14,1,'2022-08-25 07:31:34','2022-08-25 07:31:34',4,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvY29zdGF0YS1kaS1tYW56by0xLWZlZGVyYXppb25lLXRyZW50aW5hLWRlbGxhLWNvb3BlcmF6aW9uZS5odG1s\",\"product\":\"4\",\"selected_configurable_option\":\"\",\"related_product\":\"\",\"item\":\"4\",\"qty\":\"1\"}}',0.5000,0,'12345678-0aa9916d-2da6-433b-8d0a-127cda4606c8','Costata di Manzo 1 - Federazione Trentina della Cooperazione',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,4.5000,4.5000,5.0000,5.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,4.5000,4.5000,0.0000,0.0000,0.5000,NULL,NULL,NULL,NULL,NULL,4.5000,4.5000,4.5000,4.5000,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(8,8,NULL,18,1,'2022-09-13 08:02:46','2022-09-13 08:02:46',8,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUvdmluby1kaS1wcm92YS1kZWx0YS1pbmZvcm1hdGljYS5odG1s\",\"product\":\"8\",\"selected_configurable_option\":\"\",\"related_product\":\"\",\"item\":\"8\",\"qty\":\"1\"}}',111.0000,0,'VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4','Vino di prova - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,11.0000,11.0000,12.0000,12.0000,22.0000,2.4200,2.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,11.0000,11.0000,0.0000,0.0000,111.0000,NULL,NULL,NULL,NULL,NULL,13.4200,13.4200,13.4200,13.4200,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(9,9,NULL,19,1,'2022-09-13 08:07:50','2022-09-13 08:07:50',8,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUv\",\"product\":\"8\",\"qty\":\"1\"}}',111.0000,0,'VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4','Vino di prova - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,1.0000,0.0000,0.0000,NULL,11.0000,11.0000,12.0000,12.0000,22.0000,2.4200,2.4200,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,11.0000,11.0000,0.0000,0.0000,111.0000,NULL,NULL,NULL,NULL,NULL,13.4200,13.4200,13.4200,13.4200,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),(10,10,NULL,20,1,'2022-09-13 08:23:30','2022-09-13 08:23:30',8,'simple','{\"info_buyRequest\":{\"uenc\":\"aHR0cDovL21hZ2VudG8udGVzdC5pbmRhY28uc3RvcmUv\",\"product\":\"8\",\"qty\":\"2\"}}',1111.0000,0,'VINOPROVA-e4840d61-d973-4e90-a1e7-db92532c0ba4','Vino di prova - Delta Informatica',NULL,NULL,NULL,1,0,NULL,0.0000,0.0000,2.0000,0.0000,0.0000,NULL,11.0000,11.0000,12.0000,12.0000,22.0000,4.8400,4.8400,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,0.0000,22.0000,22.0000,0.0000,0.0000,2222.0000,NULL,NULL,NULL,NULL,NULL,13.4200,13.4200,26.8400,26.8400,0.0000,0.0000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `sales_order_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_payment`
--

DROP TABLE IF EXISTS `sales_order_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_payment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `base_shipping_captured` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Captured',
  `shipping_captured` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Captured',
  `amount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Amount Refunded',
  `base_amount_paid` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Paid',
  `amount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Amount Canceled',
  `base_amount_authorized` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Authorized',
  `base_amount_paid_online` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Paid Online',
  `base_amount_refunded_online` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Refunded Online',
  `base_shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Amount',
  `shipping_amount` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Amount',
  `amount_paid` decimal(20,4) DEFAULT NULL COMMENT 'Amount Paid',
  `amount_authorized` decimal(20,4) DEFAULT NULL COMMENT 'Amount Authorized',
  `base_amount_ordered` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Ordered',
  `base_shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Shipping Refunded',
  `shipping_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Shipping Refunded',
  `base_amount_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Refunded',
  `amount_ordered` decimal(20,4) DEFAULT NULL COMMENT 'Amount Ordered',
  `base_amount_canceled` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount Canceled',
  `quote_payment_id` int(11) DEFAULT NULL COMMENT 'Quote Payment ID',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `cc_exp_month` varchar(12) DEFAULT NULL COMMENT 'Cc Exp Month',
  `cc_ss_start_year` varchar(12) DEFAULT NULL COMMENT 'Cc Ss Start Year',
  `echeck_bank_name` varchar(128) DEFAULT NULL COMMENT 'Echeck Bank Name',
  `method` varchar(128) DEFAULT NULL COMMENT 'Method',
  `cc_debug_request_body` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Request Body',
  `cc_secure_verify` varchar(32) DEFAULT NULL COMMENT 'Cc Secure Verify',
  `protection_eligibility` varchar(32) DEFAULT NULL COMMENT 'Protection Eligibility',
  `cc_approval` varchar(32) DEFAULT NULL COMMENT 'Cc Approval',
  `cc_last_4` varchar(100) DEFAULT NULL COMMENT 'Cc Last 4',
  `cc_status_description` varchar(32) DEFAULT NULL COMMENT 'Cc Status Description',
  `echeck_type` varchar(32) DEFAULT NULL COMMENT 'Echeck Type',
  `cc_debug_response_serialized` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Response Serialized',
  `cc_ss_start_month` varchar(128) DEFAULT NULL COMMENT 'Cc Ss Start Month',
  `echeck_account_type` varchar(255) DEFAULT NULL COMMENT 'Echeck Account Type',
  `last_trans_id` varchar(255) DEFAULT NULL COMMENT 'Last Trans ID',
  `cc_cid_status` varchar(32) DEFAULT NULL COMMENT 'Cc Cid Status',
  `cc_owner` varchar(128) DEFAULT NULL COMMENT 'Cc Owner',
  `cc_type` varchar(32) DEFAULT NULL COMMENT 'Cc Type',
  `po_number` varchar(32) DEFAULT NULL COMMENT 'Po Number',
  `cc_exp_year` varchar(4) DEFAULT NULL COMMENT 'Cc Exp Year',
  `cc_status` varchar(4) DEFAULT NULL COMMENT 'Cc Status',
  `echeck_routing_number` varchar(32) DEFAULT NULL COMMENT 'Echeck Routing Number',
  `account_status` varchar(32) DEFAULT NULL COMMENT 'Account Status',
  `anet_trans_method` varchar(32) DEFAULT NULL COMMENT 'Anet Trans Method',
  `cc_debug_response_body` varchar(32) DEFAULT NULL COMMENT 'Cc Debug Response Body',
  `cc_ss_issue` varchar(32) DEFAULT NULL COMMENT 'Cc Ss Issue',
  `echeck_account_name` varchar(32) DEFAULT NULL COMMENT 'Echeck Account Name',
  `cc_avs_status` varchar(32) DEFAULT NULL COMMENT 'Cc Avs Status',
  `cc_number_enc` varchar(128) DEFAULT NULL,
  `cc_trans_id` varchar(32) DEFAULT NULL COMMENT 'Cc Trans ID',
  `address_status` varchar(32) DEFAULT NULL COMMENT 'Address Status',
  `additional_information` text DEFAULT NULL COMMENT 'Additional Information',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_ORDER_PAYMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_ORDER_PAYMENT_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_payment`
--

LOCK TABLES `sales_order_payment` WRITE;
/*!40000 ALTER TABLE `sales_order_payment` DISABLE KEYS */;
INSERT INTO `sales_order_payment` VALUES (1,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,6.0000,NULL,NULL,NULL,6.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(2,2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,17.0000,NULL,NULL,NULL,17.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(3,3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10.0000,10.0000,NULL,NULL,34.0000,NULL,NULL,NULL,34.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(4,4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,17.0000,NULL,NULL,NULL,17.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(5,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,17.0000,NULL,NULL,NULL,17.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(6,6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10.0000,10.0000,NULL,NULL,34.0000,NULL,NULL,NULL,34.0000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(7,7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,9.5000,NULL,NULL,NULL,9.5000,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(8,8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,18.4200,NULL,NULL,NULL,18.4200,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(9,9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5.0000,5.0000,NULL,NULL,18.4200,NULL,NULL,NULL,18.4200,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}'),(10,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10.0000,10.0000,NULL,NULL,36.8400,NULL,NULL,NULL,36.8400,NULL,NULL,NULL,NULL,'0',NULL,'checkmo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"method_title\":\"Check \\/ Money order\"}');
/*!40000 ALTER TABLE `sales_order_payment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_status`
--

DROP TABLE IF EXISTS `sales_order_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_status` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `label` varchar(128) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status`
--

LOCK TABLES `sales_order_status` WRITE;
/*!40000 ALTER TABLE `sales_order_status` DISABLE KEYS */;
INSERT INTO `sales_order_status` VALUES ('canceled','Canceled'),('closed','Closed'),('complete','Complete'),('fraud','Suspected Fraud'),('holded','On Hold'),('payment_review','Payment Review'),('paypal_canceled_reversal','PayPal Canceled Reversal'),('paypal_reversed','PayPal Reversed'),('pending','Pending'),('pending_payment','Pending Payment'),('pending_paypal','Pending PayPal'),('processing','Processing');
/*!40000 ALTER TABLE `sales_order_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_status_history`
--

DROP TABLE IF EXISTS `sales_order_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_status_history` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` int(11) DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible On Front',
  `comment` text DEFAULT NULL COMMENT 'Comment',
  `status` varchar(32) DEFAULT NULL COMMENT 'Status',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `entity_name` varchar(32) DEFAULT NULL COMMENT 'Shows what entity history is bind to.',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_ORDER_STATUS_HISTORY_PARENT_ID` (`parent_id`),
  KEY `SALES_ORDER_STATUS_HISTORY_CREATED_AT` (`created_at`),
  CONSTRAINT `SALES_ORDER_STATUS_HISTORY_PARENT_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Order Status History';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status_history`
--

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

--
-- Table structure for table `sales_order_status_label`
--

DROP TABLE IF EXISTS `sales_order_status_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_status_label` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `label` varchar(128) NOT NULL COMMENT 'Label',
  PRIMARY KEY (`status`,`store_id`),
  KEY `SALES_ORDER_STATUS_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_ORDER_STATUS_LABEL_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_STATUS_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Label Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status_label`
--

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

--
-- Table structure for table `sales_order_status_state`
--

DROP TABLE IF EXISTS `sales_order_status_state`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_status_state` (
  `status` varchar(32) NOT NULL COMMENT 'Status',
  `state` varchar(32) NOT NULL COMMENT 'Label',
  `is_default` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Default',
  `visible_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Visible on front',
  PRIMARY KEY (`status`,`state`),
  CONSTRAINT `SALES_ORDER_STATUS_STATE_STATUS_SALES_ORDER_STATUS_STATUS` FOREIGN KEY (`status`) REFERENCES `sales_order_status` (`status`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Order Status Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_status_state`
--

LOCK TABLES `sales_order_status_state` WRITE;
/*!40000 ALTER TABLE `sales_order_status_state` DISABLE KEYS */;
INSERT INTO `sales_order_status_state` VALUES ('canceled','canceled',1,1),('closed','closed',1,1),('complete','complete',1,1),('fraud','payment_review',0,1),('fraud','processing',0,1),('holded','holded',1,1),('payment_review','payment_review',1,1),('pending','new',1,1),('pending_payment','pending_payment',1,0),('processing','processing',1,1);
/*!40000 ALTER TABLE `sales_order_status_state` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_tax`
--

DROP TABLE IF EXISTS `sales_order_tax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_tax` (
  `tax_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tax ID',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `percent` decimal(12,4) DEFAULT NULL COMMENT 'Percent',
  `amount` decimal(20,4) DEFAULT NULL COMMENT 'Amount',
  `priority` int(11) NOT NULL COMMENT 'Priority',
  `position` int(11) NOT NULL COMMENT 'Position',
  `base_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Amount',
  `process` smallint(6) NOT NULL COMMENT 'Process',
  `base_real_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Real Amount',
  PRIMARY KEY (`tax_id`),
  KEY `SALES_ORDER_TAX_ORDER_ID_PRIORITY_POSITION` (`order_id`,`priority`,`position`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_tax`
--

LOCK TABLES `sales_order_tax` WRITE;
/*!40000 ALTER TABLE `sales_order_tax` DISABLE KEYS */;
INSERT INTO `sales_order_tax` VALUES (1,8,'Iva 22%','Iva 22%',22.0000,2.4200,0,0,2.4200,0,2.4200),(2,9,'Iva 22%','Iva 22%',22.0000,2.4200,0,0,2.4200,0,2.4200),(3,10,'Iva 22%','Iva 22%',22.0000,4.8400,0,0,4.8400,0,4.8400);
/*!40000 ALTER TABLE `sales_order_tax` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_order_tax_item`
--

DROP TABLE IF EXISTS `sales_order_tax_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_order_tax_item` (
  `tax_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Tax Item ID',
  `tax_id` int(10) unsigned NOT NULL COMMENT 'Tax ID',
  `item_id` int(10) unsigned DEFAULT NULL COMMENT 'Item ID',
  `tax_percent` decimal(12,4) NOT NULL COMMENT 'Real Tax Percent For Item',
  `amount` decimal(20,4) NOT NULL COMMENT 'Tax amount for the item and tax rate',
  `base_amount` decimal(20,4) NOT NULL COMMENT 'Base tax amount for the item and tax rate',
  `real_amount` decimal(20,4) NOT NULL COMMENT 'Real tax amount for the item and tax rate',
  `real_base_amount` decimal(20,4) NOT NULL COMMENT 'Real base tax amount for the item and tax rate',
  `associated_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Id of the associated item',
  `taxable_item_type` varchar(32) NOT NULL COMMENT 'Type of the taxable item',
  PRIMARY KEY (`tax_item_id`),
  UNIQUE KEY `SALES_ORDER_TAX_ITEM_TAX_ID_ITEM_ID` (`tax_id`,`item_id`),
  KEY `SALES_ORDER_TAX_ITEM_ASSOCIATED_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` (`associated_item_id`),
  KEY `SALES_ORDER_TAX_ITEM_ITEM_ID` (`item_id`),
  CONSTRAINT `SALES_ORDER_TAX_ITEM_ASSOCIATED_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`associated_item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_TAX_ITEM_ITEM_ID_SALES_ORDER_ITEM_ITEM_ID` FOREIGN KEY (`item_id`) REFERENCES `sales_order_item` (`item_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_ORDER_TAX_ITEM_TAX_ID_SALES_ORDER_TAX_TAX_ID` FOREIGN KEY (`tax_id`) REFERENCES `sales_order_tax` (`tax_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Sales Order Tax Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_order_tax_item`
--

LOCK TABLES `sales_order_tax_item` WRITE;
/*!40000 ALTER TABLE `sales_order_tax_item` DISABLE KEYS */;
INSERT INTO `sales_order_tax_item` VALUES (1,1,8,22.0000,2.4200,2.4200,2.4200,2.4200,NULL,'product'),(2,2,9,22.0000,2.4200,2.4200,2.4200,2.4200,NULL,'product'),(3,3,10,22.0000,4.8400,4.8400,4.8400,4.8400,NULL,'product');
/*!40000 ALTER TABLE `sales_order_tax_item` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_payment_transaction`
--

DROP TABLE IF EXISTS `sales_payment_transaction`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_payment_transaction` (
  `transaction_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Transaction ID',
  `parent_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent ID',
  `order_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Order ID',
  `payment_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Payment ID',
  `txn_id` varchar(100) DEFAULT NULL COMMENT 'Txn ID',
  `parent_txn_id` varchar(100) DEFAULT NULL COMMENT 'Parent Txn ID',
  `txn_type` varchar(15) DEFAULT NULL COMMENT 'Txn Type',
  `is_closed` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Closed',
  `additional_information` blob DEFAULT NULL COMMENT 'Additional Information',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`transaction_id`),
  UNIQUE KEY `SALES_PAYMENT_TRANSACTION_ORDER_ID_PAYMENT_ID_TXN_ID` (`order_id`,`payment_id`,`txn_id`),
  KEY `SALES_PAYMENT_TRANSACTION_PARENT_ID` (`parent_id`),
  KEY `SALES_PAYMENT_TRANSACTION_PAYMENT_ID` (`payment_id`),
  CONSTRAINT `FK_B99FF1A06402D725EBDB0F3A7ECD47A2` FOREIGN KEY (`parent_id`) REFERENCES `sales_payment_transaction` (`transaction_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_PAYMENT_TRANSACTION_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_PAYMENT_TRANSACTION_PAYMENT_ID_SALES_ORDER_PAYMENT_ENTT_ID` FOREIGN KEY (`payment_id`) REFERENCES `sales_order_payment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Payment Transaction';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_payment_transaction`
--

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

--
-- Table structure for table `sales_refunded_aggregated`
--

DROP TABLE IF EXISTS `sales_refunded_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_refunded_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `refunded` decimal(20,4) DEFAULT NULL COMMENT 'Refunded',
  `online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Online Refunded',
  `offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Offline Refunded',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_REFUNDED_AGGREGATED_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_REFUNDED_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_REFUNDED_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_refunded_aggregated`
--

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

--
-- Table structure for table `sales_refunded_aggregated_order`
--

DROP TABLE IF EXISTS `sales_refunded_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_refunded_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `refunded` decimal(20,4) DEFAULT NULL COMMENT 'Refunded',
  `online_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Online Refunded',
  `offline_refunded` decimal(20,4) DEFAULT NULL COMMENT 'Offline Refunded',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_REFUNDED_AGGREGATED_ORDER_PERIOD_STORE_ID_ORDER_STATUS` (`period`,`store_id`,`order_status`),
  KEY `SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_REFUNDED_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Refunded Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_refunded_aggregated_order`
--

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

--
-- Table structure for table `sales_sequence_meta`
--

DROP TABLE IF EXISTS `sales_sequence_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_sequence_meta` (
  `meta_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `entity_type` varchar(32) NOT NULL COMMENT 'Prefix',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `sequence_table` varchar(64) NOT NULL COMMENT 'table for sequence',
  PRIMARY KEY (`meta_id`),
  UNIQUE KEY `SALES_SEQUENCE_META_ENTITY_TYPE_STORE_ID` (`entity_type`,`store_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='sales_sequence_meta';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_sequence_meta`
--

LOCK TABLES `sales_sequence_meta` WRITE;
/*!40000 ALTER TABLE `sales_sequence_meta` DISABLE KEYS */;
INSERT INTO `sales_sequence_meta` VALUES (1,'order',0,'sequence_order_0'),(2,'invoice',0,'sequence_invoice_0'),(3,'creditmemo',0,'sequence_creditmemo_0'),(4,'shipment',0,'sequence_shipment_0'),(5,'order',1,'sequence_order_1'),(6,'invoice',1,'sequence_invoice_1'),(7,'creditmemo',1,'sequence_creditmemo_1'),(8,'shipment',1,'sequence_shipment_1');
/*!40000 ALTER TABLE `sales_sequence_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_sequence_profile`
--

DROP TABLE IF EXISTS `sales_sequence_profile`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_sequence_profile` (
  `profile_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `meta_id` int(10) unsigned NOT NULL COMMENT 'Meta_id',
  `prefix` varchar(32) DEFAULT NULL COMMENT 'Prefix',
  `suffix` varchar(32) DEFAULT NULL COMMENT 'Suffix',
  `start_value` int(10) unsigned NOT NULL DEFAULT 1 COMMENT 'Start value for sequence',
  `step` int(10) unsigned NOT NULL DEFAULT 1 COMMENT 'Step for sequence',
  `max_value` int(10) unsigned NOT NULL COMMENT 'MaxValue for sequence',
  `warning_value` int(10) unsigned NOT NULL COMMENT 'WarningValue for sequence',
  `is_active` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'isActive flag',
  PRIMARY KEY (`profile_id`),
  UNIQUE KEY `SALES_SEQUENCE_PROFILE_META_ID_PREFIX_SUFFIX` (`meta_id`,`prefix`,`suffix`),
  CONSTRAINT `SALES_SEQUENCE_PROFILE_META_ID_SALES_SEQUENCE_META_META_ID` FOREIGN KEY (`meta_id`) REFERENCES `sales_sequence_meta` (`meta_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='sales_sequence_profile';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_sequence_profile`
--

LOCK TABLES `sales_sequence_profile` WRITE;
/*!40000 ALTER TABLE `sales_sequence_profile` DISABLE KEYS */;
INSERT INTO `sales_sequence_profile` VALUES (1,1,NULL,NULL,1,1,4294967295,4294966295,1),(2,2,NULL,NULL,1,1,4294967295,4294966295,1),(3,3,NULL,NULL,1,1,4294967295,4294966295,1),(4,4,NULL,NULL,1,1,4294967295,4294966295,1),(5,5,NULL,NULL,1,1,4294967295,4294966295,1),(6,6,NULL,NULL,1,1,4294967295,4294966295,1),(7,7,NULL,NULL,1,1,4294967295,4294966295,1),(8,8,NULL,NULL,1,1,4294967295,4294966295,1);
/*!40000 ALTER TABLE `sales_sequence_profile` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales_shipment`
--

DROP TABLE IF EXISTS `sales_shipment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `total_weight` decimal(12,4) DEFAULT NULL COMMENT 'Total Weight',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',
  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `customer_id` int(11) DEFAULT NULL COMMENT 'Customer ID',
  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address ID',
  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address ID',
  `shipment_status` int(11) DEFAULT NULL COMMENT 'Shipment Status',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  `packages` text DEFAULT NULL COMMENT 'Packed Products in Packages',
  `shipping_label` mediumblob DEFAULT NULL COMMENT 'Shipping Label Content',
  `customer_note` text DEFAULT NULL COMMENT 'Customer Note',
  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_SHIPMENT_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_SHIPMENT_STORE_ID` (`store_id`),
  KEY `SALES_SHIPMENT_TOTAL_QTY` (`total_qty`),
  KEY `SALES_SHIPMENT_ORDER_ID` (`order_id`),
  KEY `SALES_SHIPMENT_CREATED_AT` (`created_at`),
  KEY `SALES_SHIPMENT_UPDATED_AT` (`updated_at`),
  KEY `SALES_SHIPMENT_SEND_EMAIL` (`send_email`),
  KEY `SALES_SHIPMENT_EMAIL_SENT` (`email_sent`),
  CONSTRAINT `SALES_SHIPMENT_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALES_SHIPMENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment`
--

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

--
-- Table structure for table `sales_shipment_comment`
--

DROP TABLE IF EXISTS `sales_shipment_comment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipment_comment` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `is_customer_notified` int(11) DEFAULT NULL COMMENT 'Is Customer Notified',
  `is_visible_on_front` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Visible On Front',
  `comment` text DEFAULT NULL COMMENT 'Comment',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_SHIPMENT_COMMENT_CREATED_AT` (`created_at`),
  KEY `SALES_SHIPMENT_COMMENT_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_SHIPMENT_COMMENT_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Comment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_comment`
--

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

--
-- Table structure for table `sales_shipment_grid`
--

DROP TABLE IF EXISTS `sales_shipment_grid`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipment_grid` (
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_increment_id` varchar(32) NOT NULL COMMENT 'Order Increment ID',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `order_created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Order Increment ID',
  `customer_name` varchar(128) NOT NULL COMMENT 'Customer Name',
  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',
  `shipment_status` int(11) DEFAULT NULL COMMENT 'Shipment Status',
  `order_status` varchar(32) DEFAULT NULL COMMENT 'Order',
  `billing_address` varchar(255) DEFAULT NULL COMMENT 'Billing Address',
  `shipping_address` varchar(255) DEFAULT NULL COMMENT 'Shipping Address',
  `billing_name` varchar(128) DEFAULT NULL COMMENT 'Billing Name',
  `shipping_name` varchar(128) DEFAULT NULL COMMENT 'Shipping Name',
  `customer_email` varchar(128) DEFAULT NULL COMMENT 'Customer Email',
  `customer_group_id` int(11) DEFAULT NULL,
  `payment_method` varchar(32) DEFAULT NULL COMMENT 'Payment Method',
  `shipping_information` varchar(255) DEFAULT NULL COMMENT 'Shipping Method Name',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Created At',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `SALES_SHIPMENT_GRID_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),
  KEY `SALES_SHIPMENT_GRID_STORE_ID` (`store_id`),
  KEY `SALES_SHIPMENT_GRID_TOTAL_QTY` (`total_qty`),
  KEY `SALES_SHIPMENT_GRID_ORDER_INCREMENT_ID` (`order_increment_id`),
  KEY `SALES_SHIPMENT_GRID_SHIPMENT_STATUS` (`shipment_status`),
  KEY `SALES_SHIPMENT_GRID_ORDER_STATUS` (`order_status`),
  KEY `SALES_SHIPMENT_GRID_CREATED_AT` (`created_at`),
  KEY `SALES_SHIPMENT_GRID_UPDATED_AT` (`updated_at`),
  KEY `SALES_SHIPMENT_GRID_ORDER_CREATED_AT` (`order_created_at`),
  KEY `SALES_SHIPMENT_GRID_SHIPPING_NAME` (`shipping_name`),
  KEY `SALES_SHIPMENT_GRID_BILLING_NAME` (`billing_name`),
  KEY `SALES_SHIPMENT_GRID_ORDER_ID` (`order_id`),
  FULLTEXT KEY `FTI_086B40C8955F167B8EA76653437879B4` (`increment_id`,`order_increment_id`,`shipping_name`,`customer_name`,`customer_email`,`billing_address`,`shipping_address`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Grid';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_grid`
--

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

--
-- Table structure for table `sales_shipment_item`
--

DROP TABLE IF EXISTS `sales_shipment_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipment_item` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `row_total` decimal(20,4) DEFAULT NULL COMMENT 'Row Total',
  `price` decimal(20,4) DEFAULT NULL COMMENT 'Price',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `product_id` int(11) DEFAULT NULL COMMENT 'Product ID',
  `order_item_id` int(11) DEFAULT NULL COMMENT 'Order Item ID',
  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',
  `description` text DEFAULT NULL COMMENT 'Description',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_SHIPMENT_ITEM_PARENT_ID` (`parent_id`),
  CONSTRAINT `SALES_SHIPMENT_ITEM_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Item';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_item`
--

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

--
-- Table structure for table `sales_shipment_track`
--

DROP TABLE IF EXISTS `sales_shipment_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipment_track` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `parent_id` int(10) unsigned NOT NULL COMMENT 'Parent ID',
  `weight` decimal(12,4) DEFAULT NULL COMMENT 'Weight',
  `qty` decimal(12,4) DEFAULT NULL COMMENT 'Qty',
  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',
  `track_number` text DEFAULT NULL COMMENT 'Number',
  `description` text DEFAULT NULL COMMENT 'Description',
  `title` varchar(255) DEFAULT NULL COMMENT 'Title',
  `carrier_code` varchar(32) DEFAULT NULL COMMENT 'Carrier Code',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
  PRIMARY KEY (`entity_id`),
  KEY `SALES_SHIPMENT_TRACK_PARENT_ID` (`parent_id`),
  KEY `SALES_SHIPMENT_TRACK_ORDER_ID` (`order_id`),
  KEY `SALES_SHIPMENT_TRACK_CREATED_AT` (`created_at`),
  CONSTRAINT `SALES_SHIPMENT_TRACK_PARENT_ID_SALES_SHIPMENT_ENTITY_ID` FOREIGN KEY (`parent_id`) REFERENCES `sales_shipment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Flat Shipment Track';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipment_track`
--

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

--
-- Table structure for table `sales_shipping_aggregated`
--

DROP TABLE IF EXISTS `sales_shipping_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipping_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `total_shipping` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping',
  `total_shipping_actual` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALES_SHPP_AGGRED_PERIOD_STORE_ID_ORDER_STS_SHPP_DESCRIPTION` (`period`,`store_id`,`order_status`,`shipping_description`),
  KEY `SALES_SHIPPING_AGGREGATED_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_SHIPPING_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipping_aggregated`
--

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

--
-- Table structure for table `sales_shipping_aggregated_order`
--

DROP TABLE IF EXISTS `sales_shipping_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sales_shipping_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `shipping_description` varchar(255) DEFAULT NULL COMMENT 'Shipping Description',
  `orders_count` int(11) NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `total_shipping` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping',
  `total_shipping_actual` decimal(20,4) DEFAULT NULL COMMENT 'Total Shipping Actual',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_C05FAE47282EEA68654D0924E946761F` (`period`,`store_id`,`order_status`,`shipping_description`),
  KEY `SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  CONSTRAINT `SALES_SHIPPING_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Shipping Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales_shipping_aggregated_order`
--

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

--
-- Table structure for table `salesrule`
--

DROP TABLE IF EXISTS `salesrule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule` (
  `rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `name` varchar(255) DEFAULT NULL COMMENT 'Name',
  `description` text DEFAULT NULL COMMENT 'Description',
  `from_date` date DEFAULT NULL COMMENT 'From',
  `to_date` date DEFAULT NULL COMMENT 'To',
  `uses_per_customer` int(11) NOT NULL DEFAULT 0 COMMENT 'Uses Per Customer',
  `is_active` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Is Active',
  `conditions_serialized` mediumtext DEFAULT NULL COMMENT 'Conditions Serialized',
  `actions_serialized` mediumtext DEFAULT NULL COMMENT 'Actions Serialized',
  `stop_rules_processing` smallint(6) NOT NULL DEFAULT 1 COMMENT 'Stop Rules Processing',
  `is_advanced` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Is Advanced',
  `product_ids` text DEFAULT NULL COMMENT 'Product Ids',
  `sort_order` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `simple_action` varchar(32) DEFAULT NULL COMMENT 'Simple Action',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount',
  `discount_qty` decimal(12,4) DEFAULT NULL COMMENT 'Discount Qty',
  `discount_step` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Discount Step',
  `apply_to_shipping` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Apply To Shipping',
  `times_used` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Times Used',
  `is_rss` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Is Rss',
  `coupon_type` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Coupon Type',
  `use_auto_generation` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Use Auto Generation',
  `uses_per_coupon` int(11) NOT NULL DEFAULT 0 COMMENT 'User Per Coupon',
  `simple_free_shipping` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Simple Free Shipping',
  PRIMARY KEY (`rule_id`),
  KEY `SALESRULE_IS_ACTIVE_SORT_ORDER_TO_DATE_FROM_DATE` (`is_active`,`sort_order`,`to_date`,`from_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule`
--

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

--
-- Table structure for table `salesrule_coupon`
--

DROP TABLE IF EXISTS `salesrule_coupon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_coupon` (
  `coupon_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Coupon ID',
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `code` varchar(255) DEFAULT NULL COMMENT 'Code',
  `usage_limit` int(10) unsigned DEFAULT NULL COMMENT 'Usage Limit',
  `usage_per_customer` int(10) unsigned DEFAULT NULL COMMENT 'Usage Per Customer',
  `times_used` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Times Used',
  `expiration_date` datetime DEFAULT NULL COMMENT 'Expiration Date',
  `is_primary` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Primary',
  `created_at` timestamp NULL DEFAULT NULL COMMENT 'Coupon Code Creation Date',
  `type` smallint(6) DEFAULT 0 COMMENT 'Coupon Code Type',
  PRIMARY KEY (`coupon_id`),
  UNIQUE KEY `SALESRULE_COUPON_CODE` (`code`),
  UNIQUE KEY `SALESRULE_COUPON_RULE_ID_IS_PRIMARY` (`rule_id`,`is_primary`),
  KEY `SALESRULE_COUPON_RULE_ID` (`rule_id`),
  CONSTRAINT `SALESRULE_COUPON_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon`
--

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

--
-- Table structure for table `salesrule_coupon_aggregated`
--

DROP TABLE IF EXISTS `salesrule_coupon_aggregated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_coupon_aggregated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int(11) NOT NULL DEFAULT 0 COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Amount',
  `subtotal_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal Amount Actual',
  `discount_amount_actual` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount Actual',
  `total_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Amount Actual',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `SALESRULE_COUPON_AGGRED_PERIOD_STORE_ID_ORDER_STS_COUPON_CODE` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `SALESRULE_COUPON_AGGREGATED_STORE_ID` (`store_id`),
  KEY `SALESRULE_COUPON_AGGREGATED_RULE_NAME` (`rule_name`),
  CONSTRAINT `SALESRULE_COUPON_AGGREGATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_aggregated`
--

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

--
-- Table structure for table `salesrule_coupon_aggregated_order`
--

DROP TABLE IF EXISTS `salesrule_coupon_aggregated_order`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_coupon_aggregated_order` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int(11) NOT NULL DEFAULT 0 COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Amount',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_1094D1FBBCBB11704A29DEF3ACC37D2B` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID` (`store_id`),
  KEY `SALESRULE_COUPON_AGGREGATED_ORDER_RULE_NAME` (`rule_name`),
  CONSTRAINT `SALESRULE_COUPON_AGGREGATED_ORDER_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Coupon Aggregated Order';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_aggregated_order`
--

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

--
-- Table structure for table `salesrule_coupon_aggregated_updated`
--

DROP TABLE IF EXISTS `salesrule_coupon_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_coupon_aggregated_updated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date NOT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `order_status` varchar(50) DEFAULT NULL COMMENT 'Order Status',
  `coupon_code` varchar(50) DEFAULT NULL COMMENT 'Coupon Code',
  `coupon_uses` int(11) NOT NULL DEFAULT 0 COMMENT 'Coupon Uses',
  `subtotal_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal Amount',
  `discount_amount` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount',
  `total_amount` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Amount',
  `subtotal_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Subtotal Amount Actual',
  `discount_amount_actual` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Discount Amount Actual',
  `total_amount_actual` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Total Amount Actual',
  `rule_name` varchar(255) DEFAULT NULL COMMENT 'Rule Name',
  PRIMARY KEY (`id`),
  UNIQUE KEY `UNQ_7196FA120A4F0F84E1B66605E87E213E` (`period`,`store_id`,`order_status`,`coupon_code`),
  KEY `SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  KEY `SALESRULE_COUPON_AGGREGATED_UPDATED_RULE_NAME` (`rule_name`),
  CONSTRAINT `SALESRULE_COUPON_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_aggregated_updated`
--

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

--
-- Table structure for table `salesrule_coupon_usage`
--

DROP TABLE IF EXISTS `salesrule_coupon_usage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_coupon_usage` (
  `coupon_id` int(10) unsigned NOT NULL COMMENT 'Coupon ID',
  `customer_id` int(10) unsigned NOT NULL COMMENT 'Customer ID',
  `times_used` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Times Used',
  PRIMARY KEY (`coupon_id`,`customer_id`),
  KEY `SALESRULE_COUPON_USAGE_CUSTOMER_ID` (`customer_id`),
  CONSTRAINT `SALESRULE_COUPON_USAGE_COUPON_ID_SALESRULE_COUPON_COUPON_ID` FOREIGN KEY (`coupon_id`) REFERENCES `salesrule_coupon` (`coupon_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_COUPON_USAGE_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Coupon Usage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_coupon_usage`
--

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

--
-- Table structure for table `salesrule_customer`
--

DROP TABLE IF EXISTS `salesrule_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_customer` (
  `rule_customer_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule Customer ID',
  `rule_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Rule ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `times_used` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Times Used',
  PRIMARY KEY (`rule_customer_id`),
  KEY `SALESRULE_CUSTOMER_RULE_ID_CUSTOMER_ID` (`rule_id`,`customer_id`),
  KEY `SALESRULE_CUSTOMER_CUSTOMER_ID_RULE_ID` (`customer_id`,`rule_id`),
  CONSTRAINT `SALESRULE_CUSTOMER_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_CUSTOMER_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Customer';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_customer`
--

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

--
-- Table structure for table `salesrule_customer_group`
--

DROP TABLE IF EXISTS `salesrule_customer_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_customer_group` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  PRIMARY KEY (`rule_id`,`customer_group_id`),
  KEY `SALESRULE_CUSTOMER_GROUP_CUSTOMER_GROUP_ID` (`customer_group_id`),
  CONSTRAINT `SALESRULE_CSTR_GROUP_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_CUSTOMER_GROUP_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Rules To Customer Groups Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_customer_group`
--

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

--
-- Table structure for table `salesrule_label`
--

DROP TABLE IF EXISTS `salesrule_label`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_label` (
  `label_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Label ID',
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `label` varchar(255) DEFAULT NULL COMMENT 'Label',
  PRIMARY KEY (`label_id`),
  UNIQUE KEY `SALESRULE_LABEL_RULE_ID_STORE_ID` (`rule_id`,`store_id`),
  KEY `SALESRULE_LABEL_STORE_ID` (`store_id`),
  CONSTRAINT `SALESRULE_LABEL_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_LABEL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Label';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_label`
--

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

--
-- Table structure for table `salesrule_product_attribute`
--

DROP TABLE IF EXISTS `salesrule_product_attribute`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_product_attribute` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  `customer_group_id` int(10) unsigned NOT NULL COMMENT 'Customer Group ID',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  PRIMARY KEY (`rule_id`,`website_id`,`customer_group_id`,`attribute_id`),
  KEY `SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID` (`website_id`),
  KEY `SALESRULE_PRODUCT_ATTRIBUTE_CUSTOMER_GROUP_ID` (`customer_group_id`),
  KEY `SALESRULE_PRODUCT_ATTRIBUTE_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `SALESRULE_PRD_ATTR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_PRD_ATTR_CSTR_GROUP_ID_CSTR_GROUP_CSTR_GROUP_ID` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_group` (`customer_group_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_PRODUCT_ATTRIBUTE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_PRODUCT_ATTRIBUTE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Salesrule Product Attribute';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_product_attribute`
--

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

--
-- Table structure for table `salesrule_website`
--

DROP TABLE IF EXISTS `salesrule_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salesrule_website` (
  `rule_id` int(10) unsigned NOT NULL COMMENT 'Rule ID',
  `website_id` smallint(5) unsigned NOT NULL COMMENT 'Website ID',
  PRIMARY KEY (`rule_id`,`website_id`),
  KEY `SALESRULE_WEBSITE_WEBSITE_ID` (`website_id`),
  CONSTRAINT `SALESRULE_WEBSITE_RULE_ID_SALESRULE_RULE_ID` FOREIGN KEY (`rule_id`) REFERENCES `salesrule` (`rule_id`) ON DELETE CASCADE,
  CONSTRAINT `SALESRULE_WEBSITE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Sales Rules To Websites Relations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salesrule_website`
--

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

--
-- Table structure for table `search_query`
--

DROP TABLE IF EXISTS `search_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `search_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',
  `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`),
  UNIQUE KEY `SEARCH_QUERY_QUERY_TEXT_STORE_ID` (`query_text`,`store_id`),
  KEY `SEARCH_QUERY_QUERY_TEXT_STORE_ID_POPULARITY` (`query_text`,`store_id`,`popularity`),
  KEY `SEARCH_QUERY_STORE_ID` (`store_id`),
  KEY `SEARCH_QUERY_IS_PROCESSED` (`is_processed`),
  KEY `SEARCH_QUERY_STORE_ID_POPULARITY` (`store_id`,`popularity`),
  CONSTRAINT `SEARCH_QUERY_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8 COMMENT='Search query table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_query`
--

LOCK TABLES `search_query` WRITE;
/*!40000 ALTER TABLE `search_query` DISABLE KEYS */;
INSERT INTO `search_query` VALUES (1,'vino',4,1,NULL,1,1,1,0,'2022-09-15 12:13:13'),(3,'melinda',1,1,NULL,1,1,1,0,'2022-09-12 14:53:43'),(5,'rondelle',0,1,NULL,1,1,1,0,'2022-09-14 06:52:53'),(7,'tenero',1,1,NULL,1,1,1,0,'2022-09-13 11:27:04'),(13,'aceto',2,1,NULL,1,1,1,0,'2022-09-13 12:59:09'),(15,'bastoncini',1,1,NULL,1,1,1,0,'2022-09-13 13:31:39'),(17,'mousse',0,3,NULL,1,1,1,0,'2022-09-14 08:03:03'),(22,'trota',2,1,NULL,1,1,1,0,'2022-09-15 13:59:44'),(25,'più che mela',7,1,NULL,1,1,1,0,'2022-09-14 07:20:34'),(30,'tenero snack',0,1,NULL,1,1,1,0,'2022-09-14 08:03:16'),(32,'tenerosnack',0,1,NULL,1,1,1,0,'2022-09-14 08:03:20'),(37,'SALMERINO',0,1,NULL,1,1,1,0,'2022-09-15 14:00:18'),(39,'vino test',12,1,NULL,1,1,1,0,'2022-09-16 10:00:28');
/*!40000 ALTER TABLE `search_query` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `search_synonyms`
--

DROP TABLE IF EXISTS `search_synonyms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `search_synonyms` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Synonyms Group ID',
  `synonyms` text NOT NULL COMMENT 'list of synonyms making up this group',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID - identifies the store view these synonyms belong to',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID - identifies the website ID these synonyms belong to',
  PRIMARY KEY (`group_id`),
  KEY `SEARCH_SYNONYMS_STORE_ID` (`store_id`),
  KEY `SEARCH_SYNONYMS_WEBSITE_ID` (`website_id`),
  FULLTEXT KEY `SEARCH_SYNONYMS_SYNONYMS` (`synonyms`),
  CONSTRAINT `SEARCH_SYNONYMS_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `SEARCH_SYNONYMS_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='table storing various synonyms groups';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `search_synonyms`
--

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

--
-- Table structure for table `sendfriend_log`
--

DROP TABLE IF EXISTS `sendfriend_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sendfriend_log` (
  `log_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
  `ip` bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer IP address',
  `time` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Log time',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  PRIMARY KEY (`log_id`),
  KEY `SENDFRIEND_LOG_IP` (`ip`),
  KEY `SENDFRIEND_LOG_TIME` (`time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Send to friend function log storage table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sendfriend_log`
--

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

--
-- Table structure for table `sequence_creditmemo_0`
--

DROP TABLE IF EXISTS `sequence_creditmemo_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_creditmemo_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_creditmemo_0`
--

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

--
-- Table structure for table `sequence_creditmemo_1`
--

DROP TABLE IF EXISTS `sequence_creditmemo_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_creditmemo_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_creditmemo_1`
--

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

--
-- Table structure for table `sequence_invoice_0`
--

DROP TABLE IF EXISTS `sequence_invoice_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_invoice_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_invoice_0`
--

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

--
-- Table structure for table `sequence_invoice_1`
--

DROP TABLE IF EXISTS `sequence_invoice_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_invoice_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_invoice_1`
--

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

--
-- Table structure for table `sequence_order_0`
--

DROP TABLE IF EXISTS `sequence_order_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_order_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_order_0`
--

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

--
-- Table structure for table `sequence_order_1`
--

DROP TABLE IF EXISTS `sequence_order_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_order_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_order_1`
--

LOCK TABLES `sequence_order_1` WRITE;
/*!40000 ALTER TABLE `sequence_order_1` DISABLE KEYS */;
INSERT INTO `sequence_order_1` VALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10);
/*!40000 ALTER TABLE `sequence_order_1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sequence_shipment_0`
--

DROP TABLE IF EXISTS `sequence_shipment_0`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_shipment_0` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_shipment_0`
--

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

--
-- Table structure for table `sequence_shipment_1`
--

DROP TABLE IF EXISTS `sequence_shipment_1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sequence_shipment_1` (
  `sequence_value` int(10) unsigned NOT NULL AUTO_INCREMENT,
  PRIMARY KEY (`sequence_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sequence_shipment_1`
--

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

--
-- Table structure for table `session`
--

DROP TABLE IF EXISTS `session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `session` (
  `session_id` varchar(255) NOT NULL COMMENT 'Session Id',
  `session_expires` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Date of Session Expiration',
  `session_data` mediumblob NOT NULL COMMENT 'Session Data',
  PRIMARY KEY (`session_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Database Sessions Storage';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `session`
--

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

--
-- Table structure for table `setup_module`
--

DROP TABLE IF EXISTS `setup_module`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `setup_module` (
  `module` varchar(50) NOT NULL COMMENT 'Module',
  `schema_version` varchar(50) DEFAULT NULL COMMENT 'Schema Version',
  `data_version` varchar(50) DEFAULT NULL COMMENT 'Data Version',
  PRIMARY KEY (`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Module versions registry';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `setup_module`
--

LOCK TABLES `setup_module` WRITE;
/*!40000 ALTER TABLE `setup_module` DISABLE KEYS */;
INSERT INTO `setup_module` VALUES ('Magento_GoogleShoppingAds','4.0.1','4.0.1'),('Magento_Securitytxt','1.0.0','1.0.0'),('Mageplaza_Blog','2.5.4','2.5.4'),('Mageplaza_Core','1.0.0','1.0.0'),('Mageplaza_Smtp','1.2.5','1.2.5'),('Orangecat_MediaGalleryProcessor','2.0.0','2.0.0'),('PayPal_Braintree','4.4.0','4.4.0'),('Plumrocket_Base','2.1.9','2.1.9'),('Plumrocket_DataPrivacyApi','1.0.0','1.0.0'),('Plumrocket_GDPR','3.0.3','3.0.3'),('Plumrocket_GdprAddon','1.0.0','1.0.0'),('Plumrocket_Token','1.0.2','1.0.2'),('Torresani_MessageQueue','1.0.0','1.0.0'),('Webkul_BuyButton','4.0.0','4.0.0'),('WebShopApps_MatrixRate','1.0.0','1.0.0');
/*!40000 ALTER TABLE `setup_module` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `shipping_tablerate`
--

DROP TABLE IF EXISTS `shipping_tablerate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `shipping_tablerate` (
  `pk` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key',
  `website_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `dest_country_id` varchar(4) NOT NULL DEFAULT '0' COMMENT 'Destination coutry ISO/2 or ISO/3 code',
  `dest_region_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Destination Region ID',
  `dest_zip` varchar(10) NOT NULL DEFAULT '*' COMMENT 'Destination Post Code (Zip)',
  `condition_name` varchar(30) NOT NULL COMMENT 'Rate Condition name',
  `condition_value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Rate condition value',
  `price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Price',
  `cost` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Cost',
  PRIMARY KEY (`pk`),
  UNIQUE KEY `UNQ_D60821CDB2AFACEE1566CFC02D0D4CAA` (`website_id`,`dest_country_id`,`dest_region_id`,`dest_zip`,`condition_name`,`condition_value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Shipping Tablerate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shipping_tablerate`
--

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

--
-- Table structure for table `sitemap`
--

DROP TABLE IF EXISTS `sitemap`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sitemap` (
  `sitemap_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Sitemap ID',
  `sitemap_type` varchar(32) DEFAULT NULL COMMENT 'Sitemap Type',
  `sitemap_filename` varchar(32) DEFAULT NULL COMMENT 'Sitemap Filename',
  `sitemap_path` varchar(255) DEFAULT NULL COMMENT 'Sitemap Path',
  `sitemap_time` timestamp NULL DEFAULT NULL COMMENT 'Sitemap Time',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  PRIMARY KEY (`sitemap_id`),
  KEY `SITEMAP_STORE_ID` (`store_id`),
  CONSTRAINT `SITEMAP_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='XML Sitemap';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sitemap`
--

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

--
-- Table structure for table `store`
--

DROP TABLE IF EXISTS `store`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `store` (
  `store_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Store ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `group_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Group ID',
  `name` varchar(255) NOT NULL COMMENT 'Store Name',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store Sort Order',
  `is_active` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store Activity',
  PRIMARY KEY (`store_id`),
  UNIQUE KEY `STORE_CODE` (`code`),
  KEY `STORE_WEBSITE_ID` (`website_id`),
  KEY `STORE_IS_ACTIVE_SORT_ORDER` (`is_active`,`sort_order`),
  KEY `STORE_GROUP_ID` (`group_id`),
  CONSTRAINT `STORE_GROUP_ID_STORE_GROUP_GROUP_ID` FOREIGN KEY (`group_id`) REFERENCES `store_group` (`group_id`) ON DELETE CASCADE,
  CONSTRAINT `STORE_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Stores';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `store`
--

LOCK TABLES `store` WRITE;
/*!40000 ALTER TABLE `store` DISABLE KEYS */;
INSERT INTO `store` VALUES (0,'admin',0,0,'Admin',0,1),(1,'default',1,1,'Default Store View',0,1);
/*!40000 ALTER TABLE `store` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `store_group`
--

DROP TABLE IF EXISTS `store_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `store_group` (
  `group_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Group ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `name` varchar(255) NOT NULL COMMENT 'Store Group Name',
  `root_category_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Root Category ID',
  `default_store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Default Store ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Store group unique code',
  PRIMARY KEY (`group_id`),
  UNIQUE KEY `STORE_GROUP_CODE` (`code`),
  KEY `STORE_GROUP_WEBSITE_ID` (`website_id`),
  KEY `STORE_GROUP_DEFAULT_STORE_ID` (`default_store_id`),
  CONSTRAINT `STORE_GROUP_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Store Groups';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `store_group`
--

LOCK TABLES `store_group` WRITE;
/*!40000 ALTER TABLE `store_group` DISABLE KEYS */;
INSERT INTO `store_group` VALUES (0,0,'Default',0,0,'default'),(1,1,'Main Website Store',2,1,'main_website_store');
/*!40000 ALTER TABLE `store_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `store_website`
--

DROP TABLE IF EXISTS `store_website`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `store_website` (
  `website_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Website ID',
  `code` varchar(32) DEFAULT NULL COMMENT 'Code',
  `name` varchar(64) DEFAULT NULL COMMENT 'Website Name',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `default_group_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Default Group ID',
  `is_default` smallint(5) unsigned DEFAULT 0 COMMENT 'Defines Is Website Default',
  PRIMARY KEY (`website_id`),
  UNIQUE KEY `STORE_WEBSITE_CODE` (`code`),
  KEY `STORE_WEBSITE_SORT_ORDER` (`sort_order`),
  KEY `STORE_WEBSITE_DEFAULT_GROUP_ID` (`default_group_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Websites';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `store_website`
--

LOCK TABLES `store_website` WRITE;
/*!40000 ALTER TABLE `store_website` DISABLE KEYS */;
INSERT INTO `store_website` VALUES (0,'admin','Admin',0,0,0),(1,'base','Main Website',0,1,1);
/*!40000 ALTER TABLE `store_website` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_calculation`
--

DROP TABLE IF EXISTS `tax_calculation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_calculation` (
  `tax_calculation_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation ID',
  `tax_calculation_rate_id` int(11) NOT NULL COMMENT 'Tax Calculation Rate ID',
  `tax_calculation_rule_id` int(11) NOT NULL COMMENT 'Tax Calculation Rule ID',
  `customer_tax_class_id` smallint(6) NOT NULL COMMENT 'Customer Tax Class ID',
  `product_tax_class_id` smallint(6) NOT NULL COMMENT 'Product Tax Class ID',
  PRIMARY KEY (`tax_calculation_id`),
  KEY `TAX_CALCULATION_TAX_CALCULATION_RULE_ID` (`tax_calculation_rule_id`),
  KEY `TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID` (`customer_tax_class_id`),
  KEY `TAX_CALCULATION_PRODUCT_TAX_CLASS_ID` (`product_tax_class_id`),
  KEY `TAX_CALC_TAX_CALC_RATE_ID_CSTR_TAX_CLASS_ID_PRD_TAX_CLASS_ID` (`tax_calculation_rate_id`,`customer_tax_class_id`,`product_tax_class_id`),
  CONSTRAINT `TAX_CALCULATION_CUSTOMER_TAX_CLASS_ID_TAX_CLASS_CLASS_ID` FOREIGN KEY (`customer_tax_class_id`) REFERENCES `tax_class` (`class_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALCULATION_PRODUCT_TAX_CLASS_ID_TAX_CLASS_CLASS_ID` FOREIGN KEY (`product_tax_class_id`) REFERENCES `tax_class` (`class_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALC_TAX_CALC_RATE_ID_TAX_CALC_RATE_TAX_CALC_RATE_ID` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALC_TAX_CALC_RULE_ID_TAX_CALC_RULE_TAX_CALC_RULE_ID` FOREIGN KEY (`tax_calculation_rule_id`) REFERENCES `tax_calculation_rule` (`tax_calculation_rule_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation`
--

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

--
-- Table structure for table `tax_calculation_rate`
--

DROP TABLE IF EXISTS `tax_calculation_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_calculation_rate` (
  `tax_calculation_rate_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate ID',
  `tax_country_id` varchar(2) NOT NULL COMMENT 'Tax Country ID',
  `tax_region_id` int(11) NOT NULL COMMENT 'Tax Region ID',
  `tax_postcode` varchar(21) DEFAULT NULL COMMENT 'Tax Postcode',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `rate` decimal(12,4) NOT NULL COMMENT 'Rate',
  `zip_is_range` smallint(6) DEFAULT NULL COMMENT 'Zip Is Range',
  `zip_from` int(10) unsigned DEFAULT NULL COMMENT 'Zip From',
  `zip_to` int(10) unsigned DEFAULT NULL COMMENT 'Zip To',
  PRIMARY KEY (`tax_calculation_rate_id`),
  KEY `TAX_CALCULATION_RATE_TAX_COUNTRY_ID_TAX_REGION_ID_TAX_POSTCODE` (`tax_country_id`,`tax_region_id`,`tax_postcode`),
  KEY `TAX_CALCULATION_RATE_CODE` (`code`),
  KEY `IDX_CA799F1E2CB843495F601E56C84A626D` (`tax_calculation_rate_id`,`tax_country_id`,`tax_region_id`,`zip_is_range`,`tax_postcode`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation_rate`
--

LOCK TABLES `tax_calculation_rate` WRITE;
/*!40000 ALTER TABLE `tax_calculation_rate` DISABLE KEYS */;
INSERT INTO `tax_calculation_rate` VALUES (1,'IT',0,'*','Iva 10%',10.0000,NULL,NULL,NULL),(2,'IT',0,'*','Iva 4%',4.0000,NULL,NULL,NULL),(3,'IT',0,'*','Iva 22%',22.0000,NULL,NULL,NULL);
/*!40000 ALTER TABLE `tax_calculation_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_calculation_rate_title`
--

DROP TABLE IF EXISTS `tax_calculation_rate_title`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_calculation_rate_title` (
  `tax_calculation_rate_title_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rate Title ID',
  `tax_calculation_rate_id` int(11) NOT NULL COMMENT 'Tax Calculation Rate ID',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `value` varchar(255) NOT NULL COMMENT 'Value',
  PRIMARY KEY (`tax_calculation_rate_title_id`),
  KEY `TAX_CALCULATION_RATE_TITLE_TAX_CALCULATION_RATE_ID_STORE_ID` (`tax_calculation_rate_id`,`store_id`),
  KEY `TAX_CALCULATION_RATE_TITLE_STORE_ID` (`store_id`),
  CONSTRAINT `FK_37FB965F786AD5897BB3AE90470C42AB` FOREIGN KEY (`tax_calculation_rate_id`) REFERENCES `tax_calculation_rate` (`tax_calculation_rate_id`) ON DELETE CASCADE,
  CONSTRAINT `TAX_CALCULATION_RATE_TITLE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rate Title';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation_rate_title`
--

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

--
-- Table structure for table `tax_calculation_rule`
--

DROP TABLE IF EXISTS `tax_calculation_rule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_calculation_rule` (
  `tax_calculation_rule_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Tax Calculation Rule ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `priority` int(11) NOT NULL COMMENT 'Priority',
  `position` int(11) NOT NULL COMMENT 'Position',
  `calculate_subtotal` int(11) NOT NULL COMMENT 'Calculate off subtotal option',
  PRIMARY KEY (`tax_calculation_rule_id`),
  KEY `TAX_CALCULATION_RULE_PRIORITY_POSITION` (`priority`,`position`),
  KEY `TAX_CALCULATION_RULE_CODE` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='Tax Calculation Rule';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_calculation_rule`
--

LOCK TABLES `tax_calculation_rule` WRITE;
/*!40000 ALTER TABLE `tax_calculation_rule` DISABLE KEYS */;
INSERT INTO `tax_calculation_rule` VALUES (1,'Iva 22%',0,0,0),(2,'Iva 10%',0,0,0),(3,'Iva 4%',0,0,0);
/*!40000 ALTER TABLE `tax_calculation_rule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_class`
--

DROP TABLE IF EXISTS `tax_class`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_class` (
  `class_id` smallint(6) NOT NULL AUTO_INCREMENT COMMENT 'Class ID',
  `class_name` varchar(255) NOT NULL COMMENT 'Class Name',
  `class_type` varchar(8) NOT NULL DEFAULT 'CUSTOMER' COMMENT 'Class Type',
  PRIMARY KEY (`class_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Tax Class';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_class`
--

LOCK TABLES `tax_class` WRITE;
/*!40000 ALTER TABLE `tax_class` DISABLE KEYS */;
INSERT INTO `tax_class` VALUES (2,'Iva 22%','PRODUCT'),(3,'Retail Customer','CUSTOMER'),(4,'Iva 10%','PRODUCT'),(5,'Iva 4%','PRODUCT');
/*!40000 ALTER TABLE `tax_class` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_order_aggregated_created`
--

DROP TABLE IF EXISTS `tax_order_aggregated_created`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_order_aggregated_created` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `percent` float DEFAULT NULL COMMENT 'Percent',
  `orders_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `tax_base_amount_sum` float DEFAULT NULL COMMENT 'Tax Base Amount Sum',
  PRIMARY KEY (`id`),
  UNIQUE KEY `TAX_ORDER_AGGRED_CREATED_PERIOD_STORE_ID_CODE_PERCENT_ORDER_STS` (`period`,`store_id`,`code`,`percent`,`order_status`),
  KEY `TAX_ORDER_AGGREGATED_CREATED_STORE_ID` (`store_id`),
  CONSTRAINT `TAX_ORDER_AGGREGATED_CREATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregation';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_order_aggregated_created`
--

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

--
-- Table structure for table `tax_order_aggregated_updated`
--

DROP TABLE IF EXISTS `tax_order_aggregated_updated`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_order_aggregated_updated` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
  `period` date DEFAULT NULL COMMENT 'Period',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `order_status` varchar(50) NOT NULL COMMENT 'Order Status',
  `percent` float DEFAULT NULL COMMENT 'Percent',
  `orders_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Orders Count',
  `tax_base_amount_sum` float DEFAULT NULL COMMENT 'Tax Base Amount Sum',
  PRIMARY KEY (`id`),
  UNIQUE KEY `TAX_ORDER_AGGRED_UPDATED_PERIOD_STORE_ID_CODE_PERCENT_ORDER_STS` (`period`,`store_id`,`code`,`percent`,`order_status`),
  KEY `TAX_ORDER_AGGREGATED_UPDATED_STORE_ID` (`store_id`),
  CONSTRAINT `TAX_ORDER_AGGREGATED_UPDATED_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Tax Order Aggregated Updated';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_order_aggregated_updated`
--

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

--
-- Table structure for table `theme`
--

DROP TABLE IF EXISTS `theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `theme` (
  `theme_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme identifier',
  `parent_id` int(11) DEFAULT NULL COMMENT 'Parent ID',
  `theme_path` varchar(255) DEFAULT NULL COMMENT 'Theme Path',
  `theme_title` varchar(255) NOT NULL COMMENT 'Theme Title',
  `preview_image` varchar(255) DEFAULT NULL COMMENT 'Preview Image',
  `is_featured` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Is Theme Featured',
  `area` varchar(255) NOT NULL COMMENT 'Theme Area',
  `type` smallint(6) NOT NULL COMMENT 'Theme type: 0:physical, 1:virtual, 2:staging',
  `code` text DEFAULT NULL COMMENT 'Full theme code, including package',
  PRIMARY KEY (`theme_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Core theme';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `theme`
--

LOCK TABLES `theme` WRITE;
/*!40000 ALTER TABLE `theme` DISABLE KEYS */;
INSERT INTO `theme` VALUES (1,NULL,'Magento/blank','Magento Blank','preview_image_62e64fbb5e5a7.jpeg',0,'frontend',0,'Magento/blank'),(2,NULL,'Magento/backend','Magento 2 backend',NULL,0,'adminhtml',0,'Magento/backend'),(3,1,'Magento/luma','Magento Luma','preview_image_62e64fbb70a7f.jpeg',0,'frontend',0,'Magento/luma'),(4,1,'Indaco/translations','Indaco Translations Theme','preview_image_62ffae2390086.jpeg',0,'frontend',0,'Indaco/translations'),(5,3,'Magento/indaco','Indaco',NULL,0,'frontend',0,'Magento/indaco');
/*!40000 ALTER TABLE `theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `theme_file`
--

DROP TABLE IF EXISTS `theme_file`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `theme_file` (
  `theme_files_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Theme files identifier',
  `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme ID',
  `file_path` varchar(255) DEFAULT NULL COMMENT 'Relative path to file',
  `file_type` varchar(32) NOT NULL COMMENT 'File Type',
  `content` longtext NOT NULL COMMENT 'File Content',
  `sort_order` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Sort Order',
  `is_temporary` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Is Temporary File',
  PRIMARY KEY (`theme_files_id`),
  KEY `THEME_FILE_THEME_ID_THEME_THEME_ID` (`theme_id`),
  CONSTRAINT `THEME_FILE_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Core theme files';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `theme_file`
--

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

--
-- Table structure for table `translation`
--

DROP TABLE IF EXISTS `translation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `translation` (
  `key_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Key ID of Translation',
  `string` varchar(255) NOT NULL DEFAULT 'Translate String' COMMENT 'Translation String',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `translate` varchar(255) DEFAULT NULL COMMENT 'Translate',
  `locale` varchar(20) NOT NULL DEFAULT 'en_US' COMMENT 'Locale',
  `crc_string` bigint(20) NOT NULL DEFAULT 1591228201 COMMENT 'Translation String CRC32 Hash',
  PRIMARY KEY (`key_id`),
  UNIQUE KEY `TRANSLATION_STORE_ID_LOCALE_CRC_STRING_STRING` (`store_id`,`locale`,`crc_string`,`string`),
  CONSTRAINT `TRANSLATION_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Translations';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `translation`
--

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

--
-- Table structure for table `ui_bookmark`
--

DROP TABLE IF EXISTS `ui_bookmark`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ui_bookmark` (
  `bookmark_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Bookmark identifier',
  `user_id` int(10) unsigned NOT NULL COMMENT 'User ID',
  `namespace` varchar(255) NOT NULL COMMENT 'Bookmark namespace',
  `identifier` varchar(255) NOT NULL COMMENT 'Bookmark Identifier',
  `current` smallint(6) NOT NULL COMMENT 'Mark current bookmark per user and identifier',
  `title` varchar(255) DEFAULT NULL COMMENT 'Bookmark title',
  `config` longtext DEFAULT NULL COMMENT 'Bookmark config',
  `created_at` datetime NOT NULL DEFAULT current_timestamp() COMMENT 'Bookmark created at',
  `updated_at` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Bookmark updated at',
  PRIMARY KEY (`bookmark_id`),
  KEY `UI_BOOKMARK_USER_ID_NAMESPACE_IDENTIFIER` (`user_id`,`namespace`,`identifier`),
  CONSTRAINT `UI_BOOKMARK_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8 COMMENT='Bookmark';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ui_bookmark`
--

LOCK TABLES `ui_bookmark` WRITE;
/*!40000 ALTER TABLE `ui_bookmark` DISABLE KEYS */;
INSERT INTO `ui_bookmark` VALUES (1,1,'product_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"salable_quantity\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false}},\"search\":{\"value\":\"\"},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"salable_quantity\":9,\"visibility\":10,\"status\":11,\"websites\":12,\"short_description\":13,\"special_price\":14,\"special_from_date\":15,\"special_to_date\":16,\"cost\":17,\"weight\":18,\"manufacturer\":19,\"meta_title\":20,\"meta_keyword\":21,\"meta_description\":22,\"color\":23,\"news_from_date\":24,\"news_to_date\":25,\"custom_design\":26,\"custom_design_from\":27,\"custom_design_to\":28,\"page_layout\":29,\"country_of_manufacture\":30,\"custom_layout\":31,\"msrp\":32,\"url_key\":33,\"gift_message_available\":34,\"tax_class_id\":35,\"actions\":36}},\"value\":\"Default View\"}}}','2022-07-31 13:03:24','2022-07-31 13:03:24'),(2,1,'product_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":200,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":200},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"salable_quantity\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false},\"indaco_lactose\":{\"visible\":true,\"sorting\":false}},\"search\":{\"value\":\"\"},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"salable_quantity\":9,\"visibility\":10,\"status\":11,\"websites\":12,\"short_description\":13,\"special_price\":14,\"special_from_date\":15,\"special_to_date\":16,\"cost\":17,\"weight\":18,\"manufacturer\":19,\"meta_title\":20,\"meta_keyword\":21,\"meta_description\":22,\"color\":23,\"news_from_date\":24,\"news_to_date\":25,\"custom_design\":26,\"custom_design_from\":27,\"custom_design_to\":28,\"page_layout\":29,\"country_of_manufacture\":30,\"custom_layout\":31,\"msrp\":32,\"url_key\":33,\"gift_message_available\":34,\"tax_class_id\":35,\"actions\":36,\"indaco_lactose\":37}}}','2022-07-31 13:03:26','2022-09-16 10:28:31'),(3,1,'sales_order_grid','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"pickup_location_code\":{\"visible\":false,\"sorting\":false},\"transaction_source\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"allocated_sources\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19,\"allocated_sources\":20,\"pickup_location_code\":21,\"transaction_source\":22}},\"value\":\"Default View\"}}}','2022-08-05 09:07:35','2022-08-05 09:07:35'),(4,1,'sales_order_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"pickup_location_code\":{\"visible\":false,\"sorting\":false},\"transaction_source\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"allocated_sources\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19,\"allocated_sources\":20,\"pickup_location_code\":21,\"transaction_source\":22}}}','2022-08-05 09:07:37','2022-08-05 09:07:37'),(5,2,'product_listing','default',1,'Visualizzazione predefinita','{\"views\":{\"default\":{\"label\":\"Visualizzazione predefinita\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"search\":{\"value\":\"\"},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"salable_quantity\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"salable_quantity\":9,\"visibility\":10,\"status\":11,\"websites\":12,\"short_description\":13,\"special_price\":14,\"special_from_date\":15,\"special_to_date\":16,\"cost\":17,\"weight\":18,\"manufacturer\":19,\"meta_title\":20,\"meta_keyword\":21,\"meta_description\":22,\"color\":23,\"news_from_date\":24,\"news_to_date\":25,\"custom_design\":26,\"custom_design_from\":27,\"custom_design_to\":28,\"page_layout\":29,\"country_of_manufacture\":30,\"custom_layout\":31,\"msrp\":32,\"url_key\":33,\"gift_message_available\":34,\"tax_class_id\":35,\"actions\":36}},\"value\":\"Visualizzazione predefinita\"}}}','2022-08-08 10:25:31','2022-08-08 10:25:31'),(6,2,'product_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"search\":{\"value\":\"\"},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"sku\":{\"visible\":true,\"sorting\":false},\"price\":{\"visible\":true,\"sorting\":false},\"websites\":{\"visible\":true,\"sorting\":false},\"qty\":{\"visible\":true,\"sorting\":false},\"short_description\":{\"visible\":false,\"sorting\":false},\"special_price\":{\"visible\":false,\"sorting\":false},\"cost\":{\"visible\":false,\"sorting\":false},\"weight\":{\"visible\":false,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keyword\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"msrp\":{\"visible\":false,\"sorting\":false},\"url_key\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"salable_quantity\":{\"visible\":true,\"sorting\":false},\"type_id\":{\"visible\":true,\"sorting\":false},\"attribute_set_id\":{\"visible\":true,\"sorting\":false},\"visibility\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"manufacturer\":{\"visible\":false,\"sorting\":false},\"color\":{\"visible\":false,\"sorting\":false},\"custom_design\":{\"visible\":false,\"sorting\":false},\"page_layout\":{\"visible\":false,\"sorting\":false},\"country_of_manufacture\":{\"visible\":false,\"sorting\":false},\"custom_layout\":{\"visible\":false,\"sorting\":false},\"gift_message_available\":{\"visible\":false,\"sorting\":false},\"tax_class_id\":{\"visible\":false,\"sorting\":false},\"thumbnail\":{\"visible\":true,\"sorting\":false},\"special_from_date\":{\"visible\":false,\"sorting\":false},\"special_to_date\":{\"visible\":false,\"sorting\":false},\"news_from_date\":{\"visible\":false,\"sorting\":false},\"news_to_date\":{\"visible\":false,\"sorting\":false},\"custom_design_from\":{\"visible\":false,\"sorting\":false},\"custom_design_to\":{\"visible\":false,\"sorting\":false},\"indaco_lactose\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"thumbnail\":2,\"name\":3,\"type_id\":4,\"attribute_set_id\":5,\"sku\":6,\"price\":7,\"qty\":8,\"salable_quantity\":9,\"visibility\":10,\"status\":11,\"websites\":12,\"short_description\":13,\"special_price\":14,\"special_from_date\":15,\"special_to_date\":16,\"cost\":17,\"weight\":18,\"manufacturer\":19,\"meta_title\":20,\"meta_keyword\":21,\"meta_description\":22,\"color\":23,\"news_from_date\":24,\"news_to_date\":25,\"custom_design\":26,\"custom_design_from\":27,\"custom_design_to\":28,\"page_layout\":29,\"country_of_manufacture\":30,\"custom_layout\":31,\"msrp\":32,\"url_key\":33,\"gift_message_available\":34,\"tax_class_id\":35,\"actions\":36,\"indaco_lactose\":37}}}','2022-08-08 10:25:33','2022-09-09 08:16:02'),(7,2,'sales_order_grid','default',1,'Visualizzazione predefinita','{\"views\":{\"default\":{\"label\":\"Visualizzazione predefinita\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"pickup_location_code\":{\"visible\":false,\"sorting\":false},\"transaction_source\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"allocated_sources\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19,\"allocated_sources\":20,\"pickup_location_code\":21,\"transaction_source\":22}},\"value\":\"Visualizzazione predefinita\"}}}','2022-08-08 15:26:07','2022-08-08 15:26:07'),(8,2,'sales_order_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"total_refunded\":{\"visible\":false,\"sorting\":false},\"pickup_location_code\":{\"visible\":false,\"sorting\":false},\"transaction_source\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"customer_group\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"allocated_sources\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"store_id\":2,\"created_at\":3,\"billing_name\":4,\"shipping_name\":5,\"base_grand_total\":6,\"grand_total\":7,\"status\":8,\"billing_address\":9,\"shipping_address\":10,\"shipping_information\":11,\"customer_email\":12,\"customer_group\":13,\"subtotal\":14,\"shipping_and_handling\":15,\"customer_name\":16,\"payment_method\":17,\"total_refunded\":18,\"actions\":19,\"allocated_sources\":20,\"pickup_location_code\":21,\"transaction_source\":22}}}','2022-08-08 15:26:08','2022-08-08 15:26:08'),(9,2,'sales_order_view_invoice_grid','default',1,'Visualizzazione predefinita','{\"views\":{\"default\":{\"label\":\"Visualizzazione predefinita\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"grand_total\":7,\"store_id\":8,\"billing_address\":9,\"shipping_address\":10,\"customer_name\":11,\"customer_email\":12,\"customer_group_id\":13,\"payment_method\":14,\"shipping_information\":15,\"subtotal\":16,\"shipping_and_handling\":17,\"actions\":18}},\"value\":\"Visualizzazione predefinita\"}}}','2022-08-09 12:32:56','2022-08-09 12:32:56'),(10,2,'sales_order_view_creditmemo_grid','default',1,'Visualizzazione predefinita','{\"views\":{\"default\":{\"label\":\"Visualizzazione predefinita\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"adjustment_positive\":{\"visible\":false,\"sorting\":false},\"adjustment_negative\":{\"visible\":false,\"sorting\":false},\"order_base_grand_total\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"base_grand_total\":7,\"order_status\":8,\"store_id\":9,\"billing_address\":10,\"shipping_address\":11,\"customer_name\":12,\"customer_email\":13,\"customer_group_id\":14,\"payment_method\":15,\"shipping_information\":16,\"subtotal\":17,\"shipping_and_handling\":18,\"adjustment_positive\":19,\"adjustment_negative\":20,\"order_base_grand_total\":21,\"actions\":22}},\"value\":\"Visualizzazione predefinita\"}}}','2022-08-09 12:32:56','2022-08-09 12:32:56'),(11,2,'sales_order_view_shipment_grid','default',1,'Visualizzazione predefinita','{\"views\":{\"default\":{\"label\":\"Visualizzazione predefinita\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"total_qty\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"shipping_name\":5,\"total_qty\":6,\"order_status\":7,\"store_id\":8,\"customer_name\":9,\"customer_email\":10,\"customer_group_id\":11,\"billing_address\":12,\"shipping_address\":13,\"payment_method\":14,\"shipping_information\":15,\"actions\":16}},\"value\":\"Visualizzazione predefinita\"}}}','2022-08-09 12:32:56','2022-08-09 12:32:56'),(12,2,'sales_order_view_invoice_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"grand_total\":7,\"store_id\":8,\"billing_address\":9,\"shipping_address\":10,\"customer_name\":11,\"customer_email\":12,\"customer_group_id\":13,\"payment_method\":14,\"shipping_information\":15,\"subtotal\":16,\"shipping_and_handling\":17,\"actions\":18}}}','2022-08-09 12:32:58','2022-08-09 12:32:58'),(13,2,'sales_order_view_creditmemo_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":false},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"billing_name\":{\"visible\":true,\"sorting\":false},\"base_grand_total\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"subtotal\":{\"visible\":false,\"sorting\":false},\"shipping_and_handling\":{\"visible\":false,\"sorting\":false},\"adjustment_positive\":{\"visible\":false,\"sorting\":false},\"adjustment_negative\":{\"visible\":false,\"sorting\":false},\"order_base_grand_total\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"state\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"billing_name\":5,\"state\":6,\"base_grand_total\":7,\"order_status\":8,\"store_id\":9,\"billing_address\":10,\"shipping_address\":11,\"customer_name\":12,\"customer_email\":13,\"customer_group_id\":14,\"payment_method\":15,\"shipping_information\":16,\"subtotal\":17,\"shipping_and_handling\":18,\"adjustment_positive\":19,\"adjustment_negative\":20,\"order_base_grand_total\":21,\"actions\":22}}}','2022-08-09 12:32:58','2022-08-09 12:32:58'),(14,2,'sales_order_view_shipment_grid','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"increment_id\":{\"visible\":true,\"sorting\":\"asc\"},\"order_increment_id\":{\"visible\":true,\"sorting\":false},\"shipping_name\":{\"visible\":true,\"sorting\":false},\"total_qty\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":false,\"sorting\":false},\"customer_name\":{\"visible\":false,\"sorting\":false},\"customer_email\":{\"visible\":false,\"sorting\":false},\"billing_address\":{\"visible\":false,\"sorting\":false},\"shipping_address\":{\"visible\":false,\"sorting\":false},\"shipping_information\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"order_status\":{\"visible\":false,\"sorting\":false},\"customer_group_id\":{\"visible\":false,\"sorting\":false},\"payment_method\":{\"visible\":false,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"order_created_at\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"increment_id\":1,\"created_at\":2,\"order_increment_id\":3,\"order_created_at\":4,\"shipping_name\":5,\"total_qty\":6,\"order_status\":7,\"store_id\":8,\"customer_name\":9,\"customer_email\":10,\"customer_group_id\":11,\"billing_address\":12,\"shipping_address\":13,\"payment_method\":14,\"shipping_information\":15,\"actions\":16}}}','2022-08-09 12:32:58','2022-08-09 12:32:58'),(15,1,'customer_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"email\":{\"visible\":true,\"sorting\":false},\"billing_telephone\":{\"visible\":true,\"sorting\":false},\"billing_postcode\":{\"visible\":true,\"sorting\":false},\"billing_region\":{\"visible\":true,\"sorting\":false},\"confirmation\":{\"visible\":true,\"sorting\":false},\"created_in\":{\"visible\":true,\"sorting\":false},\"billing_full\":{\"visible\":false,\"sorting\":false},\"shipping_full\":{\"visible\":false,\"sorting\":false},\"taxvat\":{\"visible\":true,\"sorting\":false},\"billing_street\":{\"visible\":false,\"sorting\":false},\"billing_city\":{\"visible\":false,\"sorting\":false},\"billing_fax\":{\"visible\":false,\"sorting\":false},\"billing_vat_id\":{\"visible\":false,\"sorting\":false},\"billing_company\":{\"visible\":false,\"sorting\":false},\"billing_firstname\":{\"visible\":false,\"sorting\":false},\"billing_lastname\":{\"visible\":false,\"sorting\":false},\"lock_expires\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"group_id\":{\"visible\":true,\"sorting\":false},\"billing_country_id\":{\"visible\":true,\"sorting\":false},\"website_id\":{\"visible\":true,\"sorting\":false},\"gender\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"dob\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"email\":3,\"group_id\":4,\"billing_telephone\":5,\"billing_postcode\":6,\"billing_country_id\":7,\"billing_region\":8,\"created_at\":9,\"website_id\":10,\"confirmation\":11,\"created_in\":12,\"billing_full\":13,\"shipping_full\":14,\"dob\":15,\"taxvat\":16,\"gender\":17,\"billing_street\":18,\"billing_city\":19,\"billing_fax\":20,\"billing_vat_id\":21,\"billing_company\":22,\"billing_firstname\":23,\"billing_lastname\":24,\"lock_expires\":25,\"actions\":26}},\"value\":\"Default View\"}}}','2022-08-11 09:12:13','2022-08-11 09:12:13'),(16,1,'customer_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"email\":{\"visible\":true,\"sorting\":false},\"billing_telephone\":{\"visible\":true,\"sorting\":false},\"billing_postcode\":{\"visible\":true,\"sorting\":false},\"billing_region\":{\"visible\":true,\"sorting\":false},\"confirmation\":{\"visible\":true,\"sorting\":false},\"created_in\":{\"visible\":true,\"sorting\":false},\"billing_full\":{\"visible\":false,\"sorting\":false},\"shipping_full\":{\"visible\":false,\"sorting\":false},\"taxvat\":{\"visible\":true,\"sorting\":false},\"billing_street\":{\"visible\":false,\"sorting\":false},\"billing_city\":{\"visible\":false,\"sorting\":false},\"billing_fax\":{\"visible\":false,\"sorting\":false},\"billing_vat_id\":{\"visible\":false,\"sorting\":false},\"billing_company\":{\"visible\":false,\"sorting\":false},\"billing_firstname\":{\"visible\":false,\"sorting\":false},\"billing_lastname\":{\"visible\":false,\"sorting\":false},\"lock_expires\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"group_id\":{\"visible\":true,\"sorting\":false},\"billing_country_id\":{\"visible\":true,\"sorting\":false},\"website_id\":{\"visible\":true,\"sorting\":false},\"gender\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"dob\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"email\":3,\"group_id\":4,\"billing_telephone\":5,\"billing_postcode\":6,\"billing_country_id\":7,\"billing_region\":8,\"created_at\":9,\"website_id\":10,\"confirmation\":11,\"created_in\":12,\"billing_full\":13,\"shipping_full\":14,\"dob\":15,\"taxvat\":16,\"gender\":17,\"billing_street\":18,\"billing_city\":19,\"billing_fax\":20,\"billing_vat_id\":21,\"billing_company\":22,\"billing_firstname\":23,\"billing_lastname\":24,\"lock_expires\":25,\"actions\":26}}}','2022-08-11 09:12:14','2022-08-11 09:12:14'),(17,1,'login_as_customer_log_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"log_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"user_id\":{\"visible\":true,\"sorting\":false},\"user_name\":{\"visible\":true,\"sorting\":false},\"time\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"log_id\":0,\"customer_id\":1,\"customer_email\":2,\"user_id\":3,\"user_name\":4,\"time\":5}},\"value\":\"Default View\"}}}','2022-08-11 09:14:38','2022-08-11 09:14:38'),(18,1,'login_as_customer_log_listing','current',0,NULL,'{\"current\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"log_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"user_id\":{\"visible\":true,\"sorting\":false},\"user_name\":{\"visible\":true,\"sorting\":false},\"time\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"log_id\":0,\"customer_id\":1,\"customer_email\":2,\"user_id\":3,\"user_name\":4,\"time\":5}}}','2022-08-11 09:14:40','2022-08-11 09:14:40'),(19,1,'customer_group_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"customer_group_id\":{\"visible\":true,\"sorting\":\"asc\"},\"customer_group_code\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"tax_class_id\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"customer_group_id\":0,\"customer_group_code\":1,\"tax_class_id\":2,\"actions\":3}},\"value\":\"Default View\"}}}','2022-08-11 09:14:49','2022-08-11 09:14:49'),(20,1,'customer_group_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"customer_group_id\":{\"visible\":true,\"sorting\":\"asc\"},\"customer_group_code\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"tax_class_id\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"customer_group_id\":0,\"customer_group_code\":1,\"tax_class_id\":2,\"actions\":3}}}','2022-08-11 09:14:50','2022-08-11 09:14:50'),(21,1,'pr_cookie_consent_log_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"consent_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"merge_email\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"settings\":{\"visible\":true,\"sorting\":false},\"url\":{\"visible\":true,\"sorting\":false},\"ip_address\":{\"visible\":true,\"sorting\":false},\"user_agent\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"displayMode\":\"grid\",\"positions\":{\"consent_id\":0,\"customer_id\":1,\"customer_name\":2,\"merge_email\":3,\"website\":4,\"settings\":5,\"created_at\":6,\"url\":7,\"ip_address\":8,\"user_agent\":9}},\"value\":\"Default View\"}}}','2022-08-11 09:14:58','2022-08-11 09:14:58'),(22,1,'pr_cookie_consent_log_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"consent_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"merge_email\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"settings\":{\"visible\":true,\"sorting\":false},\"url\":{\"visible\":true,\"sorting\":false},\"ip_address\":{\"visible\":true,\"sorting\":false},\"user_agent\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"displayMode\":\"grid\",\"positions\":{\"consent_id\":0,\"customer_id\":1,\"customer_name\":2,\"merge_email\":3,\"website\":4,\"settings\":5,\"created_at\":6,\"url\":7,\"ip_address\":8,\"user_agent\":9}}}','2022-08-11 09:15:00','2022-08-11 09:15:00'),(23,1,'pr_cookie_category_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"is_essential\":{\"visible\":true,\"sorting\":false},\"entity_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"description\":{\"visible\":true,\"sorting\":false},\"key\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"description\":3,\"key\":4,\"status\":5,\"is_essential\":6,\"actions\":7}},\"value\":\"Default View\"}}}','2022-08-11 09:42:48','2022-08-11 09:42:48'),(24,1,'pr_cookie_category_listing','current',0,NULL,'{\"current\":{\"columns\":{\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"is_essential\":{\"visible\":true,\"sorting\":false},\"entity_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"description\":{\"visible\":true,\"sorting\":false},\"key\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"description\":3,\"key\":4,\"status\":5,\"is_essential\":6,\"actions\":7}}}','2022-08-11 09:42:49','2022-08-11 09:42:49'),(25,1,'pr_cookie_item_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"domain_label\":{\"visible\":true,\"sorting\":false},\"duration\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type\":{\"visible\":true,\"sorting\":false},\"category_key\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"domain_label\":3,\"duration\":4,\"type\":5,\"category_key\":6,\"actions\":7}},\"value\":\"Default View\"}}}','2022-08-11 09:43:08','2022-08-11 09:43:08'),(26,1,'pr_cookie_item_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"domain_label\":{\"visible\":true,\"sorting\":false},\"duration\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"type\":{\"visible\":true,\"sorting\":false},\"category_key\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"name\":2,\"domain_label\":3,\"duration\":4,\"type\":5,\"category_key\":6,\"actions\":7}}}','2022-08-11 09:43:10','2022-08-11 09:43:10'),(27,1,'prgdpr_consentslog_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"location\":{\"visible\":true,\"sorting\":false},\"action\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"consent_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"merge_email\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"label\":{\"visible\":true,\"sorting\":false},\"cms_page\":{\"visible\":true,\"sorting\":false},\"version\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"search\":{\"value\":\"\"},\"positions\":{\"consent_id\":0,\"customer_id\":1,\"customer_name\":2,\"merge_email\":3,\"website\":4,\"location\":5,\"action\":6,\"label\":7,\"cms_page\":8,\"version\":9,\"created_at\":10,\"customer_ip\":11}},\"value\":\"Default View\"}}}','2022-08-11 09:44:49','2022-08-11 09:44:49'),(28,1,'prgdpr_consentslog_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"location\":{\"visible\":true,\"sorting\":false},\"action\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"},\"consent_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"merge_email\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"label\":{\"visible\":true,\"sorting\":false},\"cms_page\":{\"visible\":true,\"sorting\":false},\"version\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"search\":{\"value\":\"\"},\"positions\":{\"consent_id\":0,\"customer_id\":1,\"customer_name\":2,\"merge_email\":3,\"website\":4,\"location\":5,\"action\":6,\"label\":7,\"cms_page\":8,\"version\":9,\"created_at\":10,\"customer_ip\":11}}}','2022-08-11 09:44:50','2022-08-11 09:44:50'),(29,1,'prgdpr_checkbox_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":false},\"label\":{\"visible\":true,\"sorting\":false},\"cms_page_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"location_key\":{\"visible\":true,\"sorting\":false},\"require\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"location_key\":2,\"label\":3,\"cms_page_id\":4,\"require\":5,\"status\":6,\"actions\":7}},\"value\":\"Default View\"}}}','2022-08-11 09:45:37','2022-08-11 09:45:37'),(30,1,'prgdpr_checkbox_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"entity_id\":{\"visible\":true,\"sorting\":false},\"label\":{\"visible\":true,\"sorting\":false},\"cms_page_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"location_key\":{\"visible\":true,\"sorting\":false},\"require\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"entity_id\":1,\"location_key\":2,\"label\":3,\"cms_page_id\":4,\"require\":5,\"status\":6,\"actions\":7}}}','2022-08-11 09:45:39','2022-08-11 09:45:39'),(31,1,'prgdpr_consent_location_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"location_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"location_key\":{\"visible\":true,\"sorting\":false},\"description\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"type\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"location_id\":0,\"name\":1,\"location_key\":2,\"type\":3,\"description\":4,\"actions\":5},\"filters\":{\"applied\":{\"placeholder\":true}}},\"value\":\"Default View\"}}}','2022-08-11 09:48:42','2022-08-11 09:48:42'),(32,1,'prgdpr_consent_location_listing','current',0,NULL,'{\"current\":{\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"location_id\":{\"visible\":true,\"sorting\":false},\"name\":{\"visible\":true,\"sorting\":false},\"location_key\":{\"visible\":true,\"sorting\":false},\"description\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"type\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"location_id\":0,\"name\":1,\"location_key\":2,\"type\":3,\"description\":4,\"actions\":5},\"filters\":{\"applied\":{\"placeholder\":true}}}}','2022-08-11 09:48:44','2022-08-11 09:48:44'),(33,1,'prgdpr_removalrequests_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"search\":{\"value\":\"\"},\"columns\":{\"request_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"created_by\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false},\"cancelled_by\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"cancelled_at\":{\"visible\":true,\"sorting\":false},\"scheduled_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"displayMode\":\"grid\",\"positions\":{\"request_id\":0,\"customer_id\":1,\"customer_email\":2,\"customer_name\":3,\"website\":4,\"created_by\":5,\"created_at\":6,\"customer_ip\":7,\"cancelled_at\":8,\"cancelled_by\":9,\"scheduled_at\":10,\"status\":11,\"actions\":12}},\"value\":\"Default View\"}}}','2022-08-11 09:49:52','2022-08-11 09:49:52'),(34,1,'prgdpr_removalrequests_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"search\":{\"value\":\"\"},\"columns\":{\"request_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"website\":{\"visible\":true,\"sorting\":false},\"created_by\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false},\"cancelled_by\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":false},\"cancelled_at\":{\"visible\":true,\"sorting\":false},\"scheduled_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"displayMode\":\"grid\",\"positions\":{\"request_id\":0,\"customer_id\":1,\"customer_email\":2,\"customer_name\":3,\"website\":4,\"created_by\":5,\"created_at\":6,\"customer_ip\":7,\"cancelled_at\":8,\"cancelled_by\":9,\"scheduled_at\":10,\"status\":11,\"actions\":12}}}','2022-08-11 09:49:54','2022-08-11 09:49:54'),(35,1,'prgdpr_downloadslog_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"columns\":{\"log_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"log_id\":0,\"customer_id\":1,\"customer_email\":2,\"customer_name\":3,\"created_at\":4,\"customer_ip\":5}},\"value\":\"Default View\"}}}','2022-08-11 09:49:57','2022-08-11 09:49:57'),(36,1,'prgdpr_downloadslog_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"columns\":{\"log_id\":{\"visible\":true,\"sorting\":false},\"customer_id\":{\"visible\":true,\"sorting\":false},\"customer_email\":{\"visible\":true,\"sorting\":false},\"customer_name\":{\"visible\":true,\"sorting\":false},\"customer_ip\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"log_id\":0,\"customer_id\":1,\"customer_email\":2,\"customer_name\":3,\"created_at\":4,\"customer_ip\":5}}}','2022-08-11 09:49:59','2022-08-11 09:49:59'),(37,1,'design_theme_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"theme_id\":{\"visible\":false,\"sorting\":\"asc\"},\"theme_title\":{\"visible\":true,\"sorting\":false},\"parent_theme_title\":{\"visible\":true,\"sorting\":false},\"theme_path\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"theme_id\":0,\"theme_title\":1,\"parent_theme_title\":2,\"theme_path\":3,\"actions\":4}},\"value\":\"Default View\"}}}','2022-08-19 15:40:57','2022-08-19 15:40:57'),(38,1,'design_theme_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"theme_id\":{\"visible\":false,\"sorting\":\"asc\"},\"theme_title\":{\"visible\":true,\"sorting\":false},\"parent_theme_title\":{\"visible\":true,\"sorting\":false},\"theme_path\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"theme_id\":0,\"theme_title\":1,\"parent_theme_title\":2,\"theme_path\":3,\"actions\":4}}}','2022-08-19 15:40:58','2022-08-19 15:40:58'),(39,1,'design_config_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"default\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"store_website_id\":{\"visible\":true,\"sorting\":false},\"store_group_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"theme_theme_id\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"default\":0,\"store_website_id\":1,\"store_group_id\":2,\"store_id\":3,\"theme_theme_id\":4,\"actions\":5}}}','2022-08-19 15:41:05','2022-08-19 15:41:05'),(40,1,'design_config_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"default\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"store_website_id\":{\"visible\":true,\"sorting\":false},\"store_group_id\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"theme_theme_id\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"default\":0,\"store_website_id\":1,\"store_group_id\":2,\"store_id\":3,\"theme_theme_id\":4,\"actions\":5}},\"value\":\"Default View\"}}}','2022-08-19 15:41:07','2022-08-19 15:41:07'),(41,1,'cms_page_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"page_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keywords\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"page_layout\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"custom_theme\":{\"visible\":false,\"sorting\":false},\"custom_root_template\":{\"visible\":false,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false},\"custom_theme_from\":{\"visible\":false,\"sorting\":false},\"custom_theme_to\":{\"visible\":false,\"sorting\":false}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"page_id\":1,\"title\":2,\"identifier\":3,\"page_layout\":4,\"store_id\":5,\"is_active\":6,\"creation_time\":7,\"update_time\":8,\"custom_theme_from\":9,\"custom_theme_to\":10,\"custom_theme\":11,\"custom_root_template\":12,\"meta_title\":13,\"meta_keywords\":14,\"meta_description\":15,\"actions\":16}},\"value\":\"Default View\"}}}','2022-08-22 07:56:43','2022-08-22 07:56:43'),(42,1,'cms_page_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"columns\":{\"page_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"meta_title\":{\"visible\":false,\"sorting\":false},\"meta_keywords\":{\"visible\":false,\"sorting\":false},\"meta_description\":{\"visible\":false,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"page_layout\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"custom_theme\":{\"visible\":false,\"sorting\":false},\"custom_root_template\":{\"visible\":false,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false},\"custom_theme_from\":{\"visible\":false,\"sorting\":false},\"custom_theme_to\":{\"visible\":false,\"sorting\":false}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"page_id\":1,\"title\":2,\"identifier\":3,\"page_layout\":4,\"store_id\":5,\"is_active\":6,\"creation_time\":7,\"update_time\":8,\"custom_theme_from\":9,\"custom_theme_to\":10,\"custom_theme\":11,\"custom_root_template\":12,\"meta_title\":13,\"meta_keywords\":14,\"meta_description\":15,\"actions\":16}}}','2022-08-22 07:56:44','2022-08-22 07:56:44'),(43,1,'mageplaza_blog_post_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"post_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"layout\":{\"visible\":true,\"sorting\":false},\"in_rss\":{\"visible\":true,\"sorting\":false},\"allow_comment\":{\"visible\":true,\"sorting\":false},\"enabled\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":false,\"sorting\":false},\"updated_at\":{\"visible\":false,\"sorting\":false},\"publish_date\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"post_id\":1,\"name\":2,\"enabled\":3,\"layout\":4,\"in_rss\":5,\"allow_comment\":6,\"created_at\":7,\"updated_at\":8,\"publish_date\":9,\"actions\":10}},\"value\":\"Default View\"}}}','2022-08-22 14:51:47','2022-08-22 14:51:47'),(44,1,'mageplaza_blog_post_listing','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"post_id\":{\"visible\":true,\"sorting\":\"asc\"},\"name\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"layout\":{\"visible\":true,\"sorting\":false},\"in_rss\":{\"visible\":true,\"sorting\":false},\"allow_comment\":{\"visible\":true,\"sorting\":false},\"enabled\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":false,\"sorting\":false},\"updated_at\":{\"visible\":false,\"sorting\":false},\"publish_date\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"post_id\":1,\"name\":2,\"enabled\":3,\"layout\":4,\"in_rss\":5,\"allow_comment\":6,\"created_at\":7,\"updated_at\":8,\"publish_date\":9,\"actions\":10}}}','2022-08-22 14:51:48','2022-08-22 14:51:48'),(45,1,'cms_block_listing','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"block_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"block_id\":1,\"title\":2,\"identifier\":3,\"store_id\":4,\"is_active\":5,\"creation_time\":6,\"update_time\":7,\"actions\":8}},\"value\":\"Default View\"}}}','2022-08-23 08:05:08','2022-08-23 08:05:08'),(46,1,'cms_block_listing','current',0,NULL,'{\"current\":{\"search\":{\"value\":\"\"},\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"block_id\":{\"visible\":true,\"sorting\":\"asc\"},\"title\":{\"visible\":true,\"sorting\":false},\"identifier\":{\"visible\":true,\"sorting\":false},\"store_id\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"is_active\":{\"visible\":true,\"sorting\":false},\"creation_time\":{\"visible\":true,\"sorting\":false},\"update_time\":{\"visible\":true,\"sorting\":false}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"block_id\":1,\"title\":2,\"identifier\":3,\"store_id\":4,\"is_active\":5,\"creation_time\":6,\"update_time\":7,\"actions\":8}}}','2022-08-23 08:05:09','2022-08-23 08:05:09'),(47,1,'mpsmtp_emails_log_grid','default',1,'Default View','{\"views\":{\"default\":{\"label\":\"Default View\",\"index\":\"default\",\"editable\":false,\"data\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":1,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"id\":{\"visible\":true,\"sorting\":false},\"subject\":{\"visible\":true,\"sorting\":false},\"sender\":{\"visible\":true,\"sorting\":false},\"recipient\":{\"visible\":true,\"sorting\":false},\"cc\":{\"visible\":false,\"sorting\":false},\"bcc\":{\"visible\":false,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"id\":1,\"subject\":2,\"sender\":3,\"recipient\":4,\"cc\":5,\"bcc\":6,\"status\":7,\"created_at\":8,\"actions\":9}},\"value\":\"Default View\"}}}','2022-09-07 10:30:23','2022-09-07 10:30:23'),(48,1,'mpsmtp_emails_log_grid','current',0,NULL,'{\"current\":{\"filters\":{\"applied\":{\"placeholder\":true}},\"paging\":{\"pageSize\":20,\"current\":2,\"options\":{\"20\":{\"value\":20,\"label\":20},\"30\":{\"value\":30,\"label\":30},\"50\":{\"value\":50,\"label\":50},\"100\":{\"value\":100,\"label\":100},\"200\":{\"value\":200,\"label\":200}},\"value\":20},\"columns\":{\"id\":{\"visible\":true,\"sorting\":false},\"subject\":{\"visible\":true,\"sorting\":false},\"sender\":{\"visible\":true,\"sorting\":false},\"recipient\":{\"visible\":true,\"sorting\":false},\"cc\":{\"visible\":false,\"sorting\":false},\"bcc\":{\"visible\":false,\"sorting\":false},\"ids\":{\"visible\":true,\"sorting\":false},\"status\":{\"visible\":true,\"sorting\":false},\"actions\":{\"visible\":true,\"sorting\":false},\"created_at\":{\"visible\":true,\"sorting\":\"desc\"}},\"displayMode\":\"grid\",\"positions\":{\"ids\":0,\"id\":1,\"subject\":2,\"sender\":3,\"recipient\":4,\"cc\":5,\"bcc\":6,\"status\":7,\"created_at\":8,\"actions\":9}}}','2022-09-07 10:30:24','2022-09-07 10:30:57');
/*!40000 ALTER TABLE `ui_bookmark` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `url_rewrite`
--

DROP TABLE IF EXISTS `url_rewrite`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `url_rewrite` (
  `url_rewrite_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rewrite ID',
  `entity_type` varchar(32) NOT NULL COMMENT 'Entity type code',
  `entity_id` int(10) unsigned NOT NULL COMMENT 'Entity ID',
  `request_path` varchar(255) DEFAULT NULL COMMENT 'Request Path',
  `target_path` varchar(255) DEFAULT NULL COMMENT 'Target Path',
  `redirect_type` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Redirect Type',
  `store_id` smallint(5) unsigned NOT NULL COMMENT 'Store ID',
  `description` varchar(255) DEFAULT NULL COMMENT 'Description',
  `is_autogenerated` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is rewrite generated automatically flag',
  `metadata` varchar(255) DEFAULT NULL COMMENT 'Meta data for url rewrite',
  PRIMARY KEY (`url_rewrite_id`),
  UNIQUE KEY `URL_REWRITE_REQUEST_PATH_STORE_ID` (`request_path`,`store_id`),
  KEY `URL_REWRITE_TARGET_PATH` (`target_path`),
  KEY `URL_REWRITE_STORE_ID_ENTITY_ID` (`store_id`,`entity_id`),
  KEY `URL_REWRITE_ENTITY_ID` (`entity_id`),
  KEY `URL_REWRITE_IS_AUTOGENERATED_METADATA` (`is_autogenerated`,`metadata`)
) ENGINE=InnoDB AUTO_INCREMENT=1202 DEFAULT CHARSET=utf8 COMMENT='Url Rewrites';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `url_rewrite`
--

LOCK TABLES `url_rewrite` WRITE;
/*!40000 ALTER TABLE `url_rewrite` DISABLE KEYS */;
INSERT INTO `url_rewrite` VALUES (1,'cms-page',1,'no-route','cms/page/view/page_id/1',0,1,NULL,1,NULL),(2,'cms-page',2,'home','cms/page/view/page_id/2',0,1,NULL,1,NULL),(3,'cms-page',3,'enable-cookies','cms/page/view/page_id/3',0,1,NULL,1,NULL),(4,'cms-page',4,'privacy-policy-cookie-restriction-mode','cms/page/view/page_id/4',0,1,NULL,1,NULL),(5,'category',3,'alimentari.html','catalog/category/view/id/3',0,1,NULL,1,NULL),(6,'category',4,'alimentari/consigli-e-promozioni.html','catalog/category/view/id/4',0,1,NULL,1,NULL),(7,'category',5,'alimentari/consigli-e-promozioni/best-sellers.html','catalog/category/view/id/5',0,1,NULL,1,NULL),(8,'category',6,'alimentari/consigli-e-promozioni/marchio-trentino.html','catalog/category/view/id/6',0,1,NULL,1,NULL),(9,'category',7,'alimentari/consigli-e-promozioni/promozioni.html','catalog/category/view/id/7',0,1,NULL,1,NULL),(10,'category',8,'alimentari/consigli-e-promozioni/selezioni-del-mese.html','catalog/category/view/id/8',0,1,NULL,1,NULL),(11,'category',9,'alimentari/consigli-e-promozioni/altre-selezioni.html','catalog/category/view/id/9',0,1,NULL,1,NULL),(12,'category',10,'alimentari/consigli-e-promozioni/ricette.html','catalog/category/view/id/10',0,1,NULL,1,NULL),(13,'category',11,'alimentari/formaggi-e-lattici.html','catalog/category/view/id/11',0,1,NULL,1,NULL),(14,'category',12,'alimentari/formaggi-e-lattici/formaggi.html','catalog/category/view/id/12',0,1,NULL,1,NULL),(15,'category',13,'alimentari/formaggi-e-lattici/lattici-yogurt.html','catalog/category/view/id/13',0,1,NULL,1,NULL),(16,'category',14,'alimentari/formaggi-e-lattici/lattici-yogurt/latte.html','catalog/category/view/id/14',0,1,NULL,1,NULL),(17,'category',15,'alimentari/formaggi-e-lattici/lattici-yogurt/mozzarelle.html','catalog/category/view/id/15',0,1,NULL,1,NULL),(18,'category',16,'alimentari/formaggi-e-lattici/lattici-yogurt/yogurt.html','catalog/category/view/id/16',0,1,NULL,1,NULL),(19,'category',17,'alimentari/carni-e-salumi.html','catalog/category/view/id/17',0,1,NULL,1,NULL),(20,'category',18,'alimentari/carni-e-salumi/salumi.html','catalog/category/view/id/18',0,1,NULL,1,NULL),(21,'category',19,'alimentari/carni-e-salumi/carni.html','catalog/category/view/id/19',0,1,NULL,1,NULL),(22,'category',20,'alimentari/carni-e-salumi/carni/carne-salada.html','catalog/category/view/id/20',0,1,NULL,1,NULL),(23,'category',21,'alimentari/carni-e-salumi/carni/carne-fumada.html','catalog/category/view/id/21',0,1,NULL,1,NULL),(24,'category',22,'alimentari/carni-e-salumi/carni/carne-salmistrata.html','catalog/category/view/id/22',0,1,NULL,1,NULL),(25,'category',23,'alimentari/carni-e-salumi/carni/tagli-di-carne.html','catalog/category/view/id/23',0,1,NULL,1,NULL),(26,'category',24,'alimentari/frutta-e-verdura.html','catalog/category/view/id/24',0,1,NULL,1,NULL),(27,'category',25,'alimentari/frutta-e-verdura/frutta.html','catalog/category/view/id/25',0,1,NULL,1,NULL),(28,'category',26,'alimentari/frutta-e-verdura/verdura.html','catalog/category/view/id/26',0,1,NULL,1,NULL),(29,'category',27,'alimentari/pesce.html','catalog/category/view/id/27',0,1,NULL,1,NULL),(30,'category',28,'alimentari/pesce/trota.html','catalog/category/view/id/28',0,1,NULL,1,NULL),(31,'category',29,'alimentari/pesce/salmerino.html','catalog/category/view/id/29',0,1,NULL,1,NULL),(32,'category',30,'alimentari/pane-pasta-farine.html','catalog/category/view/id/30',0,1,NULL,1,NULL),(33,'category',31,'alimentari/pane-pasta-farine/farine.html','catalog/category/view/id/31',0,1,NULL,1,NULL),(34,'category',32,'alimentari/pane-pasta-farine/pasta.html','catalog/category/view/id/32',0,1,NULL,1,NULL),(35,'category',33,'alimentari/pane-pasta-farine/pane-e-derivati.html','catalog/category/view/id/33',0,1,NULL,1,NULL),(36,'category',34,'alimentari/dispensa.html','catalog/category/view/id/34',0,1,NULL,1,NULL),(37,'category',35,'alimentari/dispensa/olio-aceto-spezie.html','catalog/category/view/id/35',0,1,NULL,1,NULL),(38,'category',36,'alimentari/dispensa/passate-sughi-conserve-e-salse.html','catalog/category/view/id/36',0,1,NULL,1,NULL),(39,'category',37,'alimentari/dolci-e-snack.html','catalog/category/view/id/37',0,1,NULL,1,NULL),(40,'category',38,'alimentari/dolci-e-snack/marmellate.html','catalog/category/view/id/38',0,1,NULL,1,NULL),(41,'category',39,'alimentari/dolci-e-snack/pasticceria-e-biscotti.html','catalog/category/view/id/39',0,1,NULL,1,NULL),(42,'category',40,'alimentari/dolci-e-snack/snack.html','catalog/category/view/id/40',0,1,NULL,1,NULL),(43,'category',41,'alimentari/miele-e-tisane.html','catalog/category/view/id/41',0,1,NULL,1,NULL),(44,'category',42,'alimentari/miele-e-tisane/marmellate.html','catalog/category/view/id/42',0,1,NULL,1,NULL),(45,'category',43,'alimentari/miele-e-tisane/tisane.html','catalog/category/view/id/43',0,1,NULL,1,NULL),(46,'category',44,'alimentari/miele-e-tisane/caffe.html','catalog/category/view/id/44',0,1,NULL,1,NULL),(47,'category',45,'alimentari/vino.html','catalog/category/view/id/45',0,1,NULL,1,NULL),(48,'category',46,'alimentari/vino/vino-rosso-e-rosato.html','catalog/category/view/id/46',0,1,NULL,1,NULL),(49,'category',47,'alimentari/vino/vino-bianco.html','catalog/category/view/id/47',0,1,NULL,1,NULL),(50,'category',48,'alimentari/vino/bollicine.html','catalog/category/view/id/48',0,1,NULL,1,NULL),(52,'category',50,'alimentari/birra-sidro-e-bevande.html','catalog/category/view/id/50',0,1,NULL,1,NULL),(53,'category',51,'alimentari/birra-sidro-e-bevande/birra-chiara.html','catalog/category/view/id/51',0,1,NULL,1,NULL),(54,'category',52,'alimentari/birra-sidro-e-bevande/birra-ambrata.html','catalog/category/view/id/52',0,1,NULL,1,NULL),(55,'category',53,'alimentari/birra-sidro-e-bevande/birra-scura.html','catalog/category/view/id/53',0,1,NULL,1,NULL),(56,'category',54,'alimentari/birra-sidro-e-bevande/sidro.html','catalog/category/view/id/54',0,1,NULL,1,NULL),(57,'category',55,'alimentari/birra-sidro-e-bevande/succhi.html','catalog/category/view/id/55',0,1,NULL,1,NULL),(58,'category',56,'alimentari/liquori-e-distillati.html','catalog/category/view/id/56',0,1,NULL,1,NULL),(59,'category',57,'alimentari/liquori-e-distillati/grappa.html','catalog/category/view/id/57',0,1,NULL,1,NULL),(60,'category',58,'alimentari/liquori-e-distillati/liquori.html','catalog/category/view/id/58',0,1,NULL,1,NULL),(76,'category',74,'prodotti-del-territorio.html','catalog/category/view/id/74',0,1,NULL,1,NULL),(77,'category',75,'prodotti-del-territorio/arredamento.html','catalog/category/view/id/75',0,1,NULL,1,NULL),(78,'category',76,'prodotti-del-territorio/prodotti-termali.html','catalog/category/view/id/76',0,1,NULL,1,NULL),(79,'category',77,'prodotti-del-territorio/abbigliamento.html','catalog/category/view/id/77',0,1,NULL,1,NULL),(80,'category',78,'prodotti-del-territorio/sport.html','catalog/category/view/id/78',0,1,NULL,1,NULL),(81,'category',79,'prodotti-del-territorio/artigianato-artistico.html','catalog/category/view/id/79',0,1,NULL,1,NULL),(84,'product',2,'primo-prodotto-delta-informatica.html','catalog/product/view/id/2',0,1,NULL,1,NULL),(85,'product',2,'alimentari/vino/primo-prodotto-delta-informatica.html','catalog/product/view/id/2/category/45',0,1,NULL,1,'{\"category_id\":\"45\"}'),(86,'product',2,'alimentari/primo-prodotto-delta-informatica.html','catalog/product/view/id/2/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(90,'category',49,'alimentari/vino/vini-dolci-e-liquorosi.html','catalog/category/view/id/49',0,1,NULL,1,NULL),(91,'category',49,'alimentari/vino/vini-dolci-e-luiiquorosi.html','alimentari/vino/vini-dolci-e-liquorosi.html',301,1,NULL,0,NULL),(92,'cms-page',5,'termini-e-condizioni-del-servizio','cms/page/view/page_id/5',0,1,NULL,1,NULL),(93,'product',4,'costata-di-manzo-1-federazione-trentina-della-cooperazione.html','catalog/product/view/id/4',0,1,NULL,1,NULL),(94,'product',4,'alimentari/carni-e-salumi/costata-di-manzo-1-federazione-trentina-della-cooperazione.html','catalog/product/view/id/4/category/17',0,1,NULL,1,'{\"category_id\":\"17\"}'),(95,'product',4,'alimentari/costata-di-manzo-1-federazione-trentina-della-cooperazione.html','catalog/product/view/id/4/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(101,'product',5,'prodotto-1-partner-prova.html','catalog/product/view/id/5',0,1,NULL,1,NULL),(102,'product',5,'prodotti-del-territorio/prodotto-1-partner-prova.html','catalog/product/view/id/5/category/74',0,1,NULL,1,'{\"category_id\":\"74\"}'),(113,'product',8,'vino-di-prova-delta-informatica.html','catalog/product/view/id/8',0,1,NULL,1,NULL),(114,'product',8,'alimentari/vino-di-prova-delta-informatica.html','catalog/product/view/id/8/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(115,'product',8,'prodotti-del-territorio/vino-di-prova-delta-informatica.html','catalog/product/view/id/8/category/74',0,1,NULL,1,'{\"category_id\":\"74\"}'),(274,'category',59,'prodotti-e-territori.html','catalog/category/view/id/59',0,1,NULL,1,NULL),(275,'category',60,'prodotti-e-territori/val-di-sole.html','catalog/category/view/id/60',0,1,NULL,1,NULL),(276,'category',60,'alimentari/prodotti-e-territori/val-di-sole.html','prodotti-e-territori/val-di-sole.html',301,1,NULL,0,NULL),(277,'category',61,'prodotti-e-territori/val-di-non.html','catalog/category/view/id/61',0,1,NULL,1,NULL),(278,'category',61,'alimentari/prodotti-e-territori/val-di-non.html','prodotti-e-territori/val-di-non.html',301,1,NULL,0,NULL),(279,'category',62,'prodotti-e-territori/val-di-fiemme.html','catalog/category/view/id/62',0,1,NULL,1,NULL),(280,'category',62,'alimentari/prodotti-e-territori/val-di-fiemme.html','prodotti-e-territori/val-di-fiemme.html',301,1,NULL,0,NULL),(281,'category',63,'prodotti-e-territori/val-di-fassa.html','catalog/category/view/id/63',0,1,NULL,1,NULL),(282,'category',63,'alimentari/prodotti-e-territori/val-di-fassa.html','prodotti-e-territori/val-di-fassa.html',301,1,NULL,0,NULL),(283,'category',64,'prodotti-e-territori/garda-trentino-e-valle-di-ledro.html','catalog/category/view/id/64',0,1,NULL,1,NULL),(284,'category',64,'alimentari/prodotti-e-territori/garda-trentino-e-valle-di-ledro.html','prodotti-e-territori/garda-trentino-e-valle-di-ledro.html',301,1,NULL,0,NULL),(285,'category',65,'prodotti-e-territori/rovereto-e-vallagarina.html','catalog/category/view/id/65',0,1,NULL,1,NULL),(286,'category',65,'alimentari/prodotti-e-territori/rovereto-e-vallagarina.html','prodotti-e-territori/rovereto-e-vallagarina.html',301,1,NULL,0,NULL),(287,'category',66,'prodotti-e-territori/trento-e-monte-bondone.html','catalog/category/view/id/66',0,1,NULL,1,NULL),(288,'category',66,'alimentari/prodotti-e-territori/trento-e-monte-bondone.html','prodotti-e-territori/trento-e-monte-bondone.html',301,1,NULL,0,NULL),(289,'category',67,'prodotti-e-territori/rotaliana-e-paganella.html','catalog/category/view/id/67',0,1,NULL,1,NULL),(290,'category',67,'alimentari/prodotti-e-territori/rotaliana-e-paganella.html','prodotti-e-territori/rotaliana-e-paganella.html',301,1,NULL,0,NULL),(291,'category',68,'prodotti-e-territori/valsugana.html','catalog/category/view/id/68',0,1,NULL,1,NULL),(292,'category',68,'alimentari/prodotti-e-territori/valsugana.html','prodotti-e-territori/valsugana.html',301,1,NULL,0,NULL),(293,'category',69,'prodotti-e-territori/primiero.html','catalog/category/view/id/69',0,1,NULL,1,NULL),(294,'category',69,'alimentari/prodotti-e-territori/primiero.html','prodotti-e-territori/primiero.html',301,1,NULL,0,NULL),(295,'category',70,'prodotti-e-territori/altopiano-di-pine-e-valle-di-cembra.html','catalog/category/view/id/70',0,1,NULL,1,NULL),(296,'category',70,'alimentari/prodotti-e-territori/altopiano-di-pine-e-valle-di-cembra.html','prodotti-e-territori/altopiano-di-pine-e-valle-di-cembra.html',301,1,NULL,0,NULL),(297,'category',71,'prodotti-e-territori/giudicarie-e-rendena.html','catalog/category/view/id/71',0,1,NULL,1,NULL),(298,'category',71,'alimentari/prodotti-e-territori/giudicarie-e-rendena.html','prodotti-e-territori/giudicarie-e-rendena.html',301,1,NULL,0,NULL),(299,'category',72,'prodotti-e-territori/altipiani-cimbri.html','catalog/category/view/id/72',0,1,NULL,1,NULL),(300,'category',72,'alimentari/prodotti-e-territori/altipiani-cimbri.html','prodotti-e-territori/altipiani-cimbri.html',301,1,NULL,0,NULL),(301,'category',73,'prodotti-e-territori/valle-dei-laghi.html','catalog/category/view/id/73',0,1,NULL,1,NULL),(302,'category',73,'alimentari/prodotti-e-territori/valle-dei-laghi.html','prodotti-e-territori/valle-dei-laghi.html',301,1,NULL,0,NULL),(303,'category',59,'alimentari/prodotti-e-territori.html','prodotti-e-territori.html',301,1,NULL,0,NULL),(304,'product',6,'test-1-federazione-trentina-della-cooperazione.html','catalog/product/view/id/6',0,1,NULL,1,NULL),(305,'product',6,'alimentari/vino/test-1-federazione-trentina-della-cooperazione.html','catalog/product/view/id/6/category/45',0,1,NULL,1,'{\"category_id\":\"45\"}'),(306,'product',6,'prodotti-e-territori/val-di-non/test-1-federazione-trentina-della-cooperazione.html','catalog/product/view/id/6/category/61',0,1,NULL,1,'{\"category_id\":\"61\"}'),(307,'product',6,'alimentari/test-1-federazione-trentina-della-cooperazione.html','catalog/product/view/id/6/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(308,'product',6,'prodotti-e-territori/test-1-federazione-trentina-della-cooperazione.html','catalog/product/view/id/6/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(309,'product',7,'melinda-mousse-vendi24.html','catalog/product/view/id/7',0,1,NULL,1,NULL),(310,'product',7,'alimentari/dolci-e-snack/melinda-mousse-vendi24.html','catalog/product/view/id/7/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(311,'product',7,'prodotti-e-territori/val-di-non/melinda-mousse-vendi24.html','catalog/product/view/id/7/category/61',0,1,NULL,1,'{\"category_id\":\"61\"}'),(312,'product',7,'alimentari/melinda-mousse-vendi24.html','catalog/product/view/id/7/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(313,'product',7,'alimentari/dolci-e-snack/snack/melinda-mousse-vendi24.html','catalog/product/view/id/7/category/40',0,1,NULL,1,'{\"category_id\":\"40\"}'),(314,'product',7,'prodotti-e-territori/melinda-mousse-vendi24.html','catalog/product/view/id/7/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(315,'product',9,'rondelle-melamangio-bio-vendi24.html','catalog/product/view/id/9',0,1,NULL,1,NULL),(316,'product',9,'alimentari/rondelle-melamangio-bio-vendi24.html','catalog/product/view/id/9/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(317,'product',9,'alimentari/dolci-e-snack/rondelle-melamangio-bio-vendi24.html','catalog/product/view/id/9/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(318,'product',9,'alimentari/dolci-e-snack/snack/rondelle-melamangio-bio-vendi24.html','catalog/product/view/id/9/category/40',0,1,NULL,1,'{\"category_id\":\"40\"}'),(319,'product',9,'prodotti-e-territori/val-di-non/rondelle-melamangio-bio-vendi24.html','catalog/product/view/id/9/category/61',0,1,NULL,1,'{\"category_id\":\"61\"}'),(320,'product',9,'prodotti-e-territori/rondelle-melamangio-bio-vendi24.html','catalog/product/view/id/9/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(321,'product',10,'bastoncini-melamangio-vendi24.html','catalog/product/view/id/10',0,1,NULL,1,NULL),(322,'product',10,'alimentari/bastoncini-melamangio-vendi24.html','catalog/product/view/id/10/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(323,'product',10,'alimentari/dolci-e-snack/bastoncini-melamangio-vendi24.html','catalog/product/view/id/10/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(324,'product',10,'alimentari/dolci-e-snack/snack/bastoncini-melamangio-vendi24.html','catalog/product/view/id/10/category/40',0,1,NULL,1,'{\"category_id\":\"40\"}'),(325,'product',10,'prodotti-e-territori/val-di-non/bastoncini-melamangio-vendi24.html','catalog/product/view/id/10/category/61',0,1,NULL,1,'{\"category_id\":\"61\"}'),(326,'product',10,'prodotti-e-territori/bastoncini-melamangio-vendi24.html','catalog/product/view/id/10/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(327,'product',11,'glassa-all-aceto-di-mele-biologico-vendi24.html','catalog/product/view/id/11',0,1,NULL,1,NULL),(328,'product',11,'alimentari/glassa-all-aceto-di-mele-biologico-vendi24.html','catalog/product/view/id/11/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(329,'product',11,'alimentari/dispensa/glassa-all-aceto-di-mele-biologico-vendi24.html','catalog/product/view/id/11/category/34',0,1,NULL,1,'{\"category_id\":\"34\"}'),(330,'product',11,'alimentari/dispensa/olio-aceto-spezie/glassa-all-aceto-di-mele-biologico-vendi24.html','catalog/product/view/id/11/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(331,'product',11,'prodotti-e-territori/val-di-non/glassa-all-aceto-di-mele-biologico-vendi24.html','catalog/product/view/id/11/category/61',0,1,NULL,1,'{\"category_id\":\"61\"}'),(332,'product',11,'prodotti-e-territori/glassa-all-aceto-di-mele-biologico-vendi24.html','catalog/product/view/id/11/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(333,'product',12,'aceto-di-mele-vendi24.html','catalog/product/view/id/12',0,1,NULL,1,NULL),(334,'product',12,'alimentari/aceto-di-mele-vendi24.html','catalog/product/view/id/12/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(335,'product',12,'alimentari/dispensa/aceto-di-mele-vendi24.html','catalog/product/view/id/12/category/34',0,1,NULL,1,'{\"category_id\":\"34\"}'),(336,'product',12,'alimentari/dispensa/olio-aceto-spezie/aceto-di-mele-vendi24.html','catalog/product/view/id/12/category/35',0,1,NULL,1,'{\"category_id\":\"35\"}'),(337,'product',12,'prodotti-e-territori/val-di-non/aceto-di-mele-vendi24.html','catalog/product/view/id/12/category/61',0,1,NULL,1,'{\"category_id\":\"61\"}'),(338,'product',12,'prodotti-e-territori/aceto-di-mele-vendi24.html','catalog/product/view/id/12/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(339,'product',13,'piu-che-mela-100-mela-vendi24.html','catalog/product/view/id/13',0,1,NULL,1,NULL),(340,'product',13,'alimentari/piu-che-mela-100-mela-vendi24.html','catalog/product/view/id/13/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(341,'product',13,'alimentari/dolci-e-snack/piu-che-mela-100-mela-vendi24.html','catalog/product/view/id/13/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(342,'product',13,'alimentari/dolci-e-snack/snack/piu-che-mela-100-mela-vendi24.html','catalog/product/view/id/13/category/40',0,1,NULL,1,'{\"category_id\":\"40\"}'),(343,'product',13,'prodotti-e-territori/val-di-non/piu-che-mela-100-mela-vendi24.html','catalog/product/view/id/13/category/61',0,1,NULL,1,'{\"category_id\":\"61\"}'),(344,'product',13,'prodotti-e-territori/piu-che-mela-100-mela-vendi24.html','catalog/product/view/id/13/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(345,'product',14,'tenero-snack-melamangio-melinda-vendi24.html','catalog/product/view/id/14',0,1,NULL,1,NULL),(346,'product',14,'alimentari/tenero-snack-melamangio-melinda-vendi24.html','catalog/product/view/id/14/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(347,'product',14,'alimentari/dolci-e-snack/tenero-snack-melamangio-melinda-vendi24.html','catalog/product/view/id/14/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(348,'product',14,'alimentari/dolci-e-snack/snack/tenero-snack-melamangio-melinda-vendi24.html','catalog/product/view/id/14/category/40',0,1,NULL,1,'{\"category_id\":\"40\"}'),(349,'product',14,'prodotti-e-territori/val-di-non/tenero-snack-melamangio-melinda-vendi24.html','catalog/product/view/id/14/category/61',0,1,NULL,1,'{\"category_id\":\"61\"}'),(350,'product',14,'prodotti-e-territori/tenero-snack-melamangio-melinda-vendi24.html','catalog/product/view/id/14/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(375,'product',49,'trentingrana1kg-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/49',0,1,NULL,1,NULL),(376,'product',49,'alimentari/trentingrana1kg-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/49/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(377,'product',49,'alimentari/formaggi-e-lattici/trentingrana1kg-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/49/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(378,'product',49,'alimentari/formaggi-e-lattici/formaggi/trentingrana1kg-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/49/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(385,'product',51,'trentingrana250gr-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/51',0,1,NULL,1,NULL),(386,'product',51,'alimentari/trentingrana250gr-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/51/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(387,'product',51,'alimentari/formaggi-e-lattici/trentingrana250gr-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/51/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(388,'product',51,'alimentari/formaggi-e-lattici/formaggi/trentingrana250gr-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/51/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(389,'product',52,'trentingranagrattuggiato-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/52',0,1,NULL,1,NULL),(390,'product',52,'alimentari/trentingranagrattuggiato-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/52/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(391,'product',52,'alimentari/formaggi-e-lattici/trentingranagrattuggiato-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/52/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(392,'product',52,'alimentari/formaggi-e-lattici/formaggi/trentingranagrattuggiato-consorziotrentingrana-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/52/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(393,'product',53,'puzzonedimoenadop-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/53',0,1,NULL,1,NULL),(394,'product',53,'alimentari/puzzonedimoenadop-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/53/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(395,'product',53,'alimentari/formaggi-e-lattici/puzzonedimoenadop-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/53/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(396,'product',53,'alimentari/formaggi-e-lattici/formaggi/puzzonedimoenadop-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/53/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(397,'product',53,'prodotti-e-territori/val-di-fassa/puzzonedimoenadop-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/53/category/63',0,1,NULL,1,'{\"category_id\":\"63\"}'),(398,'product',53,'prodotti-e-territori/puzzonedimoenadop-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/53/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(399,'product',54,'affogatodisabbionara-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/54',0,1,NULL,1,NULL),(400,'product',54,'alimentari/affogatodisabbionara-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/54/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(401,'product',54,'alimentari/formaggi-e-lattici/affogatodisabbionara-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/54/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(402,'product',54,'alimentari/formaggi-e-lattici/formaggi/affogatodisabbionara-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/54/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(403,'product',54,'prodotti-e-territori/rovereto-e-vallagarina/affogatodisabbionara-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/54/category/65',0,1,NULL,1,'{\"category_id\":\"65\"}'),(404,'product',54,'prodotti-e-territori/affogatodisabbionara-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/54/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(405,'product',55,'fontaldicavalese-undefined.html','catalog/product/view/id/55',0,1,NULL,1,NULL),(406,'product',55,'alimentari/fontaldicavalese-undefined.html','catalog/product/view/id/55/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(407,'product',55,'alimentari/formaggi-e-lattici/fontaldicavalese-undefined.html','catalog/product/view/id/55/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(408,'product',55,'alimentari/formaggi-e-lattici/formaggi/fontaldicavalese-undefined.html','catalog/product/view/id/55/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(409,'product',55,'prodotti-e-territori/val-di-fiemme/fontaldicavalese-undefined.html','catalog/product/view/id/55/category/62',0,1,NULL,1,'{\"category_id\":\"62\"}'),(410,'product',55,'prodotti-e-territori/fontaldicavalese-undefined.html','catalog/product/view/id/55/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(411,'product',56,'mezzanotrentinodialtamontagna-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/56',0,1,NULL,1,NULL),(412,'product',56,'alimentari/mezzanotrentinodialtamontagna-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/56/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(413,'product',56,'alimentari/formaggi-e-lattici/mezzanotrentinodialtamontagna-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/56/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(414,'product',56,'alimentari/formaggi-e-lattici/formaggi/mezzanotrentinodialtamontagna-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/56/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(415,'product',56,'prodotti-e-territori/primiero/mezzanotrentinodialtamontagna-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/56/category/69',0,1,NULL,1,'{\"category_id\":\"69\"}'),(416,'product',56,'prodotti-e-territori/mezzanotrentinodialtamontagna-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/56/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(417,'product',57,'vezzenadeltrentino-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/57',0,1,NULL,1,NULL),(418,'product',57,'alimentari/vezzenadeltrentino-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/57/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(419,'product',57,'alimentari/formaggi-e-lattici/vezzenadeltrentino-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/57/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(420,'product',57,'alimentari/formaggi-e-lattici/formaggi/vezzenadeltrentino-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/57/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(421,'product',57,'prodotti-e-territori/rovereto-e-vallagarina/vezzenadeltrentino-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/57/category/65',0,1,NULL,1,'{\"category_id\":\"65\"}'),(422,'product',57,'prodotti-e-territori/vezzenadeltrentino-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/57/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(423,'product',58,'cuordifassa-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/58',0,1,NULL,1,NULL),(424,'product',58,'alimentari/cuordifassa-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/58/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(425,'product',58,'alimentari/formaggi-e-lattici/cuordifassa-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/58/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(426,'product',58,'alimentari/formaggi-e-lattici/formaggi/cuordifassa-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/58/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(427,'product',58,'prodotti-e-territori/val-di-fassa/cuordifassa-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/58/category/63',0,1,NULL,1,'{\"category_id\":\"63\"}'),(428,'product',58,'prodotti-e-territori/cuordifassa-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/58/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(429,'product',59,'primierofresco-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/59',0,1,NULL,1,NULL),(430,'product',59,'alimentari/primierofresco-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/59/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(431,'product',59,'alimentari/formaggi-e-lattici/primierofresco-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/59/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(432,'product',59,'alimentari/formaggi-e-lattici/formaggi/primierofresco-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/59/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(433,'product',59,'prodotti-e-territori/primiero/primierofresco-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/59/category/69',0,1,NULL,1,'{\"category_id\":\"69\"}'),(434,'product',59,'prodotti-e-territori/primierofresco-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/59/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(435,'product',60,'casoletvaldisole-undefined.html','catalog/product/view/id/60',0,1,NULL,1,NULL),(436,'product',60,'alimentari/casoletvaldisole-undefined.html','catalog/product/view/id/60/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(437,'product',60,'alimentari/formaggi-e-lattici/casoletvaldisole-undefined.html','catalog/product/view/id/60/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(438,'product',60,'alimentari/formaggi-e-lattici/formaggi/casoletvaldisole-undefined.html','catalog/product/view/id/60/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(439,'product',60,'prodotti-e-territori/val-di-sole/casoletvaldisole-undefined.html','catalog/product/view/id/60/category/60',0,1,NULL,1,'{\"category_id\":\"60\"}'),(440,'product',60,'prodotti-e-territori/casoletvaldisole-undefined.html','catalog/product/view/id/60/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(441,'product',61,'formaevaldifiemme-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/61',0,1,NULL,1,NULL),(442,'product',61,'alimentari/formaevaldifiemme-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/61/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(443,'product',61,'alimentari/formaggi-e-lattici/formaevaldifiemme-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/61/category/11',0,1,NULL,1,'{\"category_id\":\"11\"}'),(444,'product',61,'alimentari/formaggi-e-lattici/formaggi/formaevaldifiemme-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/61/category/12',0,1,NULL,1,'{\"category_id\":\"12\"}'),(445,'product',61,'prodotti-e-territori/val-di-fiemme/formaevaldifiemme-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/61/category/62',0,1,NULL,1,'{\"category_id\":\"62\"}'),(446,'product',61,'prodotti-e-territori/formaevaldifiemme-gruppoformaggideltrentino-undefined.html','catalog/product/view/id/61/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(741,'product',111,'confetturaextradifragole-sant-orsola-undefined.html','catalog/product/view/id/111',0,1,NULL,1,NULL),(742,'product',111,'alimentari/confetturaextradifragole-sant-orsola-undefined.html','catalog/product/view/id/111/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(743,'product',111,'alimentari/dolci-e-snack/confetturaextradifragole-sant-orsola-undefined.html','catalog/product/view/id/111/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(744,'product',111,'alimentari/dolci-e-snack/marmellate/confetturaextradifragole-sant-orsola-undefined.html','catalog/product/view/id/111/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(745,'product',111,'prodotti-e-territori/valsugana/confetturaextradifragole-sant-orsola-undefined.html','catalog/product/view/id/111/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(746,'product',111,'prodotti-e-territori/confetturaextradifragole-sant-orsola-undefined.html','catalog/product/view/id/111/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(747,'product',112,'confetturaextradilampone-sant-orsola-undefined.html','catalog/product/view/id/112',0,1,NULL,1,NULL),(748,'product',112,'alimentari/confetturaextradilampone-sant-orsola-undefined.html','catalog/product/view/id/112/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(749,'product',112,'alimentari/dolci-e-snack/confetturaextradilampone-sant-orsola-undefined.html','catalog/product/view/id/112/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(750,'product',112,'alimentari/dolci-e-snack/marmellate/confetturaextradilampone-sant-orsola-undefined.html','catalog/product/view/id/112/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(751,'product',112,'prodotti-e-territori/valsugana/confetturaextradilampone-sant-orsola-undefined.html','catalog/product/view/id/112/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(752,'product',112,'prodotti-e-territori/confetturaextradilampone-sant-orsola-undefined.html','catalog/product/view/id/112/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(753,'product',113,'confetturaextradimirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/113',0,1,NULL,1,NULL),(754,'product',113,'alimentari/confetturaextradimirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/113/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(755,'product',113,'alimentari/dolci-e-snack/confetturaextradimirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/113/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(756,'product',113,'alimentari/dolci-e-snack/marmellate/confetturaextradimirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/113/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(757,'product',113,'prodotti-e-territori/valsugana/confetturaextradimirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/113/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(758,'product',113,'prodotti-e-territori/confetturaextradimirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/113/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(759,'product',114,'confetturaextradimistobosco-sant-orsola-undefined.html','catalog/product/view/id/114',0,1,NULL,1,NULL),(760,'product',114,'alimentari/confetturaextradimistobosco-sant-orsola-undefined.html','catalog/product/view/id/114/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(761,'product',114,'alimentari/dolci-e-snack/confetturaextradimistobosco-sant-orsola-undefined.html','catalog/product/view/id/114/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(762,'product',114,'alimentari/dolci-e-snack/marmellate/confetturaextradimistobosco-sant-orsola-undefined.html','catalog/product/view/id/114/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(763,'product',114,'prodotti-e-territori/valsugana/confetturaextradimistobosco-sant-orsola-undefined.html','catalog/product/view/id/114/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(764,'product',114,'prodotti-e-territori/confetturaextradimistobosco-sant-orsola-undefined.html','catalog/product/view/id/114/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(765,'product',115,'confetturaextradimirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/115',0,1,NULL,1,NULL),(766,'product',115,'alimentari/confetturaextradimirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/115/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(767,'product',115,'alimentari/dolci-e-snack/confetturaextradimirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/115/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(768,'product',115,'alimentari/dolci-e-snack/marmellate/confetturaextradimirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/115/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(769,'product',115,'prodotti-e-territori/valsugana/confetturaextradimirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/115/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(770,'product',115,'prodotti-e-territori/confetturaextradimirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/115/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(771,'product',116,'confetturaextradimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/116',0,1,NULL,1,NULL),(772,'product',116,'alimentari/confetturaextradimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/116/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(773,'product',116,'alimentari/dolci-e-snack/confetturaextradimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/116/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(774,'product',116,'alimentari/dolci-e-snack/marmellate/confetturaextradimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/116/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(775,'product',116,'prodotti-e-territori/valsugana/confetturaextradimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/116/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(776,'product',116,'prodotti-e-territori/confetturaextradimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/116/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(777,'product',117,'cremadimarroni-sant-orsola-undefined.html','catalog/product/view/id/117',0,1,NULL,1,NULL),(778,'product',117,'alimentari/cremadimarroni-sant-orsola-undefined.html','catalog/product/view/id/117/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(779,'product',117,'alimentari/dolci-e-snack/cremadimarroni-sant-orsola-undefined.html','catalog/product/view/id/117/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(780,'product',117,'alimentari/dolci-e-snack/marmellate/cremadimarroni-sant-orsola-undefined.html','catalog/product/view/id/117/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(781,'product',117,'prodotti-e-territori/valsugana/cremadimarroni-sant-orsola-undefined.html','catalog/product/view/id/117/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(782,'product',117,'prodotti-e-territori/cremadimarroni-sant-orsola-undefined.html','catalog/product/view/id/117/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(783,'product',118,'confetturaextradirosacanina-sant-orsola-undefined.html','catalog/product/view/id/118',0,1,NULL,1,NULL),(784,'product',118,'alimentari/confetturaextradirosacanina-sant-orsola-undefined.html','catalog/product/view/id/118/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(785,'product',118,'alimentari/dolci-e-snack/confetturaextradirosacanina-sant-orsola-undefined.html','catalog/product/view/id/118/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(786,'product',118,'alimentari/dolci-e-snack/marmellate/confetturaextradirosacanina-sant-orsola-undefined.html','catalog/product/view/id/118/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(787,'product',118,'prodotti-e-territori/valsugana/confetturaextradirosacanina-sant-orsola-undefined.html','catalog/product/view/id/118/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(788,'product',118,'prodotti-e-territori/confetturaextradirosacanina-sant-orsola-undefined.html','catalog/product/view/id/118/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(789,'product',119,'confetturaextradisambuco-sant-orsola-undefined.html','catalog/product/view/id/119',0,1,NULL,1,NULL),(790,'product',119,'alimentari/confetturaextradisambuco-sant-orsola-undefined.html','catalog/product/view/id/119/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(791,'product',119,'alimentari/dolci-e-snack/confetturaextradisambuco-sant-orsola-undefined.html','catalog/product/view/id/119/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(792,'product',119,'alimentari/dolci-e-snack/marmellate/confetturaextradisambuco-sant-orsola-undefined.html','catalog/product/view/id/119/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(793,'product',119,'prodotti-e-territori/valsugana/confetturaextradisambuco-sant-orsola-undefined.html','catalog/product/view/id/119/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(794,'product',119,'prodotti-e-territori/confetturaextradisambuco-sant-orsola-undefined.html','catalog/product/view/id/119/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(795,'product',120,'confetturaextradiciliegietrentine-sant-orsola-undefined.html','catalog/product/view/id/120',0,1,NULL,1,NULL),(796,'product',120,'alimentari/confetturaextradiciliegietrentine-sant-orsola-undefined.html','catalog/product/view/id/120/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(797,'product',120,'alimentari/dolci-e-snack/confetturaextradiciliegietrentine-sant-orsola-undefined.html','catalog/product/view/id/120/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(798,'product',120,'alimentari/dolci-e-snack/marmellate/confetturaextradiciliegietrentine-sant-orsola-undefined.html','catalog/product/view/id/120/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(799,'product',120,'prodotti-e-territori/valsugana/confetturaextradiciliegietrentine-sant-orsola-undefined.html','catalog/product/view/id/120/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(800,'product',120,'prodotti-e-territori/confetturaextradiciliegietrentine-sant-orsola-undefined.html','catalog/product/view/id/120/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(801,'product',121,'sciroppatomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/121',0,1,NULL,1,NULL),(802,'product',121,'alimentari/sciroppatomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/121/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(803,'product',121,'alimentari/dolci-e-snack/sciroppatomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/121/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(804,'product',121,'alimentari/dolci-e-snack/marmellate/sciroppatomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/121/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(805,'product',121,'prodotti-e-territori/valsugana/sciroppatomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/121/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(806,'product',121,'prodotti-e-territori/sciroppatomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/121/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(807,'product',122,'sciroppatomistobosco-sant-orsola-undefined.html','catalog/product/view/id/122',0,1,NULL,1,NULL),(808,'product',122,'alimentari/sciroppatomistobosco-sant-orsola-undefined.html','catalog/product/view/id/122/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(809,'product',122,'alimentari/dolci-e-snack/sciroppatomistobosco-sant-orsola-undefined.html','catalog/product/view/id/122/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(810,'product',122,'alimentari/dolci-e-snack/marmellate/sciroppatomistobosco-sant-orsola-undefined.html','catalog/product/view/id/122/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(811,'product',122,'prodotti-e-territori/valsugana/sciroppatomistobosco-sant-orsola-undefined.html','catalog/product/view/id/122/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(812,'product',122,'prodotti-e-territori/sciroppatomistobosco-sant-orsola-undefined.html','catalog/product/view/id/122/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(813,'product',123,'sciroppatomarroniemiele-sant-orsola-undefined.html','catalog/product/view/id/123',0,1,NULL,1,NULL),(814,'product',123,'alimentari/sciroppatomarroniemiele-sant-orsola-undefined.html','catalog/product/view/id/123/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(815,'product',123,'alimentari/dolci-e-snack/sciroppatomarroniemiele-sant-orsola-undefined.html','catalog/product/view/id/123/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(816,'product',123,'alimentari/dolci-e-snack/marmellate/sciroppatomarroniemiele-sant-orsola-undefined.html','catalog/product/view/id/123/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(817,'product',123,'prodotti-e-territori/valsugana/sciroppatomarroniemiele-sant-orsola-undefined.html','catalog/product/view/id/123/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(818,'product',123,'prodotti-e-territori/sciroppatomarroniemiele-sant-orsola-undefined.html','catalog/product/view/id/123/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(819,'product',124,'succosomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/124',0,1,NULL,1,NULL),(820,'product',124,'alimentari/succosomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/124/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(821,'product',124,'alimentari/dolci-e-snack/succosomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/124/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(822,'product',124,'alimentari/birra-sidro-e-bevande/succhi/succosomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/124/category/55',0,1,NULL,1,'{\"category_id\":\"55\"}'),(823,'product',124,'prodotti-e-territori/valsugana/succosomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/124/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(824,'product',124,'alimentari/birra-sidro-e-bevande/succosomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/124/category/50',0,1,NULL,1,'{\"category_id\":\"50\"}'),(825,'product',124,'prodotti-e-territori/succosomirtillodibosco-sant-orsola-undefined.html','catalog/product/view/id/124/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(826,'product',125,'succosomirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/125',0,1,NULL,1,NULL),(827,'product',125,'alimentari/succosomirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/125/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(828,'product',125,'alimentari/dolci-e-snack/succosomirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/125/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(829,'product',125,'alimentari/birra-sidro-e-bevande/succhi/succosomirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/125/category/55',0,1,NULL,1,'{\"category_id\":\"55\"}'),(830,'product',125,'prodotti-e-territori/valsugana/succosomirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/125/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(831,'product',125,'alimentari/birra-sidro-e-bevande/succosomirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/125/category/50',0,1,NULL,1,'{\"category_id\":\"50\"}'),(832,'product',125,'prodotti-e-territori/succosomirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/125/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(833,'product',126,'succosomirtillodiboscos-zucchero-sant-orsola-undefined.html','catalog/product/view/id/126',0,1,NULL,1,NULL),(834,'product',126,'alimentari/succosomirtillodiboscos-zucchero-sant-orsola-undefined.html','catalog/product/view/id/126/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(835,'product',126,'alimentari/dolci-e-snack/succosomirtillodiboscos-zucchero-sant-orsola-undefined.html','catalog/product/view/id/126/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(836,'product',126,'alimentari/birra-sidro-e-bevande/succhi/succosomirtillodiboscos-zucchero-sant-orsola-undefined.html','catalog/product/view/id/126/category/55',0,1,NULL,1,'{\"category_id\":\"55\"}'),(837,'product',126,'prodotti-e-territori/valsugana/succosomirtillodiboscos-zucchero-sant-orsola-undefined.html','catalog/product/view/id/126/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(838,'product',126,'alimentari/birra-sidro-e-bevande/succosomirtillodiboscos-zucchero-sant-orsola-undefined.html','catalog/product/view/id/126/category/50',0,1,NULL,1,'{\"category_id\":\"50\"}'),(839,'product',126,'prodotti-e-territori/succosomirtillodiboscos-zucchero-sant-orsola-undefined.html','catalog/product/view/id/126/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(840,'product',127,'mostardadiribesrosso-sant-orsola-undefined.html','catalog/product/view/id/127',0,1,NULL,1,NULL),(841,'product',127,'alimentari/mostardadiribesrosso-sant-orsola-undefined.html','catalog/product/view/id/127/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(842,'product',127,'alimentari/dispensa/mostardadiribesrosso-sant-orsola-undefined.html','catalog/product/view/id/127/category/34',0,1,NULL,1,'{\"category_id\":\"34\"}'),(843,'product',127,'alimentari/dispensa/passate-sughi-conserve-e-salse/mostardadiribesrosso-sant-orsola-undefined.html','catalog/product/view/id/127/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(844,'product',127,'prodotti-e-territori/valsugana/mostardadiribesrosso-sant-orsola-undefined.html','catalog/product/view/id/127/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(845,'product',127,'prodotti-e-territori/mostardadiribesrosso-sant-orsola-undefined.html','catalog/product/view/id/127/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(846,'product',128,'mostardadipere-sant-orsola-undefined.html','catalog/product/view/id/128',0,1,NULL,1,NULL),(847,'product',128,'alimentari/mostardadipere-sant-orsola-undefined.html','catalog/product/view/id/128/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(848,'product',128,'alimentari/dispensa/mostardadipere-sant-orsola-undefined.html','catalog/product/view/id/128/category/34',0,1,NULL,1,'{\"category_id\":\"34\"}'),(849,'product',128,'alimentari/dispensa/passate-sughi-conserve-e-salse/mostardadipere-sant-orsola-undefined.html','catalog/product/view/id/128/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(850,'product',128,'prodotti-e-territori/valsugana/mostardadipere-sant-orsola-undefined.html','catalog/product/view/id/128/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(851,'product',128,'prodotti-e-territori/mostardadipere-sant-orsola-undefined.html','catalog/product/view/id/128/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(852,'product',129,'mostardadirosacanina-sant-orsola-undefined.html','catalog/product/view/id/129',0,1,NULL,1,NULL),(853,'product',129,'alimentari/mostardadirosacanina-sant-orsola-undefined.html','catalog/product/view/id/129/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(854,'product',129,'alimentari/dispensa/mostardadirosacanina-sant-orsola-undefined.html','catalog/product/view/id/129/category/34',0,1,NULL,1,'{\"category_id\":\"34\"}'),(855,'product',129,'alimentari/dispensa/passate-sughi-conserve-e-salse/mostardadirosacanina-sant-orsola-undefined.html','catalog/product/view/id/129/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(856,'product',129,'prodotti-e-territori/valsugana/mostardadirosacanina-sant-orsola-undefined.html','catalog/product/view/id/129/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(857,'product',129,'prodotti-e-territori/mostardadirosacanina-sant-orsola-undefined.html','catalog/product/view/id/129/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(858,'product',130,'mostardadimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/130',0,1,NULL,1,NULL),(859,'product',130,'alimentari/mostardadimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/130/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(860,'product',130,'alimentari/dispensa/mostardadimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/130/category/34',0,1,NULL,1,'{\"category_id\":\"34\"}'),(861,'product',130,'alimentari/dispensa/passate-sughi-conserve-e-salse/mostardadimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/130/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(862,'product',130,'prodotti-e-territori/valsugana/mostardadimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/130/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(863,'product',130,'prodotti-e-territori/mostardadimelecotogne-sant-orsola-undefined.html','catalog/product/view/id/130/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(864,'product',131,'salsaagrodolcedimistobosco-sant-orsola-undefined.html','catalog/product/view/id/131',0,1,NULL,1,NULL),(865,'product',131,'alimentari/salsaagrodolcedimistobosco-sant-orsola-undefined.html','catalog/product/view/id/131/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(866,'product',131,'alimentari/dispensa/salsaagrodolcedimistobosco-sant-orsola-undefined.html','catalog/product/view/id/131/category/34',0,1,NULL,1,'{\"category_id\":\"34\"}'),(867,'product',131,'alimentari/dispensa/passate-sughi-conserve-e-salse/salsaagrodolcedimistobosco-sant-orsola-undefined.html','catalog/product/view/id/131/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(868,'product',131,'prodotti-e-territori/valsugana/salsaagrodolcedimistobosco-sant-orsola-undefined.html','catalog/product/view/id/131/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(869,'product',131,'prodotti-e-territori/salsaagrodolcedimistobosco-sant-orsola-undefined.html','catalog/product/view/id/131/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(870,'product',132,'salsamirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/132',0,1,NULL,1,NULL),(871,'product',132,'alimentari/salsamirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/132/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(872,'product',132,'alimentari/dispensa/salsamirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/132/category/34',0,1,NULL,1,'{\"category_id\":\"34\"}'),(873,'product',132,'alimentari/dispensa/passate-sughi-conserve-e-salse/salsamirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/132/category/36',0,1,NULL,1,'{\"category_id\":\"36\"}'),(874,'product',132,'prodotti-e-territori/valsugana/salsamirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/132/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(875,'product',132,'prodotti-e-territori/salsamirtillorosso-sant-orsola-undefined.html','catalog/product/view/id/132/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(876,'product',133,'pureadimelaefragola-sant-orsola-undefined.html','catalog/product/view/id/133',0,1,NULL,1,NULL),(877,'product',133,'alimentari/pureadimelaefragola-sant-orsola-undefined.html','catalog/product/view/id/133/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(878,'product',133,'alimentari/dolci-e-snack/pureadimelaefragola-sant-orsola-undefined.html','catalog/product/view/id/133/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(879,'product',133,'alimentari/birra-sidro-e-bevande/succhi/pureadimelaefragola-sant-orsola-undefined.html','catalog/product/view/id/133/category/55',0,1,NULL,1,'{\"category_id\":\"55\"}'),(880,'product',133,'prodotti-e-territori/valsugana/pureadimelaefragola-sant-orsola-undefined.html','catalog/product/view/id/133/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(881,'product',133,'alimentari/birra-sidro-e-bevande/pureadimelaefragola-sant-orsola-undefined.html','catalog/product/view/id/133/category/50',0,1,NULL,1,'{\"category_id\":\"50\"}'),(882,'product',133,'prodotti-e-territori/pureadimelaefragola-sant-orsola-undefined.html','catalog/product/view/id/133/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(883,'product',134,'pureadimelaemirtillo-sant-orsola-undefined.html','catalog/product/view/id/134',0,1,NULL,1,NULL),(884,'product',134,'alimentari/pureadimelaemirtillo-sant-orsola-undefined.html','catalog/product/view/id/134/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(885,'product',134,'alimentari/dolci-e-snack/pureadimelaemirtillo-sant-orsola-undefined.html','catalog/product/view/id/134/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(886,'product',134,'alimentari/birra-sidro-e-bevande/succhi/pureadimelaemirtillo-sant-orsola-undefined.html','catalog/product/view/id/134/category/55',0,1,NULL,1,'{\"category_id\":\"55\"}'),(887,'product',134,'prodotti-e-territori/valsugana/pureadimelaemirtillo-sant-orsola-undefined.html','catalog/product/view/id/134/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(888,'product',134,'alimentari/birra-sidro-e-bevande/pureadimelaemirtillo-sant-orsola-undefined.html','catalog/product/view/id/134/category/50',0,1,NULL,1,'{\"category_id\":\"50\"}'),(889,'product',134,'prodotti-e-territori/pureadimelaemirtillo-sant-orsola-undefined.html','catalog/product/view/id/134/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(1046,'product',173,'bocconcinidisalmerinomarinato-astro-undefined.html','catalog/product/view/id/173',0,1,NULL,1,NULL),(1047,'product',173,'alimentari/bocconcinidisalmerinomarinato-astro-undefined.html','catalog/product/view/id/173/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1048,'product',173,'alimentari/pesce/bocconcinidisalmerinomarinato-astro-undefined.html','catalog/product/view/id/173/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(1049,'product',173,'alimentari/pesce/salmerino/bocconcinidisalmerinomarinato-astro-undefined.html','catalog/product/view/id/173/category/29',0,1,NULL,1,'{\"category_id\":\"29\"}'),(1050,'product',174,'trotainsaor-astro-undefined.html','catalog/product/view/id/174',0,1,NULL,1,NULL),(1051,'product',174,'alimentari/trotainsaor-astro-undefined.html','catalog/product/view/id/174/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1052,'product',174,'alimentari/pesce/trotainsaor-astro-undefined.html','catalog/product/view/id/174/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(1053,'product',174,'alimentari/pesce/trota/trotainsaor-astro-undefined.html','catalog/product/view/id/174/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(1054,'product',175,'filettoditrotamarinata-astro-undefined.html','catalog/product/view/id/175',0,1,NULL,1,NULL),(1055,'product',175,'alimentari/filettoditrotamarinata-astro-undefined.html','catalog/product/view/id/175/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1056,'product',175,'alimentari/pesce/filettoditrotamarinata-astro-undefined.html','catalog/product/view/id/175/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(1057,'product',175,'alimentari/pesce/trota/filettoditrotamarinata-astro-undefined.html','catalog/product/view/id/175/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(1058,'product',176,'uovaditrota-astro-undefined.html','catalog/product/view/id/176',0,1,NULL,1,NULL),(1059,'product',176,'alimentari/uovaditrota-astro-undefined.html','catalog/product/view/id/176/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1060,'product',176,'alimentari/pesce/uovaditrota-astro-undefined.html','catalog/product/view/id/176/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(1061,'product',176,'alimentari/pesce/trota/uovaditrota-astro-undefined.html','catalog/product/view/id/176/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(1062,'product',177,'gocceditrota-astro-undefined.html','catalog/product/view/id/177',0,1,NULL,1,NULL),(1063,'product',177,'alimentari/gocceditrota-astro-undefined.html','catalog/product/view/id/177/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1064,'product',177,'alimentari/pesce/gocceditrota-astro-undefined.html','catalog/product/view/id/177/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(1065,'product',177,'alimentari/pesce/trota/gocceditrota-astro-undefined.html','catalog/product/view/id/177/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(1066,'product',178,'trotasalmonataaffumicatadeliziosa-astro-undefined.html','catalog/product/view/id/178',0,1,NULL,1,NULL),(1067,'product',178,'alimentari/trotasalmonataaffumicatadeliziosa-astro-undefined.html','catalog/product/view/id/178/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1068,'product',178,'alimentari/pesce/trotasalmonataaffumicatadeliziosa-astro-undefined.html','catalog/product/view/id/178/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(1069,'product',178,'alimentari/pesce/trota/trotasalmonataaffumicatadeliziosa-astro-undefined.html','catalog/product/view/id/178/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(1070,'product',179,'trotasalmonataaffumicataclassica-astro-undefined.html','catalog/product/view/id/179',0,1,NULL,1,NULL),(1071,'product',179,'alimentari/trotasalmonataaffumicataclassica-astro-undefined.html','catalog/product/view/id/179/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1072,'product',179,'alimentari/pesce/trotasalmonataaffumicataclassica-astro-undefined.html','catalog/product/view/id/179/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(1073,'product',179,'alimentari/pesce/trota/trotasalmonataaffumicataclassica-astro-undefined.html','catalog/product/view/id/179/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(1074,'product',180,'trotasalmonataaffumicatarustica-astro-undefined.html','catalog/product/view/id/180',0,1,NULL,1,NULL),(1075,'product',180,'alimentari/trotasalmonataaffumicatarustica-astro-undefined.html','catalog/product/view/id/180/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1076,'product',180,'alimentari/pesce/trotasalmonataaffumicatarustica-astro-undefined.html','catalog/product/view/id/180/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(1077,'product',180,'alimentari/pesce/trota/trotasalmonataaffumicatarustica-astro-undefined.html','catalog/product/view/id/180/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(1078,'product',181,'trotasalmonataaffumicataaffettata-astro-undefined.html','catalog/product/view/id/181',0,1,NULL,1,NULL),(1079,'product',181,'alimentari/trotasalmonataaffumicataaffettata-astro-undefined.html','catalog/product/view/id/181/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1080,'product',181,'alimentari/pesce/trotasalmonataaffumicataaffettata-astro-undefined.html','catalog/product/view/id/181/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(1081,'product',181,'alimentari/pesce/trota/trotasalmonataaffumicataaffettata-astro-undefined.html','catalog/product/view/id/181/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(1082,'product',182,'salmerinoalpinoaffumicato-astro-undefined.html','catalog/product/view/id/182',0,1,NULL,1,NULL),(1083,'product',182,'alimentari/salmerinoalpinoaffumicato-astro-undefined.html','catalog/product/view/id/182/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1084,'product',182,'alimentari/pesce/salmerinoalpinoaffumicato-astro-undefined.html','catalog/product/view/id/182/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(1085,'product',182,'alimentari/pesce/salmerino/salmerinoalpinoaffumicato-astro-undefined.html','catalog/product/view/id/182/category/29',0,1,NULL,1,'{\"category_id\":\"29\"}'),(1086,'product',183,'bocconciniditrotamarinata-astro-undefined.html','catalog/product/view/id/183',0,1,NULL,1,NULL),(1087,'product',183,'alimentari/bocconciniditrotamarinata-astro-undefined.html','catalog/product/view/id/183/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1088,'product',183,'alimentari/pesce/bocconciniditrotamarinata-astro-undefined.html','catalog/product/view/id/183/category/27',0,1,NULL,1,'{\"category_id\":\"27\"}'),(1089,'product',183,'alimentari/pesce/trota/bocconciniditrotamarinata-astro-undefined.html','catalog/product/view/id/183/category/28',0,1,NULL,1,'{\"category_id\":\"28\"}'),(1130,'product',194,'marzeminoetichettaverde-cantinad-isera-undefined.html','catalog/product/view/id/194',0,1,NULL,1,NULL),(1131,'product',194,'alimentari/marzeminoetichettaverde-cantinad-isera-undefined.html','catalog/product/view/id/194/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1132,'product',194,'alimentari/vino/marzeminoetichettaverde-cantinad-isera-undefined.html','catalog/product/view/id/194/category/45',0,1,NULL,1,'{\"category_id\":\"45\"}'),(1133,'product',194,'alimentari/vino/vino-rosso-e-rosato/marzeminoetichettaverde-cantinad-isera-undefined.html','catalog/product/view/id/194/category/46',0,1,NULL,1,'{\"category_id\":\"46\"}'),(1134,'product',194,'prodotti-e-territori/rovereto-e-vallagarina/marzeminoetichettaverde-cantinad-isera-undefined.html','catalog/product/view/id/194/category/65',0,1,NULL,1,'{\"category_id\":\"65\"}'),(1135,'product',194,'prodotti-e-territori/marzeminoetichettaverde-cantinad-isera-undefined.html','catalog/product/view/id/194/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(1136,'product',195,'trentodoc1907-cantinad-isera-undefined.html','catalog/product/view/id/195',0,1,NULL,1,NULL),(1137,'product',195,'alimentari/trentodoc1907-cantinad-isera-undefined.html','catalog/product/view/id/195/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1138,'product',195,'alimentari/vino/trentodoc1907-cantinad-isera-undefined.html','catalog/product/view/id/195/category/45',0,1,NULL,1,'{\"category_id\":\"45\"}'),(1139,'product',195,'alimentari/vino/bollicine/trentodoc1907-cantinad-isera-undefined.html','catalog/product/view/id/195/category/48',0,1,NULL,1,'{\"category_id\":\"48\"}'),(1140,'product',195,'prodotti-e-territori/rovereto-e-vallagarina/trentodoc1907-cantinad-isera-undefined.html','catalog/product/view/id/195/category/65',0,1,NULL,1,'{\"category_id\":\"65\"}'),(1141,'product',195,'prodotti-e-territori/trentodoc1907-cantinad-isera-undefined.html','catalog/product/view/id/195/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(1142,'category',80,'intrentino.html','catalog/category/view/id/80',0,1,NULL,1,NULL),(1143,'category',81,'intrentino/dispensa-dolce.html','catalog/category/view/id/81',0,1,NULL,1,NULL),(1144,'category',82,'intrentino/pesce.html','catalog/category/view/id/82',0,1,NULL,1,NULL),(1145,'category',83,'intrentino/formaggi-e-latticini.html','catalog/category/view/id/83',0,1,NULL,1,NULL),(1146,'category',84,'intrentino/vino-e-bevande.html','catalog/category/view/id/84',0,1,NULL,1,NULL),(1147,'category',85,'intrentino/dispensa-salata.html','catalog/category/view/id/85',0,1,NULL,1,NULL),(1170,'product',1,'vino-test.html','catalog/product/view/id/1',0,1,NULL,1,NULL),(1171,'product',1,'alimentari/vino-test.html','catalog/product/view/id/1/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1172,'product',1,'intrentino/dispensa-dolce/vino-test.html','catalog/product/view/id/1/category/81',0,1,NULL,1,'{\"category_id\":\"81\"}'),(1173,'product',1,'intrentino/vino-e-bevande/vino-test.html','catalog/product/view/id/1/category/84',0,1,NULL,1,'{\"category_id\":\"84\"}'),(1174,'product',1,'intrentino/dispensa-salata/vino-test.html','catalog/product/view/id/1/category/85',0,1,NULL,1,'{\"category_id\":\"85\"}'),(1175,'product',1,'intrentino/vino-test.html','catalog/product/view/id/1/category/80',0,1,NULL,1,'{\"category_id\":\"80\"}'),(1176,'product',196,'testbrandeterritorio-brandina-undefined.html','catalog/product/view/id/196',0,1,NULL,1,NULL),(1177,'product',196,'alimentari/testbrandeterritorio-brandina-undefined.html','catalog/product/view/id/196/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1178,'product',196,'alimentari/dolci-e-snack/testbrandeterritorio-brandina-undefined.html','catalog/product/view/id/196/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(1179,'product',196,'alimentari/dolci-e-snack/marmellate/testbrandeterritorio-brandina-undefined.html','catalog/product/view/id/196/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(1180,'product',196,'prodotti-e-territori/valsugana/testbrandeterritorio-brandina-undefined.html','catalog/product/view/id/196/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(1181,'product',196,'prodotti-e-territori/testbrandeterritorio-brandina-undefined.html','catalog/product/view/id/196/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(1182,'product',197,'testbsssrandeterritorio-brandsssina-undefined.html','catalog/product/view/id/197',0,1,NULL,1,NULL),(1183,'product',197,'alimentari/testbsssrandeterritorio-brandsssina-undefined.html','catalog/product/view/id/197/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1184,'product',197,'alimentari/dolci-e-snack/testbsssrandeterritorio-brandsssina-undefined.html','catalog/product/view/id/197/category/37',0,1,NULL,1,'{\"category_id\":\"37\"}'),(1185,'product',197,'alimentari/dolci-e-snack/marmellate/testbsssrandeterritorio-brandsssina-undefined.html','catalog/product/view/id/197/category/38',0,1,NULL,1,'{\"category_id\":\"38\"}'),(1186,'product',197,'prodotti-e-territori/valsugana/testbsssrandeterritorio-brandsssina-undefined.html','catalog/product/view/id/197/category/68',0,1,NULL,1,'{\"category_id\":\"68\"}'),(1187,'product',197,'prodotti-e-territori/testbsssrandeterritorio-brandsssina-undefined.html','catalog/product/view/id/197/category/59',0,1,NULL,1,'{\"category_id\":\"59\"}'),(1188,'category',86,'produttori.html','catalog/category/view/id/86',0,1,NULL,1,NULL),(1189,'category',87,'produttori/astro.html','catalog/category/view/id/87',0,1,NULL,1,NULL),(1190,'category',88,'produttori/cantina-d-isera.html','catalog/category/view/id/88',0,1,NULL,1,NULL),(1191,'category',89,'produttori/consorzio-trentingrana-gruppo-formaggi-del-trentino.html','catalog/category/view/id/89',0,1,NULL,1,NULL),(1192,'category',90,'produttori/melinda.html','catalog/category/view/id/90',0,1,NULL,1,NULL),(1193,'category',91,'produttori/sant-orsola.html','catalog/category/view/id/91',0,1,NULL,1,NULL),(1194,'product',198,'secondaprovaprodotto-undefined.html','catalog/product/view/id/198',0,1,NULL,1,NULL),(1195,'product',198,'alimentari/secondaprovaprodotto-undefined.html','catalog/product/view/id/198/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1196,'product',198,'prodotti-del-territorio/secondaprovaprodotto-undefined.html','catalog/product/view/id/198/category/74',0,1,NULL,1,'{\"category_id\":\"74\"}'),(1197,'product',199,'prodottodiprova2dsd-undefined.html','catalog/product/view/id/199',0,1,NULL,1,NULL),(1198,'product',199,'alimentari/prodottodiprova2dsd-undefined.html','catalog/product/view/id/199/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}'),(1199,'product',199,'prodotti-del-territorio/prodottodiprova2dsd-undefined.html','catalog/product/view/id/199/category/74',0,1,NULL,1,'{\"category_id\":\"74\"}'),(1200,'product',200,'prodottotre-undefined.html','catalog/product/view/id/200',0,1,NULL,1,NULL),(1201,'product',200,'alimentari/prodottotre-undefined.html','catalog/product/view/id/200/category/3',0,1,NULL,1,'{\"category_id\":\"3\"}');
/*!40000 ALTER TABLE `url_rewrite` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `variable`
--

DROP TABLE IF EXISTS `variable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `variable` (
  `variable_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Variable ID',
  `code` varchar(255) DEFAULT NULL COMMENT 'Variable Code',
  `name` varchar(255) DEFAULT NULL COMMENT 'Variable Name',
  PRIMARY KEY (`variable_id`),
  UNIQUE KEY `VARIABLE_CODE` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variables';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `variable`
--

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

--
-- Table structure for table `variable_value`
--

DROP TABLE IF EXISTS `variable_value`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `variable_value` (
  `value_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Variable Value ID',
  `variable_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Variable ID',
  `store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
  `plain_value` text DEFAULT NULL COMMENT 'Plain Text Value',
  `html_value` text DEFAULT NULL COMMENT 'Html Value',
  PRIMARY KEY (`value_id`),
  UNIQUE KEY `VARIABLE_VALUE_VARIABLE_ID_STORE_ID` (`variable_id`,`store_id`),
  KEY `VARIABLE_VALUE_STORE_ID` (`store_id`),
  CONSTRAINT `VARIABLE_VALUE_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
  CONSTRAINT `VARIABLE_VALUE_VARIABLE_ID_VARIABLE_VARIABLE_ID` FOREIGN KEY (`variable_id`) REFERENCES `variable` (`variable_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variable Value';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `variable_value`
--

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

--
-- Table structure for table `vault_payment_token`
--

DROP TABLE IF EXISTS `vault_payment_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vault_payment_token` (
  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
  `customer_id` int(10) unsigned DEFAULT NULL COMMENT 'Customer ID',
  `public_hash` varchar(128) NOT NULL COMMENT 'Hash code for using on frontend',
  `payment_method_code` varchar(128) NOT NULL COMMENT 'Payment method code',
  `type` varchar(128) NOT NULL COMMENT 'Type',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
  `expires_at` timestamp NULL DEFAULT NULL COMMENT 'Expires At',
  `gateway_token` varchar(255) NOT NULL COMMENT 'Gateway Token',
  `details` text DEFAULT NULL COMMENT 'Details',
  `is_active` tinyint(1) NOT NULL DEFAULT 1,
  `is_visible` tinyint(1) NOT NULL DEFAULT 1,
  PRIMARY KEY (`entity_id`),
  UNIQUE KEY `VAULT_PAYMENT_TOKEN_PUBLIC_HASH` (`public_hash`),
  UNIQUE KEY `VAULT_PAYMENT_TOKEN_PAYMENT_METHOD_CODE_CSTR_ID_GATEWAY_TOKEN` (`payment_method_code`,`customer_id`,`gateway_token`),
  KEY `VAULT_PAYMENT_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` (`customer_id`),
  CONSTRAINT `VAULT_PAYMENT_TOKEN_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Vault tokens of payment';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vault_payment_token`
--

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

--
-- Table structure for table `vault_payment_token_order_payment_link`
--

DROP TABLE IF EXISTS `vault_payment_token_order_payment_link`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vault_payment_token_order_payment_link` (
  `order_payment_id` int(10) unsigned NOT NULL COMMENT 'Order payment ID',
  `payment_token_id` int(10) unsigned NOT NULL COMMENT 'Payment token ID',
  PRIMARY KEY (`order_payment_id`,`payment_token_id`),
  KEY `FK_4ED894655446D385894580BECA993862` (`payment_token_id`),
  CONSTRAINT `FK_4ED894655446D385894580BECA993862` FOREIGN KEY (`payment_token_id`) REFERENCES `vault_payment_token` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `FK_CF37B9D854256534BE23C818F6291CA2` FOREIGN KEY (`order_payment_id`) REFERENCES `sales_order_payment` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Order payments to vault token';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `vault_payment_token_order_payment_link`
--

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

--
-- Table structure for table `webshopapps_matrixrate`
--

DROP TABLE IF EXISTS `webshopapps_matrixrate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `webshopapps_matrixrate` (
  `pk` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary key',
  `website_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Website Id',
  `dest_country_id` varchar(4) NOT NULL DEFAULT '0' COMMENT 'Destination coutry ISO/2 or ISO/3 code',
  `dest_region_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Destination Region Id',
  `dest_city` varchar(30) NOT NULL DEFAULT '' COMMENT 'Destination City',
  `dest_zip` varchar(10) NOT NULL DEFAULT '*' COMMENT 'Destination Post Code (Zip)',
  `dest_zip_to` varchar(10) NOT NULL DEFAULT '*' COMMENT 'Destination Post Code To (Zip)',
  `condition_name` varchar(20) NOT NULL COMMENT 'Rate Condition name',
  `condition_from_value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Rate condition from value',
  `condition_to_value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Rate condition to value',
  `price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Price',
  `cost` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Cost',
  `shipping_method` varchar(255) NOT NULL COMMENT 'Shipping Method',
  PRIMARY KEY (`pk`),
  UNIQUE KEY `UNQ_1F88ACC89F513C4E6FE1FEEAD343B921` (`website_id`,`dest_country_id`,`dest_region_id`,`dest_city`,`dest_zip`,`condition_name`,`condition_from_value`,`condition_to_value`,`shipping_method`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='WebShopApps MatrixRates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `webshopapps_matrixrate`
--

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

--
-- Table structure for table `weee_tax`
--

DROP TABLE IF EXISTS `weee_tax`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `weee_tax` (
  `value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
  `website_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Website ID',
  `entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
  `country` varchar(2) DEFAULT NULL COMMENT 'Country',
  `value` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Value',
  `state` int(11) NOT NULL DEFAULT 0 COMMENT 'State',
  `attribute_id` smallint(5) unsigned NOT NULL COMMENT 'Attribute ID',
  PRIMARY KEY (`value_id`),
  KEY `WEEE_TAX_WEBSITE_ID` (`website_id`),
  KEY `WEEE_TAX_ENTITY_ID` (`entity_id`),
  KEY `WEEE_TAX_COUNTRY` (`country`),
  KEY `WEEE_TAX_ATTRIBUTE_ID` (`attribute_id`),
  CONSTRAINT `WEEE_TAX_ATTRIBUTE_ID_EAV_ATTRIBUTE_ATTRIBUTE_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
  CONSTRAINT `WEEE_TAX_COUNTRY_DIRECTORY_COUNTRY_COUNTRY_ID` FOREIGN KEY (`country`) REFERENCES `directory_country` (`country_id`) ON DELETE CASCADE,
  CONSTRAINT `WEEE_TAX_ENTITY_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `WEEE_TAX_WEBSITE_ID_STORE_WEBSITE_WEBSITE_ID` FOREIGN KEY (`website_id`) REFERENCES `store_website` (`website_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Weee Tax';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `weee_tax`
--

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

--
-- Table structure for table `widget`
--

DROP TABLE IF EXISTS `widget`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `widget` (
  `widget_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Widget ID',
  `widget_code` varchar(255) DEFAULT NULL COMMENT 'Widget code for template directive',
  `widget_type` varchar(255) DEFAULT NULL COMMENT 'Widget Type',
  `parameters` text DEFAULT NULL COMMENT 'Parameters',
  PRIMARY KEY (`widget_id`),
  KEY `WIDGET_WIDGET_CODE` (`widget_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Preconfigured Widgets';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget`
--

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

--
-- Table structure for table `widget_instance`
--

DROP TABLE IF EXISTS `widget_instance`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `widget_instance` (
  `instance_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Instance ID',
  `instance_type` varchar(255) DEFAULT NULL COMMENT 'Instance Type',
  `theme_id` int(10) unsigned NOT NULL COMMENT 'Theme ID',
  `title` varchar(255) DEFAULT NULL COMMENT 'Widget Title',
  `store_ids` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Store ids',
  `widget_parameters` text DEFAULT NULL COMMENT 'Widget parameters',
  `sort_order` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Sort order',
  PRIMARY KEY (`instance_id`),
  KEY `WIDGET_INSTANCE_THEME_ID_THEME_THEME_ID` (`theme_id`),
  CONSTRAINT `WIDGET_INSTANCE_THEME_ID_THEME_THEME_ID` FOREIGN KEY (`theme_id`) REFERENCES `theme` (`theme_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Instances of Widget for Package Theme';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_instance`
--

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

--
-- Table structure for table `widget_instance_page`
--

DROP TABLE IF EXISTS `widget_instance_page`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `widget_instance_page` (
  `page_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Page ID',
  `instance_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Instance ID',
  `page_group` varchar(25) DEFAULT NULL COMMENT 'Block Group Type',
  `layout_handle` varchar(255) DEFAULT NULL COMMENT 'Layout Handle',
  `block_reference` varchar(255) DEFAULT NULL COMMENT 'Container',
  `page_for` varchar(25) DEFAULT NULL COMMENT 'For instance entities',
  `entities` text DEFAULT NULL COMMENT 'Catalog entities (comma separated)',
  `page_template` varchar(255) DEFAULT NULL COMMENT 'Path to widget template',
  PRIMARY KEY (`page_id`),
  KEY `WIDGET_INSTANCE_PAGE_INSTANCE_ID` (`instance_id`),
  CONSTRAINT `WIDGET_INSTANCE_PAGE_INSTANCE_ID_WIDGET_INSTANCE_INSTANCE_ID` FOREIGN KEY (`instance_id`) REFERENCES `widget_instance` (`instance_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Instance of Widget on Page';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_instance_page`
--

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

--
-- Table structure for table `widget_instance_page_layout`
--

DROP TABLE IF EXISTS `widget_instance_page_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `widget_instance_page_layout` (
  `page_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Page ID',
  `layout_update_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Layout Update ID',
  PRIMARY KEY (`layout_update_id`,`page_id`),
  KEY `WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID` (`page_id`),
  CONSTRAINT `WIDGET_INSTANCE_PAGE_LAYOUT_PAGE_ID_WIDGET_INSTANCE_PAGE_PAGE_ID` FOREIGN KEY (`page_id`) REFERENCES `widget_instance_page` (`page_id`) ON DELETE CASCADE,
  CONSTRAINT `WIDGET_INSTANCE_PAGE_LYT_LYT_UPDATE_ID_LYT_UPDATE_LYT_UPDATE_ID` FOREIGN KEY (`layout_update_id`) REFERENCES `layout_update` (`layout_update_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Layout updates';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `widget_instance_page_layout`
--

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

--
-- Table structure for table `wishlist`
--

DROP TABLE IF EXISTS `wishlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wishlist` (
  `wishlist_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist ID',
  `customer_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Customer ID',
  `shared` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Sharing flag (0 or 1)',
  `sharing_code` varchar(32) DEFAULT NULL COMMENT 'Sharing encrypted code',
  `updated_at` timestamp NULL DEFAULT NULL COMMENT 'Last updated date',
  PRIMARY KEY (`wishlist_id`),
  UNIQUE KEY `WISHLIST_CUSTOMER_ID` (`customer_id`),
  KEY `WISHLIST_SHARED` (`shared`),
  CONSTRAINT `WISHLIST_CUSTOMER_ID_CUSTOMER_ENTITY_ENTITY_ID` FOREIGN KEY (`customer_id`) REFERENCES `customer_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='Wishlist main Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wishlist`
--

LOCK TABLES `wishlist` WRITE;
/*!40000 ALTER TABLE `wishlist` DISABLE KEYS */;
INSERT INTO `wishlist` VALUES (1,1,0,'YeHtCHXEIEWWMorsRpwtYsGT2VJiZUz6','2022-08-04 16:23:32'),(2,2,0,'posrsfyIaZnBTW7QHJR5YFeL6Wecyk0Y','2022-08-09 08:04:53'),(3,3,0,'76VE65zGio2I8XukuzYr6PELDOUhT9Lz','2022-08-25 06:15:24'),(4,4,0,'1lwZkk8DMSthxsnIKuYAfXdCTlEWSV0L','2022-08-25 12:26:11'),(5,5,0,'EuI0YJzkLKWMeEb69sHx3ZzKAchOkW4h','2022-08-25 16:28:56');
/*!40000 ALTER TABLE `wishlist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wishlist_item`
--

DROP TABLE IF EXISTS `wishlist_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wishlist_item` (
  `wishlist_item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Wishlist item ID',
  `wishlist_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Wishlist ID',
  `product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',
  `added_at` timestamp NULL DEFAULT NULL COMMENT 'Add date and time',
  `description` text DEFAULT NULL COMMENT 'Short description of wish list item',
  `qty` decimal(12,4) NOT NULL COMMENT 'Qty',
  PRIMARY KEY (`wishlist_item_id`),
  KEY `WISHLIST_ITEM_WISHLIST_ID` (`wishlist_id`),
  KEY `WISHLIST_ITEM_PRODUCT_ID` (`product_id`),
  KEY `WISHLIST_ITEM_STORE_ID` (`store_id`),
  CONSTRAINT `WISHLIST_ITEM_PRODUCT_ID_CATALOG_PRODUCT_ENTITY_ENTITY_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE,
  CONSTRAINT `WISHLIST_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL,
  CONSTRAINT `WISHLIST_ITEM_WISHLIST_ID_WISHLIST_WISHLIST_ID` FOREIGN KEY (`wishlist_id`) REFERENCES `wishlist` (`wishlist_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist items';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wishlist_item`
--

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

--
-- Table structure for table `wishlist_item_option`
--

DROP TABLE IF EXISTS `wishlist_item_option`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wishlist_item_option` (
  `option_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Option ID',
  `wishlist_item_id` int(10) unsigned NOT NULL COMMENT 'Wishlist Item ID',
  `product_id` int(10) unsigned NOT NULL COMMENT 'Product ID',
  `code` varchar(255) NOT NULL COMMENT 'Code',
  `value` text DEFAULT NULL COMMENT 'Value',
  PRIMARY KEY (`option_id`),
  KEY `FK_A014B30B04B72DD0EAB3EECD779728D6` (`wishlist_item_id`),
  CONSTRAINT `FK_A014B30B04B72DD0EAB3EECD779728D6` FOREIGN KEY (`wishlist_item_id`) REFERENCES `wishlist_item` (`wishlist_item_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Wishlist Item Option Table';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wishlist_item_option`
--

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

--
-- Final view structure for view `inventory_stock_1`
--

/*!50001 DROP TABLE IF EXISTS `inventory_stock_1`*/;
/*!50001 DROP VIEW IF EXISTS `inventory_stock_1`*/;
/*!50001 SET @saved_cs_client          = @@character_set_client */;
/*!50001 SET @saved_cs_results         = @@character_set_results */;
/*!50001 SET @saved_col_connection     = @@collation_connection */;
/*!50001 SET character_set_client      = utf8 */;
/*!50001 SET character_set_results     = utf8 */;
/*!50001 SET collation_connection      = utf8_general_ci */;
/*!50001 CREATE ALGORITHM=UNDEFINED */
/*!50013 DEFINER=`indaco`@`localhost` SQL SECURITY INVOKER */
/*!50001 VIEW `inventory_stock_1` AS select distinct `legacy_stock_status`.`product_id` AS `product_id`,`legacy_stock_status`.`website_id` AS `website_id`,`legacy_stock_status`.`stock_id` AS `stock_id`,`legacy_stock_status`.`qty` AS `quantity`,`legacy_stock_status`.`stock_status` AS `is_salable`,`product`.`sku` AS `sku` from (`cataloginventory_stock_status` `legacy_stock_status` join `catalog_product_entity` `product` on(`legacy_stock_status`.`product_id` = `product`.`entity_id`)) */;
/*!50001 SET character_set_client      = @saved_cs_client */;
/*!50001 SET character_set_results     = @saved_cs_results */;
/*!50001 SET collation_connection      = @saved_col_connection */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2022-09-16 16:10:07