WordPress database error: [CREATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_assets`]CREATE TABLE IF NOT EXISTS `wp_amz_assets` (
`id` BIGINT(15) UNSIGNED NOT NULL AUTO_INCREMENT,
`post_id` BIGINT(20) NOT NULL,
`asset` VARCHAR(225) NULL DEFAULT NULL,
`thumb` VARCHAR(225) NULL DEFAULT NULL,
`download_status` VARCHAR(20) NULL DEFAULT 'new' COMMENT 'new, success, inprogress, error, remote',
`hash` VARCHAR(32) NULL DEFAULT NULL,
`media_id` BIGINT(20) NULL DEFAULT '0',
`msg` TEXT NULL,
`date_added` DATETIME NULL DEFAULT NULL,
`date_download` DATETIME NULL DEFAULT NULL,
`image_sizes` TEXT NULL,
PRIMARY KEY (`id`),
INDEX `post_id` (`post_id`),
INDEX `hash` (`hash`),
INDEX `media_id` (`media_id`),
INDEX `download_status` (`download_status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
WordPress database error: [CREATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_products`]CREATE TABLE IF NOT EXISTS `wp_amz_products` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`post_id` BIGINT(20) NOT NULL,
`post_parent` BIGINT(20) NULL DEFAULT '0',
`type` ENUM('post','variation') NULL DEFAULT 'post',
`title` TEXT NULL,
`nb_assets` INT(4) NULL DEFAULT '0',
`nb_assets_done` INT(4) NULL DEFAULT '0',
`status` ENUM('new','success') NULL DEFAULT 'new',
PRIMARY KEY (`post_id`, `id`),
UNIQUE INDEX `post_id` (`post_id`),
INDEX `post_parent` (`post_parent`),
INDEX `type` (`type`),
INDEX `nb_assets` (`nb_assets`),
INDEX `nb_assets_done` (`nb_assets_done`),
INDEX `id` (`id`),
INDEX `status` (`status`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
WordPress database error: [CREATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_cross_sell`]CREATE TABLE IF NOT EXISTS `wp_amz_cross_sell` (
`ASIN` VARCHAR(10) NOT NULL,
`products` TEXT NULL,
`nr_products` INT(11) NULL DEFAULT NULL,
`add_date` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`is_variable` CHAR(1) NULL DEFAULT 'N',
`nb_tries` TINYINT(1) UNSIGNED NULL DEFAULT '0',
PRIMARY KEY (`ASIN`),
UNIQUE INDEX `ASIN` (`ASIN`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
WordPress database error: [CREATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_report_log`]CREATE TABLE IF NOT EXISTS `wp_amz_report_log` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`log_id` VARCHAR(50) NULL DEFAULT NULL,
`log_action` VARCHAR(50) NULL DEFAULT NULL,
`desc` VARCHAR(255) NULL DEFAULT NULL,
`log_data_type` VARCHAR(50) NULL DEFAULT NULL,
`log_data` LONGTEXT NULL,
`source` TEXT NULL,
`date_add` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
INDEX `log_id` (`log_id`),
INDEX `log_action` (`log_action`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
WordPress database error: [CREATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_queue`]CREATE TABLE IF NOT EXISTS `wp_amz_queue` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`asin` VARCHAR(100) NOT NULL,
`status` VARCHAR(20) NOT NULL,
`status_msg` TEXT NOT NULL,
`from_op` VARCHAR(30) NOT NULL,
`created_date` TIMESTAMP NULL DEFAULT '0000-00-00 00:00:00',
`imported_date` TIMESTAMP NULL DEFAULT NULL,
`nb_tries` SMALLINT(1) UNSIGNED NOT NULL DEFAULT '0',
`nb_tries_prev` SMALLINT(1) UNSIGNED NOT NULL DEFAULT '0',
`product_title` TEXT NULL,
`country` VARCHAR(30) NOT NULL DEFAULT '',
`provider` VARCHAR(20) NOT NULL DEFAULT 'amazon',
PRIMARY KEY (`id`),
UNIQUE INDEX `asin_from_op` (`asin`, `from_op`),
INDEX `nb_tries` (`nb_tries`),
INDEX `from_op` (`from_op`),
INDEX `status` (`status`),
INDEX `country` (`country`),
INDEX `provider` (`provider`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
WordPress database error: [CREATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_search`]CREATE TABLE IF NOT EXISTS `wp_amz_search` (
`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`code` VARCHAR(32) NOT NULL,
`publish` ENUM('Y','N') NOT NULL DEFAULT 'Y',
`status` VARCHAR(20) NOT NULL,
`status_msg` TEXT NOT NULL,
`params` TEXT NOT NULL,
`provider` VARCHAR(20) NOT NULL DEFAULT 'amazon',
`search_title` VARCHAR(100) NOT NULL,
`country` VARCHAR(30) NOT NULL DEFAULT '',
`recurrency` VARCHAR(10) NOT NULL,
`created_date` TIMESTAMP NULL DEFAULT '0000-00-00 00:00:00',
`started_at` TIMESTAMP NULL DEFAULT NULL,
`ended_at` TIMESTAMP NULL DEFAULT NULL,
`run_date` TIMESTAMP NULL DEFAULT NULL,
`nb_tries` SMALLINT(1) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE INDEX `code` (`code`),
INDEX `provider` (`provider`),
INDEX `country` (`country`),
INDEX `recurrency` (`recurrency`),
INDEX `status` (`status`),
INDEX `publish` (`publish`),
INDEX `run_date` (`run_date`),
INDEX `nb_tries` (`nb_tries`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
WordPress database error: [CREATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]CREATE TABLE IF NOT EXISTS `wp_amz_locale_reference` (
`ID` INT(10) NOT NULL AUTO_INCREMENT,
`country` VARCHAR(3) NOT NULL DEFAULT 'US',
`searchIndex` VARCHAR(50) NOT NULL,
`department` VARCHAR(100) NOT NULL,
`browseNode` BIGINT(20) NOT NULL DEFAULT '0',
`sortValues` TEXT NOT NULL,
`itemSearchParams` TEXT NOT NULL,
PRIMARY KEY (`ID`),
UNIQUE INDEX `country_searchIndex` (`country`, `searchIndex`),
INDEX `searchIndex` (`searchIndex`),
INDEX `department` (`department`),
INDEX `browseNode` (`browseNode`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci
WordPress database error: [CREATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_amzkeys`]CREATE TABLE IF NOT EXISTS `wp_amz_amzkeys` (
`id` MEDIUMINT(8) UNSIGNED NOT NULL AUTO_INCREMENT,
`access_key` VARCHAR(100) NOT NULL,
`secret_key` VARCHAR(100) NOT NULL,
`publish` ENUM('Y','N') NOT NULL DEFAULT 'Y',
`locked` CHAR(1) NOT NULL DEFAULT 'N',
`lock_time` TIMESTAMP NULL DEFAULT NULL,
`nb_requests` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`nb_requests_valid` INT(10) UNSIGNED NOT NULL DEFAULT '0',
`ratio_success` FLOAT(5,2) UNSIGNED NOT NULL DEFAULT '0.00',
`last_request_time` TIMESTAMP NULL DEFAULT NULL,
`last_request_status` VARCHAR(50) NULL DEFAULT NULL,
`last_request_input` MEDIUMTEXT NULL,
`last_request_output` MEDIUMTEXT NULL,
PRIMARY KEY (`id`),
UNIQUE INDEX `access_key_secret_key` (`access_key`, `secret_key`),
INDEX `publish_locked_lock_time` (`publish`, `locked`, `lock_time`),
INDEX `locked_lock_time` (`locked`, `lock_time`),
INDEX `lock_time` (`lock_time`),
INDEX `last_request_time` (`last_request_time`),
INDEX `ratio_success` (`ratio_success`),
INDEX `nb_requests` (`nb_requests`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
WordPress database error: [CREATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_amazon_cache`]CREATE TABLE IF NOT EXISTS `wp_amz_amazon_cache` (
`ID` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`cache_name` VARCHAR(100) NOT NULL,
`cache_type` VARCHAR(20) NOT NULL,
`country` VARCHAR(30) NOT NULL,
`response` LONGTEXT NOT NULL,
`response_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`provider` VARCHAR(20) NOT NULL DEFAULT 'amazon',
PRIMARY KEY (`ID`),
UNIQUE INDEX `cache_name_cache_type` (`cache_name`, `cache_type`),
INDEX `cache_type` (`cache_type`),
INDEX `response_date` (`response_date`),
INDEX `provider` (`provider`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci
WordPress database error: [CREATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_import_stats`]CREATE TABLE IF NOT EXISTS `wp_amz_import_stats` (
`id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`post_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
`post_title` TEXT NOT NULL,
`asin` VARCHAR(100) NOT NULL,
`provider` VARCHAR(20) NOT NULL DEFAULT 'amazon',
`country` VARCHAR(30) NOT NULL,
`from_op` VARCHAR(40) NOT NULL COMMENT '[insane|direct|auto|search]#[some code]',
`from_op_p1` VARCHAR(20) NOT NULL,
`from_op_p2` VARCHAR(40) NOT NULL,
`imported_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`import_status_msg` TEXT NOT NULL,
`duration_spin` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`duration_attributes` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`duration_vars` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`duration_nb_vars` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`duration_img` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`duration_nb_img` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`duration_img_dw` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`duration_nb_img_dw` INT(11) UNSIGNED NOT NULL DEFAULT '0',
`duration_product` INT(11) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'duration_spin, duration_attributes, duration_vars, duration_img, other product import operations, but does not contain duration_img_dw',
`db_calc` TEXT NOT NULL,
PRIMARY KEY (`id`),
INDEX `post_id` (`post_id`),
INDEX `asin` (`asin`),
INDEX `provider` (`provider`),
INDEX `country` (`country`),
INDEX `from_op_p1` (`from_op_p1`),
INDEX `from_op_p2` (`from_op_p2`),
INDEX `from_op` (`from_op`),
INDEX `duration_product` (`duration_product`),
INDEX `duration_img_dw` (`duration_img_dw`),
INDEX `duration_nb_img_dw` (`duration_nb_img_dw`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_amzkeys`]insert ignore into `wp_amz_amzkeys` (`access_key`, `secret_key`) values('aateam demo access key', 'aateam demo secret access key');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'All', 'All Departments', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Appliances', 'Appliances', 2619526011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'MobileApps', 'Apps & Games', 2350150011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'ArtsAndCrafts', 'Arts, Crafts & Sewing', 2617942011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Automotive', 'Automotive Parts & Accessories', 15690151, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Baby', 'Baby', 3760911, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Beauty', 'Beauty & Personal Care', 11055981, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Books', 'Books', 1000, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Photo', 'Camera & Photo', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Music', 'CDs & Vinyl', 301668, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'MobileAndAccessories', 'Cell Phones & Accessories', 2335753011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Classical', 'Classical', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Apparel', 'Clothing & Accessories', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Fashion', 'Clothing, Shoes & Jewelry', 7141124011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'FashionBaby', 'Clothing, Shoes & Jewelry Baby', 7147444011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'FashionBoys', 'Clothing, Shoes & Jewelry Boys', 7147443011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'FashionGirls', 'Clothing, Shoes & Jewelry Girls', 7147442011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'FashionMen', 'Clothing, Shoes & Jewelry Men', 7147441011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'FashionWomen', 'Clothing, Shoes & Jewelry Women', 7147440011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Collectibles', 'Collectibles & Fine Art', 4991426011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Computers', 'Computers', 541966, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'DigitalEducationalResources', 'Digital Educational Resources', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'DigitalMusic', 'Digital Music', 624868011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Electronics', 'Electronics', 493964, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'EverythingElse', 'Everything Else', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'GardenAndOutdoor', 'Garden & Outdoor', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'GiftCards', 'Gift Cards', 2864120011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'GroceryAndGourmetFood', 'Grocery & Gourmet Food', 16310211, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Handmade', 'Handmade', 11260433011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'HealthPersonalCare', 'Health, Household & Baby Care', 3760931, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'LocalServices', 'Home & Business Services', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'HomeAndKitchen', 'Home & Kitchen', 1063498, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Industrial', 'Industrial & Scientific', 16310161, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Jewelry', 'Jewelry', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'KindleStore', 'Kindle Store', 133141011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Luggage', 'Luggage & Travel Gear', 9479199011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'LuxuryBeauty', 'Luxury Beauty', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Magazines', 'Magazine Subscriptions', 599872, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'MoviesAndTV', 'Movies & TV', 2625374011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'MusicalInstruments', 'Musical Instruments', 11965861, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'OfficeProducts', 'Office Products', 1084128, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'PetSupplies', 'Pet Supplies', 2619534011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'AmazonVideo', 'Prime Video', 2858778011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Shoes', 'Shoes', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Software', 'Software', 409488, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'SportsAndOutdoors', 'Sports & Outdoors', 3375301, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'ToolsAndHomeImprovement', 'Tools & Home Improvement', 468240, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'ToysAndGames', 'Toys & Games', 165795011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'VHS', 'VHS', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'VideoGames', 'Video Games', 11846801, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('US', 'Watches', 'Watches', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'All', 'All Departments', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'AmazonVideo', 'Amazon Video', 3010086031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'MobileApps', 'Apps & Games', 1661658031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Baby', 'Baby', 60032031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Beauty', 'Beauty', 66280031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Books', 'Books', 1025612, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Automotive', 'Car & Motorbike', 248878031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Music', 'CDs & Vinyl', 520920, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Classical', 'Classical Music', 505510, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Apparel', 'Clothing', 83451031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Computers', 'Computers & Accessories', 340832031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'DigitalMusic', 'Digital Music', 77925031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'ToolsAndHomeImprovement', 'DIY & Tools', 11052591, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'MoviesAndTV', 'DVD & Blu-ray', 573406, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Electronics', 'Electronics & Photo', 560800, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'EverythingElse', 'Everything Else', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Fashion', 'Fashion', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'GardenAndOutdoor', 'Garden & Outdoors', 11052591, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'GiftCards', 'Gift Cards', 1571305031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'GroceryAndGourmetFood', 'Grocery', 344155031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Handmade', 'Handmade', 9699255031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'HealthPersonalCare', 'Health & Personal Care', 66280031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'HomeAndKitchen', 'Home & Kitchen', 11052591, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Industrial', 'Industrial & Scientific', 5866055031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Jewelry', 'Jewellery', 193717031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'KindleStore', 'Kindle Store', 341677031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Appliances', 'Large Appliances', 908799031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Lighting', 'Lighting', 213078031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Luggage', 'Luggage', 2454167031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'LuxuryBeauty', 'Luxury Beauty', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'MusicalInstruments', 'Musical Instruments & DJ', 340837031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'VideoGames', 'PC & Video Games', 1025616, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'PetSupplies', 'Pet Supplies', 340841031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Shoes', 'Shoes & Bags', 362350011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Software', 'Software', 1025614, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'SportsAndOutdoors', 'Sports & Outdoors', 319530011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'OfficeProducts', 'Stationery & Office Supplies', 560800, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'ToysAndGames', 'Toys & Games', 712832, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'VHS', 'VHS', 125556011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('UK', 'Watches', 'Watches', 328229011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'All', 'Alle Kategorien', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'MobileApps', 'Apps & Spiele', 1661650031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Automotive', 'Auto & Motorrad', 78193031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Baby', 'Baby', 357577011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'ToolsAndHomeImprovement', 'Baumarkt', 80085031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Beauty', 'Beauty', 64257031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Apparel', 'Bekleidung', 78689031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Lighting', 'Beleuchtung', 213084031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Books', 'Bücher', 541686, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'ForeignBooks', 'Bücher (Fremdsprachig)', 54071011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'OfficeProducts', 'Bürobedarf & Schreibwaren', 192417031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Computers', 'Computer & Zubehör', 569604, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'HealthPersonalCare', 'Drogerie & Körperpflege', 64257031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'MoviesAndTV', 'DVD & Blu-ray', 547664, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Appliances', 'Elektro-Großgeräte', 931573031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Electronics', 'Elektronik & Foto', 569604, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Fashion', 'Fashion', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'VideoGames', 'Games', 541708, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'GardenAndOutdoor', 'Garten', 10925241, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'GiftCards', 'Geschenkgutscheine', 1571257031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Industrial', 'Gewerbe, Industrie & Wissenschaft', 5866099031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Handmade', 'Handmade', 9699312031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'PetSupplies', 'Haustier', 427727031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Photo', 'Kamera & Foto', 571860, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'KindleStore', 'Kindle-Shop', 530485031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Classical', 'Klassik', 542676, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Luggage', 'Koffer, Rucksäcke & Taschen', 2454119031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'HomeAndKitchen', 'Küche, Haushalt & Wohnen', 3169011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'GroceryAndGourmetFood', 'Lebensmittel & Getränke', 344162031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'LuxuryBeauty', 'Luxury Beauty', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Music', 'Musik-CDs & Vinyl', 542676, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'DigitalMusic', 'Musik-Downloads', 180529031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'MusicalInstruments', 'Musikinstrumente & DJ-Equipment', 340850031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'AmazonVideo', 'Prime Video', 3010076031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Jewelry', 'Schmuck', 327473011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Shoes', 'Schuhe & Handtaschen', 362995011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Software', 'Software', 542064, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'EverythingElse', 'Sonstiges', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'ToysAndGames', 'Spielzeug', 12950661, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'SportsAndOutdoors', 'Sport & Freizeit', 16435121, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Watches', 'Uhren', 193708031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'VHS', 'VHS', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('DE', 'Magazines', 'Zeitschriften', 1161660, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'PetSupplies', 'Animalerie', 1571269031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'MobileApps', 'Applis & Jeux', 1661655031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Automotive', 'Auto et Moto', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'EverythingElse', 'Autres', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Luggage', 'Bagages', 2454146031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Beauty', 'Beauté et Parfum', 197859031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'LuxuryBeauty', 'Beauté Prestige', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Baby', 'Bébés & Puériculture', 206618031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Jewelry', 'Bijoux', 193711031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'GiftCards', 'Boutique chèques-cadeaux', 2524128031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'KindleStore', 'Boutique Kindle', 672109031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'ToolsAndHomeImprovement', 'Bricolage', 590749031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Shoes', 'Chaussures et Sacs', 248812031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'HomeAndKitchen', 'Cuisine & Maison', 57686031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'MoviesAndTV', 'DVD & Blu-ray', 578608, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'GroceryAndGourmetFood', 'Epicerie', 3635789031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'OfficeProducts', 'Fournitures de bureau', 192420031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Appliances', 'Gros électroménager', 908827031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Handmade', 'Handmade', 9699369031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Electronics', 'High-Tech', 14011561, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'HealthPersonalCare', 'Hygiène et Santé', 197862031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Computers', 'Informatique', 340859031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'MusicalInstruments', 'Instruments de musique & Sono', 340862031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'GardenAndOutdoor', 'Jardin', 3557028031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'ToysAndGames', 'Jeux et Jouets', 548014, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'VideoGames', 'Jeux vidéo', 548014, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'ForeignBooks', 'Livres anglais et étrangers', 69633011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Books', 'Livres en français', 468256, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Software', 'Logiciels', 548012, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Lighting', 'Luminaires et Eclairage', 213081031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Fashion', 'Mode', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Watches', 'Montres', 60937031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Music', 'Musique : CD & Vinyles', 537366, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Industrial', 'Secteur industriel & scientifique', 5866110031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'SportsAndOutdoors', 'Sports et Loisirs', 325615031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'DigitalMusic', 'Téléchargement de musique', 206442031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'All', 'Toutes nos catégories', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'Apparel', 'Vêtements et accessoires', 340856031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('FR', 'VHS', 'VHS', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'All', 'All Departments', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'MobileApps', 'Apps & Games', 2381131051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Baby', 'Baby & Maternity', 13331821, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Beauty', 'Beauty', 52391051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Automotive', 'Car & Bike Products', 2017305051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Classical', 'Classical', 562032, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Apparel', 'Clothing & Accessories', 361299011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'VideoGames', 'Computer & Video Games', 637872, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Computers', 'Computers & Accessories', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'CreditCards', 'Credit Cards', 2320456051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'DigitalMusic', 'Digital Music', 2129039051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'ToolsAndHomeImprovement', 'DIY, Tools & Garden', 2016930051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Electronics', 'Electronics & Cameras', 3210991, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'ForeignBooks', 'English Books', 388316011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'EverythingElse', 'Everything Else', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Fashion', 'Fashion', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'GroceryAndGourmetFood', 'Food & Beverage', 57240051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'GiftCards', 'Gift Cards', 2351653051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'HealthPersonalCare', 'Health & Personal Care', 161669011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Hobbies', 'Hobby', 2277722051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Industrial', 'Industrial & Scientific', 3445394051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Books', 'Japanese Books', 465610, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Jewelry', 'Jewelry', 85896051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'FashionBaby', 'Kids & Baby', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'KindleStore', 'Kindle Store', 2250739051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'HomeAndKitchen', 'Kitchen & Housewares', 3839151, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Appliances', 'Large Appliances', 2277725051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'FashionMen', 'Men', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'MoviesAndTV', 'Movies & TV', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Music', 'Music', 562032, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'MusicalInstruments', 'Musical Instruments', 2123630051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'PetSupplies', 'Pet Supplies', 2127213051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'AmazonVideo', 'Prime Video', 2351650051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Shoes', 'Shoes & Bags', 2016926051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Software', 'Software', 637630, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'SportsAndOutdoors', 'Sports', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'OfficeProducts', 'Stationery and Office Products', 86732051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Toys', 'Toys', 13299551, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'Watches', 'Watches', 331952011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('JP', 'FashionWomen', 'Women', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'All', 'All Department', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'MobileApps', 'Apps & Games', 6386372011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Automotive', 'Automotive', 6948389011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Baby', 'Baby', 3561347011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Beauty', 'Beauty', 6205125011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Books', 'Books', 927726, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Classical', 'Classical Music', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Apparel', 'Clothing & Accessories', 8604904011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Electronics', 'Electronics', 677211011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'ForeignBooks', 'English Books', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'EverythingElse', 'Everything Else', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'GiftCards', 'Gift Cards', 9230167011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'GroceryAndGourmetFood', 'Grocery & Gourmet Food', 6967216011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Handmade', 'Handmade', 16708697011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'HealthPersonalCare', 'Health & Personal Care', 6205178011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'HomeAndKitchen', 'Home & Kitchen', 2206276011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Industrial', 'Industrial & Scientific', 11076214011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Jewelry', 'Jewelry', 9674384011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'KindleStore', 'Kindle Store', 2972706011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Luggage', 'Luggage & Bags', 6205506011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'LuxuryBeauty', 'Luxury Beauty', 13799223011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'MoviesAndTV', 'Movies & TV', 14113311, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Music', 'Music', 962454, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'MusicalInstruments', 'Musical Instruments, Stage & Studio', 6916845011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'OfficeProducts', 'Office Products', 6205512011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'GardenAndOutdoor', 'Patio, Lawn & Garden', 6299024011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'PetSupplies', 'Pet Supplies', 6291628011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Shoes', 'Shoes & Handbags', 8604916011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Software', 'Software', 3234171, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'SportsAndOutdoors', 'Sports & Outdoors', 2242990011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'ToolsAndHomeImprovement', 'Tools & Home Improvement', 3006903011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'ToysAndGames', 'Toys & Games', 6205517011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'VHS', 'VHS', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'VideoGames', 'Video Games', 110218011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('CA', 'Watches', 'Watches', 2235621011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'All', 'All Categories', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Fashion', 'Amazon Fashion', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Appliances', 'Appliances', 5122349031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'MobileApps', 'Apps & Games', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Baby', 'Baby', 1571275031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Beauty', 'Beauty', 1355017031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Books', 'Books', 976390031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Automotive', 'Car & Motorbike', 4772061031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Apparel', 'Clothing & Accessories', 1571272031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Collectibles', 'Collectibles', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Computers', 'Computers & Accessories', 976393031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Electronics', 'Electronics', 976420031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'EverythingElse', 'Everything Else', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Furniture', 'Furniture', 1380441031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'GardenAndOutdoor', 'Garden & Outdoors', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'GiftCards', 'Gift Cards', 3704983031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'GroceryAndGourmetFood', 'Grocery & Gourmet Foods', 2454179031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'HealthPersonalCare', 'Health & Personal Care', 1350385031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'HomeAndKitchen', 'Home & Kitchen', 2454176031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Industrial', 'Industrial & Scientific', 5866079031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Jewelry', 'Jewellery', 1951049031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'KindleStore', 'Kindle Store', 1571278031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Luggage', 'Luggage & Bags', 2454170031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'LuxuryBeauty', 'Luxury Beauty', 5311359031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'MoviesAndTV', 'Movies & TV Shows', 976417031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Music', 'Music', 976446031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'MusicalInstruments', 'Musical Instruments', 3677698031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'OfficeProducts', 'Office Products', 2454173031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'PetSupplies', 'Pet Supplies', 4740420031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Shoes', 'Shoes & Handbags', 1571284031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Software', 'Software', 976452031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'SportsAndOutdoors', 'Sports, Fitness & Outdoors', 1984444031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'ToolsAndHomeImprovement', 'Tools & Home Improvement', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'ToysAndGames', 'Toys & Games', 1350381031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'VideoGames', 'Video Games', 976461031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IN', 'Watches', 'Watches', 1350388031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Apparel', 'Abbigliamento', 2844434031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'GroceryAndGourmetFood', 'Alimentari e cura della casa', 6198093031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'EverythingElse', 'Altro', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'MobileApps', 'App e Giochi', 1661661031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Automotive', 'Auto e Moto', 1571281031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Beauty', 'Bellezza', 6198083031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'GiftCards', 'Buoni Regalo', 3557018031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'OfficeProducts', 'Cancelleria e prodotti per ufficio', 3606311031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'HomeAndKitchen', 'Casa e cucina', 524016031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Music', 'CD e Vinili', 412601031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Electronics', 'Elettronica', 412610031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'ToolsAndHomeImprovement', 'Fai da te', 2454161031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'MoviesAndTV', 'Film e TV', 412607031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'GardenAndOutdoor', 'Giardino e giardinaggio', 635017031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'ToysAndGames', 'Giochi e giocattoli', 523998031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Jewelry', 'Gioielli', 2454164031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Appliances', 'Grandi elettrodomestici', 14437357031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Handmade', 'Handmade', 9699426031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Lighting', 'Illuminazione', 1571293031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Industrial', 'Industria e Scienza', 5866069031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Computers', 'Informatica', 425917031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'KindleStore', 'Kindle Store', 1331141031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Books', 'Libri', 411664031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'ForeignBooks', 'Libri in altre lingue', 433843031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Fashion', 'Moda', 5512286031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'DigitalMusic', 'Musica Digitale', 1748204031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Watches', 'Orologi', 524010031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Baby', 'Prima infanzia', 1571287031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'PetSupplies', 'Prodotti per animali domestici', 12472500031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'HealthPersonalCare', 'Salute e cura della persona', 1571290031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Shoes', 'Scarpe e borse', 524007031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Software', 'Software', 412613031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'SportsAndOutdoors', 'Sport e tempo libero', 524013031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'MusicalInstruments', 'Strumenti musicali e DJ', 3628630031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'All', 'Tutte le categorie', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'Luggage', 'Valigeria', 2454149031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('IT', 'VideoGames', 'Videogiochi', 412604031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'GroceryAndGourmetFood', 'Alimentación y bebidas', 6198073031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'MobileApps', 'Appstore para Android', 1661651031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Baby', 'Bebé', 1703496031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Beauty', 'Belleza', 6198055031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'ToolsAndHomeImprovement', 'Bricolaje y herramientas', 2454134031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'GiftCards', 'Cheques regalo', 3564280031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Vehicles', 'Coche - renting', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Automotive', 'Coche y moto', 1951052031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'SportsAndOutdoors', 'Deportes y aire libre', 2665403031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Electronics', 'Electrónica', 667050031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Luggage', 'Equipaje', 2454130031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Appliances', 'Grandes electrodomésticos', 4772051031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Handmade', 'Handmade', 9699483031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'HomeAndKitchen', 'Hogar y cocina', 599392031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Lighting', 'Iluminación', 3564290031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Industrial', 'Industria y ciencia', 5866089031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Computers', 'Informática', 667050031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'MusicalInstruments', 'Instrumentos musicales', 3628867031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'GardenAndOutdoor', 'Jardín', 1571260031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Jewelry', 'Joyería', 2454127031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'ToysAndGames', 'Juguetes y juegos', 599386031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Books', 'Libros', 599365031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'ForeignBooks', 'Libros en idiomas extranjeros', 599368031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Fashion', 'Moda', 5512276031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'DigitalMusic', 'Música Digital', 1748201031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Music', 'Música: CDs y vinilos', 599374031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'OfficeProducts', 'Oficina y papelería', 3628729031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'EverythingElse', 'Otros Productos', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'MoviesAndTV', 'Películas y TV', 599380031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'PetSupplies', 'Productos para mascotas', 12472656031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Watches', 'Relojes', 599389031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Apparel', 'Ropa y accesorios', 2846221031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'HealthPersonalCare', 'Salud y cuidado personal', 3677431031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Software', 'Software', 599377031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'KindleStore', 'Tienda Kindle', 818938031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'All', 'Todos los departamentos', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'VideoGames', 'Videojuegos', 599383031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('ES', 'Shoes', 'Zapatos y complementos', 1571263031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'GroceryAndGourmetFood', 'Alimentos y Bebidas', 17608485011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'Automotive', 'Auto', 13848849011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'Baby', 'Bebé', 9482651011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'SportsAndOutdoors', 'Deportes y Aire Libre', 9482661011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'Electronics', 'Electrónicos', 9482559011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'ToolsAndHomeImprovement', 'Herramientas y Mejoras del Hogar', 9482671011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'HomeAndKitchen', 'Hogar y Cocina', 9482594011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'IndustrialAndScientific', 'Industria y ciencia', 11076224011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'MusicalInstruments', 'Instrumentos musicales', 13848859011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'ToysAndGames', 'Juegos y juguetes', 11260442011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'Books', 'Libros', 9298577011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'PetSupplies', 'Mascotas', 11782337011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'Music', 'Música', 9482621011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'OfficeProducts', 'Oficina y Papelería', 9673845011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'MoviesAndTV', 'Películas y Series de TV', 9482630011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'Handmade', 'Productos Handmade', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'Watches', 'Relojes', 9482681011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'Fashion', 'Ropa, Zapatos y Accesorios', 13848838011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'FashionBaby', 'Ropa, Zapatos y Accesorios Bebé', 14092999011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'FashionMen', 'Ropa, Zapatos y Accesorios Hombres', 14093000011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'FashionWomen', 'Ropa, Zapatos y Accesorios Mujeres', 14093002011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'FashionGirls', 'Ropa, Zapatos y Accesorios Niñas', 14093003011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'FashionBoys', 'Ropa, Zapatos y Accesorios Niños', 14093004011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'HealthPersonalCare', 'Salud, Belleza y Cuidado Personal', 9482611011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'Software', 'Software', 9482691011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'KindleStore', 'Tienda Kindle', 6446440011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'All', 'Todos los departamentos', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('MX', 'VideoGames', 'Videojuegos', 9482641011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('BR', 'MobileApps', 'Apps e Jogos', 6563510011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('BR', 'HomeAndKitchen', 'Casa e Cozinha', 16191000011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('BR', 'Computers', 'Computadores e Informática', 16339926011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('BR', 'Electronics', 'Eletrônicos', 16209062011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('BR', 'ToolsAndHomeImprovement', 'Ferramentas e Materiais de Construção', 16957182011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('BR', 'VideoGames', 'Games', 7791986011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('BR', 'Books', 'Livros', 7841278011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('BR', 'KindleStore', 'Loja Kindle', 5308308011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('BR', 'OfficeProducts', 'Material para Escritório e Papelaria', 16957240011, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('BR', 'All', 'Todos os departamentos', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'All', 'All Departments', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'MobileApps', 'Apps & Games', 2544160051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'Automotive', 'Automotive', 4851454051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'Baby', 'Baby', 4851510051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'Beauty', 'Beauty', 4851567051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'Books', 'Books', 4851626051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'Music', 'CDs & Vinyl', 4852330051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'Fashion', 'Clothing & Shoes', 4851856051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'Computers', 'Computers', 4851683051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'Electronics', 'Electronics', 4851799051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'EverythingElse', 'Everything Else', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'GiftCards', 'Gift Cards', 5264049051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'HealthPersonalCare', 'Health, Household & Personal Care', 4851917051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'HomeAndKitchen', 'Home & Kitchen', 4851975051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'ToolsAndHomeImprovement', 'Home Improvement', 4852033051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'KindleStore', 'Kindle Store', 2496751051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'Lighting', 'Lighting', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'Luggage', 'Luggage & Travel Gear', 5130733051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'MoviesAndTV', 'Movies & TV', 4852264051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'PetSupplies', 'Pet Supplies', 5514968051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'Software', 'Software', 4852502051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'SportsAndOutdoors', 'Sports, Fitness & Outdoors', 4852559051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'OfficeProducts', 'Stationery & Office Products', 4852445051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'ToysAndGames', 'Toys & Games', 4851510051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AU', 'VideoGames', 'Video Games', 4852675051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'All', 'All Departments', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'Appliances', 'Appliances', 15149781031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'ArtsAndCrafts', 'Arts, Crafts & Sewing', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'Automotive', 'Automotive Parts & Accessories', 11498031031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'Baby', 'Baby', 11498088031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'Beauty', 'Beauty & Personal Care', 11497860031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'Books', 'Books', 11497688031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'Fashion', 'Clothing, Shoes & Jewelry', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'Computers', 'Computers', 11497745031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'Electronics', 'Electronics', 11601326031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'EverythingElse', 'Everything Else', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'GroceryAndGourmetFood', 'Grocery & Gourmet Food', 15150009031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'HealthPersonalCare', 'Health, Household & Baby Care', 11601441031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'GardenAndOutdoor', 'Home & Garden', 15149895031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'HomeAndKitchen', 'Home & Kitchen', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'Industrial', 'Industrial & Scientific', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'Lighting', 'Lighting', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'MusicalInstruments', 'Musical Instruments', 15150237031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'OfficeProducts', 'Office Products', 15150350031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'PetSupplies', 'Pet Supplies', 15150408031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'Software', 'Software', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'SportsAndOutdoors', 'Sports', 11601213031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'ToolsAndHomeImprovement', 'Tools & Home Improvement', 11601270031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'ToysAndGames', 'Toys & Games', 11497803031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('AE', 'VideoGames', 'Video Games', 11601384031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'All', 'Alle afdelingen', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'Automotive', 'Auto en motor', 16241608031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'Baby', 'Babyproducten', 16241665031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'Beauty', 'Beauty en persoonlijke verzorging', 16241722031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'Books', 'Boeken', 16241780031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'GiftCards', 'Cadeaubonnen', 16241985031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'Music', 'Cd\'s en lp\'s', 16242402031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'Electronics', 'Elektronica', 16269067031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'MoviesAndTV', 'Films en tv', 16242344031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'HealthPersonalCare', 'Gezondheid en persoonlijke verzorging', 16242172031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'PetSupplies', 'Huisdierbenodigdheden', 16242573031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'OfficeProducts', 'Kantoorproducten', 16242516031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'KindleStore', 'Kindle Store', 4541018031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'Fashion', 'Kleding, schoenen en sieraden', 16241836031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'ToolsAndHomeImprovement', 'Klussen en gereedschap', 16242229031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'GroceryAndGourmetFood', 'Levensmiddelen', 16242079031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'MusicalInstruments', 'Muziekinstrumenten', 16242459031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'EverythingElse', 'Overig', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'Software', 'Software', 16242630031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'ToysAndGames', 'Speelgoed en spellen', 16242744031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'SportsAndOutdoors', 'Sport en outdoor', 16242687031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'GardenAndOutdoor', 'Tuin, terras en gazon', 16241928031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'VideoGames', 'Videogames', 16242801031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'HomeAndKitchen', 'Wonen en keuken', 16295908031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('NL', 'Industrial', 'Zakelijk, industrie en wetenschap', 16242288031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'All', 'All Departments', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'Automotive', 'Automotive', 6314216051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'Baby', 'Baby', 6314274051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'Beauty', 'Beauty & Personal Care', 6314331051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'Computers', 'Computers', 6436071051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'Electronics', 'Electronics', 6314450051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'GroceryAndGourmetFood', 'Grocery', 6314507051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'HealthPersonalCare', 'Health, Household & Personal Care', 6314573051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'HomeAndKitchen', 'Home, Kitchen & Dining', 6314631051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'OfficeProducts', 'Office Products', 6314869051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'PetSupplies', 'Pet Supplies', 6315297051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'SportsAndOutdoors', 'Sports & Outdoors', 6314941051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'ToolsAndHomeImprovement', 'Tools & Home Improvement', 6314688051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'ToysAndGames', 'Toys & Games', 6315069051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SG', 'VideoGames', 'Video Games', 6315183051, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','All','全部分类','0','','Availability#ItemPage#Keywords#MaximumPrice#MerchantId#MinPercentageOff#MinimumPrice');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Apparel','服饰箱包','2016157051','relevancerank#salesrank#price#-price#reviewrank_authority#-launch-date#-pct-off','Author#Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Appliances',' 大家电 ','80208071','relevancerank#salesrank#price#-price#reviewrank#reviewrank_authority#-launch-date#-pct-off','Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Automotive','汽车用品','1947900051','relevancerank#salesrank#price#-price#reviewrank#reviewrank_authority#-launch-date#-pct-off','Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Baby','母婴用品','42693071','relevancerank#salesrank#price#-price#reviewrank#reviewrank_authority','Author#Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Beauty','美容化妆','746777051','relevancerank#salesrank#price#-price#reviewrank','Author#Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Books','图书','658391051','salesrank#pricerank#inverse-pricerank#daterank#titlerank#-titlerank#price#-price#-publication_date#-unit-sales','Author#Availability#ItemPage#Keywords#MaximumPrice#MerchantId#MinPercentageOff#MinimumPrice#Power#Publisher#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Electronics','电子','2016117051','salesrank#price#-price#titlerank#-titlerank#release-date#-release-date#releasedate#-releasedate','Author#Availability#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','GiftCards','礼品卡','311868071','relevancerank#popularityrank#price#-price#reviewrank#-release-date','Author#Availability#ItemPage#Keywords#MaximumPrice#MerchantId#MinPercentageOff#MinimumPrice#Publisher#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Grocery','食品','2127216051','relevancerank#salesrank#price#-price#reviewrank','Availability#Brand#ItemPage#Keywords#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','HealthPersonalCare','个护健康','852804051','salesrank#price#-price#titlerank#-titlerank#release-date#-release-date#releasedate#-releasedate','Author#Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Home','家用','2016127051','relevancerank#salesrank#reviewrank_authority#reviewrank#price#-price','Author#Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff#MinimumPrice#Neighborhood#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','HomeImprovement','家居装修','1952921051','relevancerank#salesrank#reviewrank_authority#reviewrank#price#-price','Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff#MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Jewelry','珠宝首饰','816483051','relevancerank#salesrank#reviewrank#price#-price','Availability#ItemPage#Keywords#MerchantId#MinPercentageOff#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','KindleStore','Kindle商店','116088071','relevancerank#salesrank#price#-price#reviewrank#reviewrank_authority#daterank','Author#Availability#ItemPage#Keywords#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Publisher#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Kitchen','厨具','2016126051','relevancerank#popularityrank#price#-price#reviewrank#-release-date#pct-off','Author#Availability#ItemPage#Keywords#MaximumPrice#MerchantId#MinPercentageOff#MinimumPrice#Publisher#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','MobileApps','应用程序和游戏','146629071','relevancerank#popularityrank#price#-price#reviewrank','Author#Availability#ItemPage#Keywords#MaximumPrice#MerchantId#MinPercentageOff#MinimumPrice#Publisher#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Music','音乐','754387051','salesrank#pricerank#price#-price#-pricerank#titlerank#-titlerank#orig-rel-date#releasedate#-orig-rel-date#-releasedate','Artist#Availability#ItemPage#Keywords#MaximumPrice#MerchantId#MinPercentageOff#MinimumPrice#ReleaseDate#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','MusicalInstruments','乐器','2127219051','relevancerank#salesrank#price#-price#reviewrank#reviewrank_authority#date-desc-rank','Author#Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff#MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','OfficeProducts','办公用品','2127222051','relevancerank#salesrank#price#-price#reviewrank','Availability#Brand#ItemPage#Keywords#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','PCHardware','电脑/IT','42690071','relevancerank#popularityrank#price#-price#reviewrank#-release-date#pct-off','Author#Availability#ItemPage#Keywords#MaximumPrice#MerchantId#MinPercentageOff#MinimumPrice#Publisher#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','PetSupplies','宠物用品','118864071','relevancerank#salesrank#-launch-date#-pct-off#price#-price#reviewrank#reviewrank_authority','Author#Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Photo','摄影/摄像','755653051','relevancerank#salesrank#-launch-date#-pct-off#price#-price#reviewrank#reviewrank_authority','Author#Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Shoes','鞋靴','2029190051','relevancerank#salesrank#price#-price#reviewrank#reviewrank_authority#-launch-date','Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Software','软件','863873051','salesrank#price#-price#titlerank#-titlerank#release-date#-release-date#releasedate#-releasedate','Author#Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','SportingGoods','运动户外休闲','836313051','salesrank#price#-price#titlerank#-titlerank#release-date#-release-date','Availability#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Toys','玩具','647071051','salesrank#price#-price#titlerank#-titlerank#release-date#-release-date#releasedate#-releasedate','Availability#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Video','音像','2016137051','salesrank#pricerank#price#-pricerank#-price#titlerank#-titlerank#orig-rel-date#releasedate#-orig-rel-date#-releasedate','Actor#Availability#Director#ItemPage#Keywords#MaximumPrice#MerchantId#MinPercentageOff #MinimumPrice#Publisher#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','VideoGames','游戏/娱乐','897416051','salesrank#price#-price#titlerank#-titlerank#release-date#-release-date#releasedate#-releasedate','Author#Availability#Brand#ItemPage#Keywords#Manufacturer#MaximumPrice#MerchantId#MinPercentageOff#MinimumPrice#ReleaseDate#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('CN','Watches','钟表','1953165051','salesrank#price#-price#titlerank#-titlerank','Availability#ItemPage#Keywords#MerchantId#MinPercentageOff #Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SA', 'All', 'All Departments', 0, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SA', 'Automotive', 'Automotive', 12462878031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SA', 'Baby', 'Baby', 12462935031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SA', 'Beauty', 'Beauty & Personal Care', 12462992031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SA', 'Electronics', 'Electronics', 12463163031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SA', 'GroceryAndGourmetFood', 'Grocery', 16636904031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SA', 'OfficeProducts', 'Office Products', 16637246031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SA', 'PetSupplies', 'Pet Supplies', 16637303031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SA', 'ToolsAndHomeImprovement', 'Tools & Home Improvement', 12463391031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SA', 'ToysAndGames', 'Toys & Games', 12463619031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) VALUES ('SA', 'VideoGames', 'Video Games', 12463676031, 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'All', 'Alla avdelningar', '0', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'Automotive', 'Delar och tillbehör till bilar', '20512453031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'Baby', 'Baby', '20512510031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'Beauty', 'Skönhet och kroppsvård', '20512567031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'Books', 'Böcker', '20512624031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'Electronics', 'Elektronik', '20512681031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'Fashion', 'Kläder, skor och smycken', '20512738031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'GroceryAndGourmetFood', 'Livsmedel och gourmetmat', '-1', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'HealthPersonalCare', 'Hälsa, hushåll och barnvård', '20512966031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'HomeAndKitchen', 'Hem', '20513023031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'MoviesAndTV', 'Filmer och TV', '20513194031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'Music', 'CD och vinyl', '20513251031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'OfficeProducts', 'Kontorsprodukter', '20513365031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'PetSupplies', 'Husdjursprodukter', '20513422031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'SportsAndOutdoors', 'Sport och outdoor', '20513536031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'ToolsAndHomeImprovement', 'Verktyg och husrenovering', '20513080031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'ToysAndGames', 'Leksaker och spel', '20513593031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('SE', 'VideoGames', 'Videospel', '20513650031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'All', 'Tüm Kategoriler', '0', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'Baby', 'Bebek', '12466208031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'Books', 'Kitaplar', '12466380031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'Computers', 'Bilgisayarlar', '12466439031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'Electronics', 'Elektronik', '12466496031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'EverythingElse', 'Diğer Her Şey', '-1', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'Fashion', 'Moda', '12466553031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'HomeAndKitchen', 'Ev ve Mutfak', '12466781031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'OfficeProducts', 'Ofis Ürünleri', '12467009031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'SportsAndOutdoors', 'Spor', '12467068031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'ToolsAndHomeImprovement', 'Yapı Market', '12466724031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'ToysAndGames', 'Oyuncaklar ve Oyunlar', '12467126031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('TR', 'VideoGames', 'PC ve Video Oyunları', '12467183031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'All', 'Wszystkie kategorie', '0', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'ArtsAndCrafts', 'Arts & crafts', '20656845031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'Automotive', 'Motoryzacja', '20656962031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'Baby', 'Dziecko', '20657079031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'Beauty', 'Uroda', '20657196031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'Books', 'Książki', '20657314031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'Electronics', 'Elektronika', '20657433031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'Fashion', 'Odzież, obuwie i akcesoria', '20657552031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'GardenAndOutdoor', 'Ogród', '20657670031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'GiftCards', 'Karty podarunkowe', '20657800031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'HealthPersonalCare', 'Zdrowie i gospodarstwo domowe', '20658036031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'HomeAndKitchen', 'Dom i kuchnia', '20658155031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'Industrial', 'Biznes, przemysł i nauka', '20658725031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'MoviesAndTV', 'Filmy i programy TV', '20658842031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'Music', 'Muzyka', '20658959031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'MusicalInstruments', 'Instrumenty muzyczne', '20659076031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'OfficeProducts', 'Biuro', '20659193031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'PetSupplies', 'Zwierzęta', '20659310031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'Software', 'Oprogramowanie', '20659427031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'SportsAndOutdoors', 'Sport i turystyka', '20659544031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'ToolsAndHomeImprovement', 'Renowacja domu', '20658608031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'ToysAndGames', 'Zabawki i gry', '20659661031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [INSERT command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_amz_locale_reference`]insert ignore into `wp_amz_locale_reference` (`country`, `searchIndex`, `department`, `browseNode`, `sortValues`, `itemSearchParams`) values('PL', 'VideoGames', 'Gry wideo', '20659778031', 'AvgCustomerReviews#Featured#NewestArrivals#PriceHighToLow#PriceLowToHigh#Relevance', 'Actor#Artist#Author#Availability#Brand#BrowseNode#Condition#CurrencyOfPreference#DeliveryFlags#LanguagesOfPreference#MaxPrice#Merchant#MinPrice#MinReviewsRating#MinSavingPercent#Sort#Title');
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]update wp_options set option_value = 'a:38:{i:1771682523;a:1:{s:14:\"WooZone_report\";a:1:{s:32:\"df83978237ac8ed4e45a89f179c5d0d0\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:1:{i:0;s:6:\"report\";}s:8:\"interval\";i:3600;}}}i:1773820983;a:1:{s:27:\"WooZone_syncwidget_products\";a:1:{s:32:\"b35b57dd4596ed3005a088068023f579\";a:3:{s:8:\"schedule\";s:12:\"WooZone_1min\";s:4:\"args\";a:1:{i:0;s:19:\"syncwidget_products\";}s:8:\"interval\";i:60;}}}i:1773821004;a:1:{s:17:\"wp_automatic_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:13:\"once_a_minute\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1773821011;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1773821017;a:1:{s:20:\"wpmcs_bg_runner_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1773821043;a:1:{s:21:\"WooZone_sync_products\";a:1:{s:32:\"59e8d82e52f5a878f3e6a50a254a6f2f\";a:3:{s:8:\"schedule\";s:12:\"WooZone_2min\";s:4:\"args\";a:1:{i:0;s:13:\"sync_products\";}s:8:\"interval\";i:120;}}}i:1773821103;a:1:{s:24:\"WooZone_autoimport_queue\";a:1:{s:32:\"65c8924e396509786638d88b0ad30331\";a:3:{s:8:\"schedule\";s:12:\"WooZone_3min\";s:4:\"args\";a:1:{i:0;s:16:\"autoimport_queue\";}s:8:\"interval\";i:180;}}}i:1773821223;a:1:{s:25:\"WooZone_autoimport_search\";a:1:{s:32:\"e25ab9e1f7d5242f20c82431b61bedce\";a:3:{s:8:\"schedule\";s:12:\"WooZone_5min\";s:4:\"args\";a:1:{i:0;s:17:\"autoimport_search\";}s:8:\"interval\";i:300;}}}i:1773821393;a:1:{s:24:\"cegg_module_updater_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"ten_min\";s:4:\"args\";a:0:{}s:8:\"interval\";i:600;}}}i:1773821523;a:1:{s:21:\"WooZone_unblock_crons\";a:1:{s:32:\"a20a07ce2c2c97de4e9da87c13e07d5f\";a:3:{s:8:\"schedule\";s:13:\"WooZone_10min\";s:4:\"args\";a:1:{i:0;s:13:\"unblock_crons\";}s:8:\"interval\";i:600;}}}i:1773821823;a:1:{s:33:\"WooZone_syncwidget_products_cycle\";a:1:{s:32:\"3b933cce5a3d9f6e4df3e92dc1764778\";a:3:{s:8:\"schedule\";s:13:\"WooZone_15min\";s:4:\"args\";a:1:{i:0;s:25:\"syncwidget_products_cycle\";}s:8:\"interval\";i:900;}}}i:1773821847;a:2:{s:19:\"litespeed_task_lqip\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"litespeed_filter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}s:26:\"litespeed_task_imgoptm_req\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:16:\"litespeed_filter\";s:4:\"args\";a:0:{}s:8:\"interval\";i:900;}}}i:1773822501;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1773822723;a:2:{s:24:\"WooZone_sync_products_gc\";a:1:{s:32:\"ab11a23fdd5dd78cc3ebd288c776b8dd\";a:3:{s:8:\"schedule\";s:13:\"WooZone_30min\";s:4:\"args\";a:1:{i:0;s:16:\"sync_products_gc\";}s:8:\"interval\";i:1800;}}s:27:\"WooZone_sync_products_cycle\";a:1:{s:32:\"4306d9cdb4f14917e46b190098163010\";a:3:{s:8:\"schedule\";s:13:\"WooZone_30min\";s:4:\"args\";a:1:{i:0;s:19:\"sync_products_cycle\";}s:8:\"interval\";i:1800;}}}i:1773824194;a:1:{s:20:\"jetpack_clean_nonces\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1773824195;a:1:{s:33:\"wc_admin_process_orders_milestone\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1773824202;a:1:{s:29:\"wc_admin_unsnooze_admin_notes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1773824301;a:2:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1773824523;a:1:{s:14:\"WooZone_report\";a:1:{s:32:\"df83978237ac8ed4e45a89f179c5d0d0\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:1:{i:0;s:6:\"report\";}s:8:\"interval\";i:3600;}}}i:1773831278;a:1:{s:33:\"check_plugin_updates-rh-woo-tools\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773844778;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773851888;a:1:{s:29:\"wp_statistics_daily_cron_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773856576;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773856594;a:1:{s:20:\"jetpack_v2_heartbeat\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773856596;a:1:{s:45:\"woocommerce_marketplace_cron_fetch_promotions\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1773857886;a:1:{s:35:\"puc_cron_check_updates-wp-automatic\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1773859190;a:1:{s:22:\"cegg_daily_maintenance\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773860301;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773860306;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1773860349;a:4:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:24:\"run_weekly_partner_astra\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1773863452;a:1:{s:26:\"greenshift_check_cron_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773863901;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1773878400;a:4:{s:34:\"wp_statistics_record_daily_summary\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:26:\"wp_statistics_dbmaint_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:35:\"rank_math/redirection/clean_trashed\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:30:\"rank_math/links/internal_links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773897461;a:1:{s:35:\"rank_math/content-ai/update_prompts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1773946701;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1774283889;a:1:{s:35:\"wp_statistics_check_licenses_status\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1775839089;a:1:{s:31:\"wp_statistics_referrals_db_hook\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}' where 1=1 and option_id = '1';
WordPress database error: [UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]UPDATE `wp_options` SET `option_value` = 'a:11:{s:23:\"check_table_amz_amzkeys\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:48:\"Check plugin table wp_amz_amzkeys: installed ok.\";}s:12:\"check_tables\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:230:\"Check plugin tables: all installed ( amz_amazon_cache, amz_amzkeys, amz_assets, amz_cross_sell, amz_import_stats, amz_locale_reference, amz_products, amz_queue, amz_report_log, amz_search, amz_sync_widget, amz_sync_widget_asins ).\";}s:32:\"check_table_amz_locale_reference\";a:3:{s:7:\"timeout\";i:1773820962;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:57:\"Check plugin table wp_amz_locale_reference: installed ok.\";}s:28:\"check_table_amz_amazon_cache\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_amazon_cache: installed ok.\";}s:28:\"check_table_amz_import_stats\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:53:\"Check plugin table wp_amz_import_stats: installed ok.\";}s:27:\"check_table_amz_sync_widget\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:52:\"Check plugin table wp_amz_sync_widget: installed ok.\";}s:33:\"check_table_amz_sync_widget_asins\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:58:\"Check plugin table wp_amz_sync_widget_asins: installed ok.\";}s:18:\"check_alter_tables\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:51:\"Check plugin tables (alter): check_alter_tables OK.\";}s:27:\"check_alter_table_amz_queue\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_queue OK.\";}s:27:\"check_alter_table_amz_oct18\";a:3:{s:7:\"timeout\";i:1773820963;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:60:\"Check plugin tables (alter): check_alter_table_amz_oct18 OK.\";}s:21:\"check_cronjobs_prefix\";a:3:{s:7:\"timeout\";i:1775246033;s:6:\"status\";s:5:\"valid\";s:4:\"html\";s:26:\"Check cronjobs prefix: OK.\";}}' WHERE `option_name` = 'WooZone_integrity_check'
WordPress database error: [INSERT, UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES ('WooZone_db_version', '9.0', 'auto') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`)
WordPress database error: [INSERT, UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES ('WooZone_db_version', '15.0.0', 'auto') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`)
WordPress database error: [INSERT, UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_woocommerce_webhook_ids_status_active', 'a:0:{}', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`)
WordPress database error: [INSERT, UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_wc_attribute_taxonomies', 'a:699:{i:0;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"177\";s:14:\"attribute_name\";s:18:\"ac-adapter-current\";s:15:\"attribute_label\";s:18:\"AC Adapter Current\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:1;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"276\";s:14:\"attribute_name\";s:26:\"accepted-voltage-frequency\";s:15:\"attribute_label\";s:26:\"Accepted voltage frequency\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:2;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"627\";s:14:\"attribute_name\";s:15:\"access-location\";s:15:\"attribute_label\";s:15:\"Access Location\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:3;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"323\";s:14:\"attribute_name\";s:13:\"actuator-type\";s:15:\"attribute_label\";s:13:\"Actuator Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:4;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"316\";s:14:\"attribute_name\";s:27:\"additional-product-features\";s:15:\"attribute_label\";s:27:\"Additional product features\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:5;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"404\";s:14:\"attribute_name\";s:15:\"adhesive-format\";s:15:\"attribute_label\";s:15:\"Adhesive Format\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:6;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"406\";s:14:\"attribute_name\";s:17:\"adhesive-location\";s:15:\"attribute_label\";s:17:\"Adhesive Location\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:7;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"405\";s:14:\"attribute_name\";s:19:\"adhesive-side-count\";s:15:\"attribute_label\";s:19:\"Adhesive Side Count\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:8;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"8\";s:14:\"attribute_name\";s:17:\"advanced-features\";s:15:\"attribute_label\";s:17:\"advanced-features\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"1\";}i:9;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"16\";s:14:\"attribute_name\";s:21:\"age-range-description\";s:15:\"attribute_label\";s:23:\"Age Range (Description)\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:10;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"147\";s:14:\"attribute_name\";s:17:\"air-flow-capacity\";s:15:\"attribute_label\";s:17:\"Air Flow Capacity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:11;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"501\";s:14:\"attribute_name\";s:21:\"air-frying-technology\";s:15:\"attribute_label\";s:21:\"Air Frying Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:12;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"667\";s:14:\"attribute_name\";s:5:\"alarm\";s:15:\"attribute_label\";s:5:\"Alarm\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:13;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"193\";s:14:\"attribute_name\";s:11:\"alarm-clock\";s:15:\"attribute_label\";s:11:\"Alarm Clock\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:14;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"116\";s:14:\"attribute_name\";s:10:\"alert-type\";s:15:\"attribute_label\";s:10:\"Alert Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:15;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"670\";s:14:\"attribute_name\";s:8:\"amperage\";s:15:\"attribute_label\";s:8:\"Amperage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:16;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"540\";s:14:\"attribute_name\";s:12:\"animal-theme\";s:15:\"attribute_label\";s:12:\"Animal theme\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:17;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"149\";s:14:\"attribute_name\";s:22:\"are-batteries-included\";s:15:\"attribute_label\";s:22:\"Are Batteries Included\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:18;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"622\";s:14:\"attribute_name\";s:10:\"arm-height\";s:15:\"attribute_label\";s:10:\"Arm Height\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:19;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"611\";s:14:\"attribute_name\";s:9:\"arm-style\";s:15:\"attribute_label\";s:9:\"Arm Style\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:20;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"430\";s:14:\"attribute_name\";s:18:\"art-craft-kit-type\";s:15:\"attribute_label\";s:18:\"Art Craft Kit Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:21;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"432\";s:14:\"attribute_name\";s:12:\"aspect-ratio\";s:15:\"attribute_label\";s:12:\"Aspect Ratio\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:22;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"295\";s:14:\"attribute_name\";s:18:\"assembled-diameter\";s:15:\"attribute_label\";s:18:\"Assembled Diameter\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:23;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"305\";s:14:\"attribute_name\";s:16:\"assembled-height\";s:15:\"attribute_label\";s:16:\"Assembled Height\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:24;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"306\";s:14:\"attribute_name\";s:16:\"assembled-length\";s:15:\"attribute_label\";s:16:\"Assembled Length\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:25;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"307\";s:14:\"attribute_name\";s:15:\"assembled-width\";s:15:\"attribute_label\";s:15:\"Assembled Width\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:26;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"314\";s:14:\"attribute_name\";s:29:\"assembly-instructions-descrip\";s:15:\"attribute_label\";s:33:\"Assembly Instructions Description\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:27;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"140\";s:14:\"attribute_name\";s:17:\"assembly-required\";s:15:\"attribute_label\";s:17:\"Assembly required\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:28;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"394\";s:14:\"attribute_name\";s:13:\"assembly-time\";s:15:\"attribute_label\";s:13:\"Assembly Time\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:29;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"231\";s:14:\"attribute_name\";s:22:\"assortment-bundle-type\";s:15:\"attribute_label\";s:22:\"Assortment Bundle Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:30;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"415\";s:14:\"attribute_name\";s:7:\"athlete\";s:15:\"attribute_label\";s:7:\"Athlete\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:31;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"51\";s:14:\"attribute_name\";s:17:\"audio-driver-size\";s:15:\"attribute_label\";s:17:\"Audio Driver Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:32;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"45\";s:14:\"attribute_name\";s:17:\"audio-driver-type\";s:15:\"attribute_label\";s:17:\"Audio Driver Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:33;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"236\";s:14:\"attribute_name\";s:11:\"audio-input\";s:15:\"attribute_label\";s:11:\"Audio Input\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:34;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"198\";s:14:\"attribute_name\";s:10:\"audio-jack\";s:15:\"attribute_label\";s:10:\"Audio Jack\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:35;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"65\";s:14:\"attribute_name\";s:13:\"audio-latency\";s:15:\"attribute_label\";s:13:\"Audio Latency\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:36;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"127\";s:14:\"attribute_name\";s:29:\"audio-visual-recording-capabi\";s:15:\"attribute_label\";s:35:\"Audio Visual Recording Capabilities\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:37;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"450\";s:14:\"attribute_name\";s:6:\"author\";s:15:\"attribute_label\";s:6:\"Author\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:38;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"451\";s:14:\"attribute_name\";s:7:\"author2\";s:15:\"attribute_label\";s:7:\"Author2\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:39;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"421\";s:14:\"attribute_name\";s:18:\"auto-part-position\";s:15:\"attribute_label\";s:18:\"Auto Part Position\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:40;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"551\";s:14:\"attribute_name\";s:12:\"auto-shutoff\";s:15:\"attribute_label\";s:12:\"Auto Shutoff\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:41;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"409\";s:14:\"attribute_name\";s:19:\"automotive-fit-type\";s:15:\"attribute_label\";s:19:\"Automotive Fit Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:42;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"253\";s:14:\"attribute_name\";s:29:\"average-battery-life-in-hours\";s:15:\"attribute_label\";s:31:\"Average Battery Life (in hours)\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:43;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"275\";s:14:\"attribute_name\";s:12:\"average-life\";s:15:\"attribute_label\";s:12:\"Average Life\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:44;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"546\";s:14:\"attribute_name\";s:18:\"back-material-type\";s:15:\"attribute_label\";s:18:\"Back Material Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:45;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"610\";s:14:\"attribute_name\";s:10:\"back-style\";s:15:\"attribute_label\";s:10:\"Back Style\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:46;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"680\";s:14:\"attribute_name\";s:12:\"backing-type\";s:15:\"attribute_label\";s:12:\"Backing Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:47;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"513\";s:14:\"attribute_name\";s:13:\"base-diameter\";s:15:\"attribute_label\";s:13:\"Base Diameter\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:48;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"387\";s:14:\"attribute_name\";s:13:\"base-material\";s:15:\"attribute_label\";s:13:\"Base Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:49;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"211\";s:14:\"attribute_name\";s:9:\"base-type\";s:15:\"attribute_label\";s:9:\"Base Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:50;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"561\";s:14:\"attribute_name\";s:10:\"base-width\";s:15:\"attribute_label\";s:10:\"Base Width\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:51;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"37\";s:14:\"attribute_name\";s:9:\"batteries\";s:15:\"attribute_label\";s:9:\"Batteries\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:52;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"156\";s:14:\"attribute_name\";s:18:\"batteries-included\";s:15:\"attribute_label\";s:19:\"Batteries Included?\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:53;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"107\";s:14:\"attribute_name\";s:18:\"batteries-required\";s:15:\"attribute_label\";s:18:\"Batteries required\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:54;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"5\";s:14:\"attribute_name\";s:7:\"battery\";s:15:\"attribute_label\";s:7:\"battery\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"1\";}i:55;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"215\";s:14:\"attribute_name\";s:16:\"battery-capacity\";s:15:\"attribute_label\";s:16:\"Battery Capacity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:56;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"162\";s:14:\"attribute_name\";s:24:\"battery-cell-composition\";s:15:\"attribute_label\";s:24:\"Battery Cell Composition\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:57;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"312\";s:14:\"attribute_name\";s:17:\"battery-cell-type\";s:15:\"attribute_label\";s:17:\"Battery Cell Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:58;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"164\";s:14:\"attribute_name\";s:19:\"battery-description\";s:15:\"attribute_label\";s:19:\"Battery Description\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:59;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"44\";s:14:\"attribute_name\";s:12:\"battery-life\";s:15:\"attribute_label\";s:12:\"Battery Life\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:60;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"296\";s:14:\"attribute_name\";s:13:\"battery-power\";s:15:\"attribute_label\";s:13:\"Battery Power\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:61;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"76\";s:14:\"attribute_name\";s:20:\"battery-power-rating\";s:15:\"attribute_label\";s:20:\"Battery Power Rating\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:62;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"238\";s:14:\"attribute_name\";s:12:\"battery-type\";s:15:\"attribute_label\";s:12:\"Battery type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:63;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"277\";s:14:\"attribute_name\";s:10:\"beam-angle\";s:15:\"attribute_label\";s:10:\"Beam Angle\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:64;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"449\";s:14:\"attribute_name\";s:9:\"best-uses\";s:15:\"attribute_label\";s:9:\"Best uses\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:65;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"635\";s:14:\"attribute_name\";s:23:\"bicycle-drivetrain-type\";s:15:\"attribute_label\";s:23:\"Bicycle Drivetrain Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:66;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"630\";s:14:\"attribute_name\";s:9:\"bike-type\";s:15:\"attribute_label\";s:9:\"Bike Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:67;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"534\";s:14:\"attribute_name\";s:11:\"blade-color\";s:15:\"attribute_label\";s:11:\"Blade Color\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:68;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"349\";s:14:\"attribute_name\";s:10:\"blade-edge\";s:15:\"attribute_label\";s:10:\"Blade Edge\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:69;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"158\";s:14:\"attribute_name\";s:12:\"blade-length\";s:15:\"attribute_label\";s:12:\"Blade Length\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:70;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"348\";s:14:\"attribute_name\";s:14:\"blade-material\";s:15:\"attribute_label\";s:14:\"Blade Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:71;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"559\";s:14:\"attribute_name\";s:11:\"blade-shape\";s:15:\"attribute_label\";s:11:\"Blade Shape\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:72;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"537\";s:14:\"attribute_name\";s:12:\"blanket-form\";s:15:\"attribute_label\";s:12:\"Blanket Form\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:73;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"20\";s:14:\"attribute_name\";s:15:\"bluetooth-range\";s:15:\"attribute_label\";s:15:\"Bluetooth Range\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:74;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"21\";s:14:\"attribute_name\";s:17:\"bluetooth-version\";s:15:\"attribute_label\";s:17:\"Bluetooth Version\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:75;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"209\";s:14:\"attribute_name\";s:13:\"body-material\";s:15:\"attribute_label\";s:13:\"Body Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:76;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"571\";s:14:\"attribute_name\";s:18:\"bottle-nipple-type\";s:15:\"attribute_label\";s:18:\"Bottle nipple type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:77;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"573\";s:14:\"attribute_name\";s:11:\"bottle-type\";s:15:\"attribute_label\";s:11:\"Bottle type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:78;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"698\";s:14:\"attribute_name\";s:16:\"bottom-seal-type\";s:15:\"attribute_label\";s:16:\"Bottom Seal Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:79;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"550\";s:14:\"attribute_name\";s:13:\"bowl-capacity\";s:15:\"attribute_label\";s:13:\"Bowl Capacity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:80;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"503\";s:14:\"attribute_name\";s:13:\"bowl-material\";s:15:\"attribute_label\";s:13:\"Bowl Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:81;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"632\";s:14:\"attribute_name\";s:11:\"brake-style\";s:15:\"attribute_label\";s:11:\"Brake Style\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:82;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"30\";s:14:\"attribute_name\";s:5:\"brand\";s:15:\"attribute_label\";s:5:\"Brand\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:83;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"81\";s:14:\"attribute_name\";s:10:\"brand-name\";s:15:\"attribute_label\";s:10:\"Brand Name\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:84;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"344\";s:14:\"attribute_name\";s:20:\"breed-recommendation\";s:15:\"attribute_label\";s:20:\"Breed Recommendation\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:85;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"163\";s:14:\"attribute_name\";s:10:\"brightness\";s:15:\"attribute_label\";s:10:\"Brightness\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:86;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"434\";s:14:\"attribute_name\";s:16:\"bristle-material\";s:15:\"attribute_label\";s:16:\"Bristle Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:87;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"435\";s:14:\"attribute_name\";s:12:\"bristle-type\";s:15:\"attribute_label\";s:12:\"Bristle Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:88;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"228\";s:14:\"attribute_name\";s:19:\"built-in-microphone\";s:15:\"attribute_label\";s:19:\"Built In Microphone\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:89;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"267\";s:14:\"attribute_name\";s:9:\"bulb-base\";s:15:\"attribute_label\";s:9:\"Bulb Base\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:90;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"279\";s:14:\"attribute_name\";s:13:\"bulb-diameter\";s:15:\"attribute_label\";s:13:\"Bulb Diameter\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:91;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"167\";s:14:\"attribute_name\";s:13:\"bulb-features\";s:15:\"attribute_label\";s:13:\"Bulb Features\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:92;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"280\";s:14:\"attribute_name\";s:11:\"bulb-length\";s:15:\"attribute_label\";s:11:\"Bulb Length\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:93;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"269\";s:14:\"attribute_name\";s:15:\"bulb-shape-size\";s:15:\"attribute_label\";s:15:\"Bulb Shape Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:94;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"33\";s:14:\"attribute_name\";s:13:\"cable-feature\";s:15:\"attribute_label\";s:13:\"Cable Feature\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:95;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"159\";s:14:\"attribute_name\";s:12:\"cable-length\";s:15:\"attribute_label\";s:12:\"Cable Length\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:96;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"187\";s:14:\"attribute_name\";s:10:\"cable-type\";s:15:\"attribute_label\";s:10:\"Cable Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:97;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"520\";s:14:\"attribute_name\";s:18:\"candle-holder-form\";s:15:\"attribute_label\";s:18:\"Candle Holder Form\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:98;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"154\";s:14:\"attribute_name\";s:11:\"candle-type\";s:15:\"attribute_label\";s:11:\"Candle Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:99;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"337\";s:14:\"attribute_name\";s:8:\"capacity\";s:15:\"attribute_label\";s:8:\"Capacity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:100;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"208\";s:14:\"attribute_name\";s:14:\"capacity-total\";s:15:\"attribute_label\";s:14:\"Capacity Total\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:101;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"246\";s:14:\"attribute_name\";s:16:\"card-description\";s:15:\"attribute_label\";s:16:\"Card Description\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:102;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"343\";s:14:\"attribute_name\";s:17:\"care-instructions\";s:15:\"attribute_label\";s:17:\"Care instructions\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:103;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"61\";s:14:\"attribute_name\";s:19:\"carrying-case-color\";s:15:\"attribute_label\";s:19:\"Carrying Case Color\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:104;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"48\";s:14:\"attribute_name\";s:20:\"carrying-case-height\";s:15:\"attribute_label\";s:20:\"Carrying Case Height\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:105;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"46\";s:14:\"attribute_name\";s:20:\"carrying-case-length\";s:15:\"attribute_label\";s:20:\"Carrying Case Length\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:106;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"50\";s:14:\"attribute_name\";s:22:\"carrying-case-material\";s:15:\"attribute_label\";s:22:\"Carrying Case Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:107;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"49\";s:14:\"attribute_name\";s:20:\"carrying-case-weight\";s:15:\"attribute_label\";s:20:\"Carrying Case Weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:108;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"47\";s:14:\"attribute_name\";s:19:\"carrying-case-width\";s:15:\"attribute_label\";s:19:\"Carrying Case Width\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:109;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"439\";s:14:\"attribute_name\";s:17:\"cartoon-character\";s:15:\"attribute_label\";s:17:\"Cartoon Character\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:110;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"456\";s:14:\"attribute_name\";s:13:\"case-material\";s:15:\"attribute_label\";s:13:\"Case Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:111;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"298\";s:14:\"attribute_name\";s:19:\"cellular-technology\";s:15:\"attribute_label\";s:19:\"Cellular Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:112;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"605\";s:14:\"attribute_name\";s:16:\"certificate-type\";s:15:\"attribute_label\";s:16:\"Certificate Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:113;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"618\";s:14:\"attribute_name\";s:20:\"chair-backrest-width\";s:15:\"attribute_label\";s:20:\"Chair Backrest Width\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:114;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"41\";s:14:\"attribute_name\";s:13:\"charging-time\";s:15:\"attribute_label\";s:13:\"Charging Time\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:115;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"225\";s:14:\"attribute_name\";s:12:\"chassis-size\";s:15:\"attribute_label\";s:12:\"Chassis Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:116;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"245\";s:14:\"attribute_name\";s:13:\"chipset-brand\";s:15:\"attribute_label\";s:13:\"Chipset Brand\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:117;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"322\";s:14:\"attribute_name\";s:12:\"circuit-type\";s:15:\"attribute_label\";s:12:\"Circuit Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:118;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"196\";s:14:\"attribute_name\";s:10:\"clock-form\";s:15:\"attribute_label\";s:10:\"Clock Form\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:119;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"475\";s:14:\"attribute_name\";s:7:\"closure\";s:15:\"attribute_label\";s:7:\"Closure\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:120;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"488\";s:14:\"attribute_name\";s:16:\"closure-material\";s:15:\"attribute_label\";s:16:\"Closure Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:121;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"367\";s:14:\"attribute_name\";s:12:\"closure-type\";s:15:\"attribute_label\";s:12:\"Closure Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:122;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"497\";s:14:\"attribute_name\";s:19:\"coating-description\";s:15:\"attribute_label\";s:19:\"Coating Description\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:123;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"533\";s:14:\"attribute_name\";s:15:\"collection-name\";s:15:\"attribute_label\";s:15:\"Collection Name\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:124;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"7\";s:14:\"attribute_name\";s:5:\"color\";s:15:\"attribute_label\";s:5:\"Color\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:125;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"690\";s:14:\"attribute_name\";s:10:\"color-code\";s:15:\"attribute_label\";s:10:\"Color Code\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:126;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"82\";s:14:\"attribute_name\";s:10:\"color-name\";s:15:\"attribute_label\";s:10:\"Color Name\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:127;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"272\";s:14:\"attribute_name\";s:21:\"color-rendering-index\";s:15:\"attribute_label\";s:21:\"Color Rendering Index\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:128;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"292\";s:14:\"attribute_name\";s:25:\"color-rendering-index-cri\";s:15:\"attribute_label\";s:27:\"Color Rendering Index (CRI)\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:129;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"227\";s:14:\"attribute_name\";s:12:\"color-screen\";s:15:\"attribute_label\";s:12:\"Color Screen\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:130;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"271\";s:14:\"attribute_name\";s:17:\"color-temperature\";s:15:\"attribute_label\";s:17:\"Color Temperature\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:131;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"686\";s:14:\"attribute_name\";s:24:\"communication-technology\";s:15:\"attribute_label\";s:24:\"Communication technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:132;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"660\";s:14:\"attribute_name\";s:29:\"compatible-amazon-tablet-mode\";s:15:\"attribute_label\";s:31:\"Compatible Amazon Tablet Models\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:133;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"31\";s:14:\"attribute_name\";s:18:\"compatible-devices\";s:15:\"attribute_label\";s:18:\"Compatible Devices\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:134;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"401\";s:14:\"attribute_name\";s:19:\"compatible-material\";s:15:\"attribute_label\";s:19:\"Compatible Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:135;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"188\";s:14:\"attribute_name\";s:23:\"compatible-phone-models\";s:15:\"attribute_label\";s:23:\"Compatible Phone Models\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:136;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"696\";s:14:\"attribute_name\";s:18:\"compatible-refills\";s:15:\"attribute_label\";s:18:\"Compatible Refills\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:137;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"472\";s:14:\"attribute_name\";s:29:\"compatible-video-game-console\";s:15:\"attribute_label\";s:36:\"Compatible Video Game Console Models\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:138;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"684\";s:14:\"attribute_name\";s:20:\"computer-memory-type\";s:15:\"attribute_label\";s:20:\"Computer Memory Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:139;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"481\";s:14:\"attribute_name\";s:17:\"computer-platform\";s:15:\"attribute_label\";s:17:\"Computer Platform\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:140;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"502\";s:14:\"attribute_name\";s:13:\"configuration\";s:15:\"attribute_label\";s:13:\"Configuration\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:141;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"4\";s:14:\"attribute_name\";s:12:\"connectivity\";s:15:\"attribute_label\";s:12:\"connectivity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"1\";}i:142;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"93\";s:14:\"attribute_name\";s:21:\"connectivity-protocol\";s:15:\"attribute_label\";s:21:\"Connectivity Protocol\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:143;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"72\";s:14:\"attribute_name\";s:25:\"connectivity-technologies\";s:15:\"attribute_label\";s:25:\"Connectivity technologies\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:144;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"13\";s:14:\"attribute_name\";s:23:\"connectivity-technology\";s:15:\"attribute_label\";s:23:\"Connectivity Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:145;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"189\";s:14:\"attribute_name\";s:16:\"connector-gender\";s:15:\"attribute_label\";s:16:\"Connector Gender\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:146;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"186\";s:14:\"attribute_name\";s:14:\"connector-type\";s:15:\"attribute_label\";s:14:\"Connector Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:147;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"364\";s:14:\"attribute_name\";s:12:\"construction\";s:15:\"attribute_label\";s:12:\"Construction\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:148;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"466\";s:14:\"attribute_name\";s:17:\"construction-type\";s:15:\"attribute_label\";s:17:\"Construction Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:149;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"324\";s:14:\"attribute_name\";s:16:\"contact-material\";s:15:\"attribute_label\";s:16:\"Contact Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:150;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"320\";s:14:\"attribute_name\";s:12:\"contact-type\";s:15:\"attribute_label\";s:12:\"Contact Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:151;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"150\";s:14:\"attribute_name\";s:18:\"container-material\";s:15:\"attribute_label\";s:18:\"Container Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:152;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"532\";s:14:\"attribute_name\";s:15:\"container-shape\";s:15:\"attribute_label\";s:15:\"Container Shape\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:153;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"577\";s:14:\"attribute_name\";s:11:\"contributor\";s:15:\"attribute_label\";s:11:\"Contributor\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:154;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"578\";s:14:\"attribute_name\";s:12:\"contributor2\";s:15:\"attribute_label\";s:12:\"Contributor2\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:155;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"19\";s:14:\"attribute_name\";s:14:\"control-method\";s:15:\"attribute_label\";s:14:\"Control Method\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:156;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"32\";s:14:\"attribute_name\";s:12:\"control-type\";s:15:\"attribute_label\";s:12:\"Control Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:157;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"36\";s:14:\"attribute_name\";s:15:\"controller-type\";s:15:\"attribute_label\";s:15:\"Controller Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:158;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"498\";s:14:\"attribute_name\";s:13:\"controls-type\";s:15:\"attribute_label\";s:13:\"Controls Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:159;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"423\";s:14:\"attribute_name\";s:20:\"cooking-surface-area\";s:15:\"attribute_label\";s:20:\"Cooking Surface Area\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:160;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"425\";s:14:\"attribute_name\";s:14:\"cooking-system\";s:15:\"attribute_label\";s:14:\"Cooking System\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:161;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"489\";s:14:\"attribute_name\";s:29:\"cookware-set-is-compatible-wi\";s:15:\"attribute_label\";s:31:\"Cookware Set Is Compatible With\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:162;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"346\";s:14:\"attribute_name\";s:17:\"country-of-origin\";s:15:\"attribute_label\";s:17:\"Country of Origin\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:163;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"505\";s:14:\"attribute_name\";s:14:\"cover-material\";s:15:\"attribute_label\";s:14:\"Cover Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:164;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"289\";s:14:\"attribute_name\";s:8:\"coverage\";s:15:\"attribute_label\";s:8:\"Coverage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:165;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"318\";s:14:\"attribute_name\";s:14:\"current-rating\";s:15:\"attribute_label\";s:14:\"Current Rating\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:166;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"626\";s:14:\"attribute_name\";s:13:\"cushion-style\";s:15:\"attribute_label\";s:13:\"Cushion Style\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:167;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"43\";s:14:\"attribute_name\";s:21:\"customer-package-type\";s:15:\"attribute_label\";s:21:\"Customer Package Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:168;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"293\";s:14:\"attribute_name\";s:16:\"cutting-diameter\";s:15:\"attribute_label\";s:16:\"Cutting Diameter\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:169;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"197\";s:14:\"attribute_name\";s:18:\"data-transfer-rate\";s:15:\"attribute_label\";s:18:\"Data Transfer Rate\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:170;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"29\";s:14:\"attribute_name\";s:20:\"date-first-available\";s:15:\"attribute_label\";s:20:\"Date First Available\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:171;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"38\";s:14:\"attribute_name\";s:10:\"department\";s:15:\"attribute_label\";s:10:\"Department\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:172;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"315\";s:14:\"attribute_name\";s:16:\"description-pile\";s:15:\"attribute_label\";s:16:\"Description Pile\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:173;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"373\";s:14:\"attribute_name\";s:6:\"design\";s:15:\"attribute_label\";s:6:\"Design\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:174;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"195\";s:14:\"attribute_name\";s:10:\"dial-color\";s:15:\"attribute_label\";s:10:\"Dial Color\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:175;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"496\";s:14:\"attribute_name\";s:8:\"diameter\";s:15:\"attribute_label\";s:8:\"Diameter\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:176;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"345\";s:14:\"attribute_name\";s:10:\"directions\";s:15:\"attribute_label\";s:10:\"Directions\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:177;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"518\";s:14:\"attribute_name\";s:21:\"dishwasher-compatible\";s:15:\"attribute_label\";s:21:\"Dishwasher compatible\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:178;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"567\";s:14:\"attribute_name\";s:15:\"dishwasher-safe\";s:15:\"attribute_label\";s:15:\"Dishwasher safe\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:179;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"1\";s:14:\"attribute_name\";s:7:\"display\";s:15:\"attribute_label\";s:7:\"display\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"1\";}i:180;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"79\";s:14:\"attribute_name\";s:18:\"display-resolution\";s:15:\"attribute_label\";s:18:\"Display resolution\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:181;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"226\";s:14:\"attribute_name\";s:12:\"display-size\";s:15:\"attribute_label\";s:12:\"Display size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:182;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"294\";s:14:\"attribute_name\";s:13:\"display-style\";s:15:\"attribute_label\";s:13:\"Display Style\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:183;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"80\";s:14:\"attribute_name\";s:18:\"display-technology\";s:15:\"attribute_label\";s:18:\"Display technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:184;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"184\";s:14:\"attribute_name\";s:12:\"display-type\";s:15:\"attribute_label\";s:12:\"Display Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:185;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"447\";s:14:\"attribute_name\";s:19:\"distinctive-feature\";s:15:\"attribute_label\";s:19:\"Distinctive feature\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:186;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"257\";s:14:\"attribute_name\";s:17:\"domestic-shipping\";s:15:\"attribute_label\";s:17:\"Domestic Shipping\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:187;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"560\";s:14:\"attribute_name\";s:10:\"drain-type\";s:15:\"attribute_label\";s:10:\"Drain Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:188;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"691\";s:14:\"attribute_name\";s:17:\"dry-time-in-hours\";s:15:\"attribute_label\";s:17:\"Dry Time In Hours\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:189;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"22\";s:14:\"attribute_name\";s:14:\"earpiece-shape\";s:15:\"attribute_label\";s:14:\"Earpiece Shape\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:190;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"210\";s:14:\"attribute_name\";s:10:\"easel-type\";s:15:\"attribute_label\";s:10:\"Easel Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:191;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"480\";s:14:\"attribute_name\";s:7:\"edition\";s:15:\"attribute_label\";s:7:\"Edition\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:192;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"580\";s:14:\"attribute_name\";s:6:\"editor\";s:15:\"attribute_label\";s:6:\"Editor\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:193;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"581\";s:14:\"attribute_name\";s:7:\"editor2\";s:15:\"attribute_label\";s:7:\"Editor2\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:194;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"582\";s:14:\"attribute_name\";s:7:\"editor3\";s:15:\"attribute_label\";s:7:\"Editor3\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:195;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"629\";s:14:\"attribute_name\";s:21:\"educational-objective\";s:15:\"attribute_label\";s:21:\"Educational Objective\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:196;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"121\";s:14:\"attribute_name\";s:26:\"effective-still-resolution\";s:15:\"attribute_label\";s:26:\"Effective Still Resolution\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:197;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"98\";s:14:\"attribute_name\";s:26:\"effective-video-resolution\";s:15:\"attribute_label\";s:26:\"Effective Video Resolution\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:198;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"134\";s:14:\"attribute_name\";s:10:\"efficiency\";s:15:\"attribute_label\";s:10:\"Efficiency\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:199;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"128\";s:14:\"attribute_name\";s:19:\"electric-fan-design\";s:15:\"attribute_label\";s:19:\"Electric fan design\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:200;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"317\";s:14:\"attribute_name\";s:13:\"embellishment\";s:15:\"attribute_label\";s:13:\"Embellishment\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:201;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"661\";s:14:\"attribute_name\";s:23:\"ethernet-cable-category\";s:15:\"attribute_label\";s:23:\"Ethernet cable category\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:202;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"461\";s:14:\"attribute_name\";s:29:\"eu-spare-part-availability-du\";s:15:\"attribute_label\";s:35:\"EU Spare Part Availability Duration\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:203;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"697\";s:14:\"attribute_name\";s:8:\"exterior\";s:15:\"attribute_label\";s:8:\"Exterior\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:204;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"334\";s:14:\"attribute_name\";s:15:\"exterior-finish\";s:15:\"attribute_label\";s:15:\"Exterior Finish\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:205;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"455\";s:14:\"attribute_name\";s:15:\"fabric-cleaning\";s:15:\"attribute_label\";s:15:\"Fabric cleaning\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:206;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"383\";s:14:\"attribute_name\";s:11:\"fabric-type\";s:15:\"attribute_label\";s:11:\"Fabric Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:207;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"538\";s:14:\"attribute_name\";s:25:\"fabric-warmth-description\";s:15:\"attribute_label\";s:25:\"Fabric Warmth Description\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:208;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"442\";s:14:\"attribute_name\";s:13:\"fabric-weight\";s:15:\"attribute_label\";s:13:\"Fabric Weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:209;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"297\";s:14:\"attribute_name\";s:13:\"field-of-view\";s:15:\"attribute_label\";s:13:\"Field Of View\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:210;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"382\";s:14:\"attribute_name\";s:13:\"fill-material\";s:15:\"attribute_label\";s:13:\"Fill Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:211;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"417\";s:14:\"attribute_name\";s:18:\"fill-material-type\";s:15:\"attribute_label\";s:18:\"Fill Material Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:212;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"351\";s:14:\"attribute_name\";s:11:\"filter-type\";s:15:\"attribute_label\";s:11:\"Filter Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:213;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"278\";s:14:\"attribute_name\";s:6:\"finish\";s:15:\"attribute_label\";s:6:\"Finish\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:214;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"130\";s:14:\"attribute_name\";s:11:\"finish-type\";s:15:\"attribute_label\";s:11:\"Finish Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:215;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"139\";s:14:\"attribute_name\";s:12:\"finish-types\";s:15:\"attribute_label\";s:12:\"Finish types\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:216;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"416\";s:14:\"attribute_name\";s:17:\"fishing-technique\";s:15:\"attribute_label\";s:17:\"Fishing Technique\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:217;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"592\";s:14:\"attribute_name\";s:8:\"fit-type\";s:15:\"attribute_label\";s:8:\"Fit Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:218;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"303\";s:14:\"attribute_name\";s:12:\"fixture-type\";s:15:\"attribute_label\";s:12:\"Fixture Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:219;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"216\";s:14:\"attribute_name\";s:5:\"flash\";s:15:\"attribute_label\";s:5:\"Flash\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:220;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"106\";s:14:\"attribute_name\";s:27:\"flash-memory-installed-size\";s:15:\"attribute_label\";s:27:\"Flash Memory Installed Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:221;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"465\";s:14:\"attribute_name\";s:17:\"flash-memory-size\";s:15:\"attribute_label\";s:17:\"Flash Memory Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:222;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"125\";s:14:\"attribute_name\";s:29:\"flash-memory-supported-size-m\";s:15:\"attribute_label\";s:35:\"Flash Memory Supported Size Maximum\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:223;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"108\";s:14:\"attribute_name\";s:17:\"flash-memory-type\";s:15:\"attribute_label\";s:17:\"Flash Memory Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:224;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"377\";s:14:\"attribute_name\";s:10:\"floor-area\";s:15:\"attribute_label\";s:10:\"Floor Area\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:225;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"375\";s:14:\"attribute_name\";s:12:\"floor-length\";s:15:\"attribute_label\";s:12:\"Floor Length\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:226;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"606\";s:14:\"attribute_name\";s:10:\"floor-type\";s:15:\"attribute_label\";s:10:\"Floor type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:227;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"369\";s:14:\"attribute_name\";s:11:\"floor-width\";s:15:\"attribute_label\";s:11:\"Floor Width\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:228;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"112\";s:14:\"attribute_name\";s:10:\"focus-type\";s:15:\"attribute_label\";s:10:\"Focus Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:229;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"403\";s:14:\"attribute_name\";s:14:\"foil-thickness\";s:15:\"attribute_label\";s:14:\"Foil Thickness\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:230;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"182\";s:14:\"attribute_name\";s:17:\"folded-knife-size\";s:15:\"attribute_label\";s:17:\"Folded Knife Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:231;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"418\";s:14:\"attribute_name\";s:11:\"folded-size\";s:15:\"attribute_label\";s:11:\"Folded size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:232;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"414\";s:14:\"attribute_name\";s:21:\"footprint-tarp-weight\";s:15:\"attribute_label\";s:21:\"Footprint Tarp Weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:233;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"583\";s:14:\"attribute_name\";s:8:\"foreword\";s:15:\"attribute_label\";s:8:\"Foreword\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:234;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"97\";s:14:\"attribute_name\";s:11:\"form-factor\";s:15:\"attribute_label\";s:11:\"Form Factor\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:235;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"603\";s:14:\"attribute_name\";s:29:\"forward-facing-maximum-child-\";s:15:\"attribute_label\";s:35:\"Forward-facing maximum child weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:236;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"602\";s:14:\"attribute_name\";s:29:\"forward-facing-minimum-child-\";s:15:\"attribute_label\";s:35:\"Forward-facing minimum child weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:237;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"542\";s:14:\"attribute_name\";s:11:\"frame-color\";s:15:\"attribute_label\";s:11:\"Frame Color\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:238;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"192\";s:14:\"attribute_name\";s:14:\"frame-material\";s:15:\"attribute_label\";s:14:\"Frame Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:239;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"102\";s:14:\"attribute_name\";s:10:\"frame-rate\";s:15:\"attribute_label\";s:10:\"Frame Rate\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:240;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"482\";s:14:\"attribute_name\";s:10:\"frame-size\";s:15:\"attribute_label\";s:10:\"Frame Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:241;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"636\";s:14:\"attribute_name\";s:10:\"frame-type\";s:15:\"attribute_label\";s:10:\"Frame Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:242;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"662\";s:14:\"attribute_name\";s:9:\"frequency\";s:15:\"attribute_label\";s:9:\"Frequency\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:243;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"299\";s:14:\"attribute_name\";s:20:\"frequency-band-class\";s:15:\"attribute_label\";s:20:\"Frequency Band Class\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:244;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"60\";s:14:\"attribute_name\";s:18:\"frequency-response\";s:15:\"attribute_label\";s:18:\"Frequency Response\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:245;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"422\";s:14:\"attribute_name\";s:9:\"fuel-type\";s:15:\"attribute_label\";s:9:\"Fuel Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:246;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"647\";s:14:\"attribute_name\";s:14:\"full-cure-time\";s:15:\"attribute_label\";s:14:\"Full Cure Time\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:247;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"612\";s:14:\"attribute_name\";s:23:\"furniture-base-movement\";s:15:\"attribute_label\";s:23:\"Furniture base movement\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:248;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"525\";s:14:\"attribute_name\";s:16:\"furniture-finish\";s:15:\"attribute_label\";s:16:\"Furniture Finish\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:249;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"673\";s:14:\"attribute_name\";s:5:\"gauge\";s:15:\"attribute_label\";s:5:\"Gauge\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:250;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"53\";s:14:\"attribute_name\";s:10:\"generation\";s:15:\"attribute_label\";s:10:\"Generation\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:251;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"473\";s:14:\"attribute_name\";s:5:\"genre\";s:15:\"attribute_label\";s:5:\"Genre\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:252;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"63\";s:14:\"attribute_name\";s:29:\"global-trade-identification-n\";s:15:\"attribute_label\";s:34:\"Global Trade Identification Number\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:253;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"366\";s:14:\"attribute_name\";s:10:\"glove-type\";s:15:\"attribute_label\";s:10:\"Glove Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:254;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"453\";s:14:\"attribute_name\";s:18:\"golf-club-bag-type\";s:15:\"attribute_label\";s:18:\"Golf Club Bag Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:255;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"73\";s:14:\"attribute_name\";s:3:\"gps\";s:15:\"attribute_label\";s:3:\"GPS\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:256;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"247\";s:14:\"attribute_name\";s:22:\"graphics-card-ram-size\";s:15:\"attribute_label\";s:22:\"Graphics Card Ram Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:257;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"244\";s:14:\"attribute_name\";s:20:\"graphics-coprocessor\";s:15:\"attribute_label\";s:20:\"Graphics Coprocessor\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:258;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"424\";s:14:\"attribute_name\";s:19:\"grill-configuration\";s:15:\"attribute_label\";s:19:\"Grill Configuration\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:259;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"476\";s:14:\"attribute_name\";s:9:\"grip-type\";s:15:\"attribute_label\";s:9:\"Grip Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:260;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"591\";s:14:\"attribute_name\";s:9:\"grit-size\";s:15:\"attribute_label\";s:9:\"Grit Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:261;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"335\";s:14:\"attribute_name\";s:16:\"hand-orientation\";s:15:\"attribute_label\";s:16:\"Hand Orientation\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:262;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"336\";s:14:\"attribute_name\";s:27:\"handle-attachment-mechanism\";s:15:\"attribute_label\";s:27:\"Handle Attachment Mechanism\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:263;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"436\";s:14:\"attribute_name\";s:15:\"handle-diameter\";s:15:\"attribute_label\";s:15:\"Handle Diameter\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:264;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"329\";s:14:\"attribute_name\";s:15:\"handle-material\";s:15:\"attribute_label\";s:15:\"Handle Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:265;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"657\";s:14:\"attribute_name\";s:11:\"handle-type\";s:15:\"attribute_label\";s:11:\"Handle Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:266;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"569\";s:14:\"attribute_name\";s:12:\"handle-width\";s:15:\"attribute_label\";s:12:\"Handle Width\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:267;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"638\";s:14:\"attribute_name\";s:14:\"handlebar-type\";s:15:\"attribute_label\";s:14:\"Handlebar Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:268;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"243\";s:14:\"attribute_name\";s:10:\"hard-drive\";s:15:\"attribute_label\";s:10:\"Hard Drive\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:269;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"462\";s:14:\"attribute_name\";s:29:\"hardware-connectivity-technol\";s:15:\"attribute_label\";s:32:\"Hardware Connectivity Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:270;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"57\";s:14:\"attribute_name\";s:18:\"hardware-interface\";s:15:\"attribute_label\";s:18:\"Hardware Interface\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:271;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"232\";s:14:\"attribute_name\";s:17:\"hardware-platform\";s:15:\"attribute_label\";s:17:\"Hardware Platform\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:272;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"624\";s:14:\"attribute_name\";s:16:\"hardware-visible\";s:15:\"attribute_label\";s:16:\"Hardware visible\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:273;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"598\";s:14:\"attribute_name\";s:12:\"harness-type\";s:15:\"attribute_label\";s:12:\"Harness type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:274;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"552\";s:14:\"attribute_name\";s:16:\"has-crackle-wick\";s:15:\"attribute_label\";s:16:\"Has Crackle Wick\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:275;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"340\";s:14:\"attribute_name\";s:20:\"has-nonstick-coating\";s:15:\"attribute_label\";s:20:\"Has Nonstick Coating\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:276;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"599\";s:14:\"attribute_name\";s:27:\"has-seat-belt-accessibility\";s:15:\"attribute_label\";s:27:\"Has Seat Belt Accessibility\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:277;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"544\";s:14:\"attribute_name\";s:18:\"has-smart-features\";s:15:\"attribute_label\";s:18:\"Has Smart Features\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:278;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"330\";s:14:\"attribute_name\";s:13:\"head-material\";s:15:\"attribute_label\";s:13:\"Head Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:279;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"347\";s:14:\"attribute_name\";s:10:\"head-style\";s:15:\"attribute_label\";s:10:\"Head Style\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:280;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"39\";s:14:\"attribute_name\";s:15:\"headphones-jack\";s:15:\"attribute_label\";s:15:\"Headphones Jack\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:281;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"562\";s:14:\"attribute_name\";s:10:\"hole-count\";s:15:\"attribute_label\";s:10:\"Hole Count\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:282;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"353\";s:14:\"attribute_name\";s:11:\"hose-length\";s:15:\"attribute_label\";s:11:\"Hose Length\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:283;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"74\";s:14:\"attribute_name\";s:21:\"human-interface-input\";s:15:\"attribute_label\";s:21:\"Human Interface Input\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:284;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"584\";s:14:\"attribute_name\";s:11:\"illustrator\";s:15:\"attribute_label\";s:11:\"Illustrator\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:285;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"459\";s:14:\"attribute_name\";s:16:\"image-brightness\";s:15:\"attribute_label\";s:16:\"Image brightness\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:286;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"590\";s:14:\"attribute_name\";s:15:\"immersion-depth\";s:15:\"attribute_label\";s:15:\"Immersion Depth\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:287;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"223\";s:14:\"attribute_name\";s:9:\"impedance\";s:15:\"attribute_label\";s:9:\"Impedance\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:288;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"438\";s:14:\"attribute_name\";s:6:\"import\";s:15:\"attribute_label\";s:6:\"Import\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:289;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"304\";s:14:\"attribute_name\";s:23:\"incandescent-equivalent\";s:15:\"attribute_label\";s:23:\"Incandescent equivalent\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:290;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"270\";s:14:\"attribute_name\";s:29:\"incandescent-equivalent-watta\";s:15:\"attribute_label\";s:31:\"Incandescent Equivalent Wattage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:291;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"15\";s:14:\"attribute_name\";s:19:\"included-components\";s:15:\"attribute_label\";s:19:\"Included Components\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:292;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"91\";s:14:\"attribute_name\";s:20:\"indoor-outdoor-usage\";s:15:\"attribute_label\";s:20:\"Indoor/Outdoor Usage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:293;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"285\";s:14:\"attribute_name\";s:29:\"ingress-protection-code-ratin\";s:15:\"attribute_label\";s:30:\"Ingress Protection Code Rating\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:294;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"479\";s:14:\"attribute_name\";s:9:\"ink-color\";s:15:\"attribute_label\";s:9:\"Ink Color\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:295;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"363\";s:14:\"attribute_name\";s:14:\"inner-material\";s:15:\"attribute_label\";s:14:\"Inner Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:296;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"52\";s:14:\"attribute_name\";s:22:\"input-device-interface\";s:15:\"attribute_label\";s:22:\"Input Device Interface\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:297;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"222\";s:14:\"attribute_name\";s:13:\"input-voltage\";s:15:\"attribute_label\";s:13:\"Input Voltage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:298;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"327\";s:14:\"attribute_name\";s:19:\"installation-method\";s:15:\"attribute_label\";s:19:\"Installation Method\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:299;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"100\";s:14:\"attribute_name\";s:17:\"installation-type\";s:15:\"attribute_label\";s:17:\"Installation Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:300;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"689\";s:14:\"attribute_name\";s:14:\"instrument-key\";s:15:\"attribute_label\";s:14:\"Instrument Key\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:301;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"457\";s:14:\"attribute_name\";s:14:\"interface-type\";s:15:\"attribute_label\";s:14:\"Interface Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:302;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"122\";s:14:\"attribute_name\";s:29:\"international-protection-rati\";s:15:\"attribute_label\";s:31:\"International Protection Rating\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:303;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"258\";s:14:\"attribute_name\";s:22:\"international-shipping\";s:15:\"attribute_label\";s:22:\"International Shipping\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:304;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"641\";s:14:\"attribute_name\";s:14:\"is-autographed\";s:15:\"attribute_label\";s:14:\"Is Autographed\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:305;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"492\";s:14:\"attribute_name\";s:29:\"is-cookware-induction-compati\";s:15:\"attribute_label\";s:32:\"Is Cookware Induction Compatible\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:306;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"135\";s:14:\"attribute_name\";s:11:\"is-cordless\";s:15:\"attribute_label\";s:12:\"Is Cordless?\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:307;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"616\";s:14:\"attribute_name\";s:15:\"is-customizable\";s:15:\"attribute_label\";s:15:\"Is Customizable\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:308;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"64\";s:14:\"attribute_name\";s:29:\"is-discontinued-by-manufactur\";s:15:\"attribute_label\";s:31:\"Is Discontinued By Manufacturer\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:309;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"341\";s:14:\"attribute_name\";s:18:\"is-dishwasher-safe\";s:15:\"attribute_label\";s:18:\"Is Dishwasher Safe\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:310;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"521\";s:14:\"attribute_name\";s:11:\"is-electric\";s:15:\"attribute_label\";s:11:\"Is Electric\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:311;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"558\";s:14:\"attribute_name\";s:19:\"is-euro-pillow-size\";s:15:\"attribute_label\";s:19:\"Is Euro Pillow Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:312;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"516\";s:14:\"attribute_name\";s:13:\"is-extendable\";s:15:\"attribute_label\";s:13:\"Is Extendable\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:313;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"617\";s:14:\"attribute_name\";s:11:\"is-foldable\";s:15:\"attribute_label\";s:11:\"Is Foldable\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:314;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"543\";s:14:\"attribute_name\";s:10:\"is-lighted\";s:15:\"attribute_label\";s:10:\"Is Lighted\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:315;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"495\";s:14:\"attribute_name\";s:16:\"is-microwaveable\";s:15:\"attribute_label\";s:16:\"Is Microwaveable\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:316;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"339\";s:14:\"attribute_name\";s:12:\"is-oven-safe\";s:15:\"attribute_label\";s:12:\"Is Oven Safe\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:317;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"565\";s:14:\"attribute_name\";s:11:\"is-portable\";s:15:\"attribute_label\";s:11:\"Is portable\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:318;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"556\";s:14:\"attribute_name\";s:18:\"is-stain-resistant\";s:15:\"attribute_label\";s:18:\"Is Stain Resistant\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:319;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"522\";s:14:\"attribute_name\";s:24:\"is-suitable-for-stovetop\";s:15:\"attribute_label\";s:24:\"Is Suitable For Stovetop\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:320;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"169\";s:14:\"attribute_name\";s:13:\"is-waterproof\";s:15:\"attribute_label\";s:13:\"Is Waterproof\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:321;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"549\";s:14:\"attribute_name\";s:10:\"item-depth\";s:15:\"attribute_label\";s:10:\"Item Depth\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:322;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"468\";s:14:\"attribute_name\";s:13:\"item-diameter\";s:15:\"attribute_label\";s:13:\"Item Diameter\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:323;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"105\";s:14:\"attribute_name\";s:25:\"item-dimensions-l-x-w-x-h\";s:15:\"attribute_label\";s:25:\"Item dimensions L x W x H\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:324;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"86\";s:14:\"attribute_name\";s:21:\"item-dimensions-lxwxh\";s:15:\"attribute_label\";s:21:\"Item Dimensions LxWxH\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:325;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"683\";s:14:\"attribute_name\";s:19:\"item-display-height\";s:15:\"attribute_label\";s:19:\"Item display height\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:326;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"433\";s:14:\"attribute_name\";s:25:\"item-firmness-description\";s:15:\"attribute_label\";s:25:\"Item Firmness Description\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:327;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"407\";s:14:\"attribute_name\";s:9:\"item-form\";s:15:\"attribute_label\";s:9:\"Item Form\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:328;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"286\";s:14:\"attribute_name\";s:11:\"item-length\";s:15:\"attribute_label\";s:11:\"Item Length\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:329;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"28\";s:14:\"attribute_name\";s:17:\"item-model-number\";s:15:\"attribute_label\";s:17:\"Item model number\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:330;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"84\";s:14:\"attribute_name\";s:29:\"item-package-dimensions-l-x-w\";s:15:\"attribute_label\";s:33:\"Item Package Dimensions L x W x H\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:331;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"181\";s:14:\"attribute_name\";s:21:\"item-package-quantity\";s:15:\"attribute_label\";s:21:\"Item Package Quantity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:332;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"402\";s:14:\"attribute_name\";s:15:\"item-resistance\";s:15:\"attribute_label\";s:15:\"Item Resistance\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:333;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"263\";s:14:\"attribute_name\";s:14:\"item-thickness\";s:15:\"attribute_label\";s:14:\"Item Thickness\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:334;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"494\";s:14:\"attribute_name\";s:11:\"item-volume\";s:15:\"attribute_label\";s:11:\"Item Volume\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:335;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"27\";s:14:\"attribute_name\";s:11:\"item-weight\";s:15:\"attribute_label\";s:11:\"Item Weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:336;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"512\";s:14:\"attribute_name\";s:9:\"lamp-type\";s:15:\"attribute_label\";s:9:\"Lamp Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:337;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"69\";s:14:\"attribute_name\";s:8:\"language\";s:15:\"attribute_label\";s:8:\"Language\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:338;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"486\";s:14:\"attribute_name\";s:6:\"league\";s:15:\"attribute_label\";s:6:\"League\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:339;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"613\";s:14:\"attribute_name\";s:9:\"leg-style\";s:15:\"attribute_label\";s:9:\"Leg Style\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:340;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"593\";s:14:\"attribute_name\";s:26:\"lens-curvature-description\";s:15:\"attribute_label\";s:26:\"Lens Curvature Description\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:341;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"310\";s:14:\"attribute_name\";s:9:\"lens-type\";s:15:\"attribute_label\";s:9:\"Lens Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:342;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"535\";s:14:\"attribute_name\";s:12:\"lid-material\";s:15:\"attribute_label\";s:12:\"Lid Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:343;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"594\";s:14:\"attribute_name\";s:9:\"lift-type\";s:15:\"attribute_label\";s:9:\"Lift Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:344;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"268\";s:14:\"attribute_name\";s:11:\"light-color\";s:15:\"attribute_label\";s:11:\"Light Color\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:345;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"281\";s:14:\"attribute_name\";s:15:\"light-direction\";s:15:\"attribute_label\";s:15:\"Light Direction\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:346;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"300\";s:14:\"attribute_name\";s:18:\"light-fixture-form\";s:15:\"attribute_label\";s:18:\"Light fixture form\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:347;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"165\";s:14:\"attribute_name\";s:20:\"light-output-maximum\";s:15:\"attribute_label\";s:20:\"Light Output Maximum\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:348;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"118\";s:14:\"attribute_name\";s:17:\"light-source-type\";s:15:\"attribute_label\";s:17:\"Light Source Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:349;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"274\";s:14:\"attribute_name\";s:20:\"light-source-wattage\";s:15:\"attribute_label\";s:20:\"Light Source Wattage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:350;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"266\";s:14:\"attribute_name\";s:10:\"light-type\";s:15:\"attribute_label\";s:10:\"Light Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:351;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"301\";s:14:\"attribute_name\";s:15:\"lighting-method\";s:15:\"attribute_label\";s:15:\"Lighting Method\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:352;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"478\";s:14:\"attribute_name\";s:9:\"line-size\";s:15:\"attribute_label\";s:9:\"Line Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:353;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"212\";s:14:\"attribute_name\";s:13:\"load-capacity\";s:15:\"attribute_label\";s:13:\"Load Capacity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:354;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"333\";s:14:\"attribute_name\";s:9:\"lock-type\";s:15:\"attribute_label\";s:9:\"Lock Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:355;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"113\";s:14:\"attribute_name\";s:20:\"low-light-technology\";s:15:\"attribute_label\";s:20:\"Low light technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:356;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"326\";s:14:\"attribute_name\";s:24:\"lower-temperature-rating\";s:15:\"attribute_label\";s:24:\"Lower Temperature Rating\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:357;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"288\";s:14:\"attribute_name\";s:13:\"luminous-flux\";s:15:\"attribute_label\";s:13:\"Luminous Flux\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:358;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"160\";s:14:\"attribute_name\";s:25:\"main-power-connector-type\";s:15:\"attribute_label\";s:25:\"Main Power Connector Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:359;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"138\";s:14:\"attribute_name\";s:16:\"manufacture-year\";s:15:\"attribute_label\";s:16:\"Manufacture Year\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:360;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"25\";s:14:\"attribute_name\";s:12:\"manufacturer\";s:15:\"attribute_label\";s:12:\"Manufacturer\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:361;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"261\";s:14:\"attribute_name\";s:24:\"manufacturer-maximum-age\";s:15:\"attribute_label\";s:24:\"Manufacturer Maximum Age\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:362;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"185\";s:14:\"attribute_name\";s:29:\"manufacturer-minimum-age-mont\";s:15:\"attribute_label\";s:33:\"Manufacturer Minimum Age (MONTHS)\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:363;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"199\";s:14:\"attribute_name\";s:24:\"manufacturer-part-number\";s:15:\"attribute_label\";s:24:\"Manufacturer Part Number\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:364;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"256\";s:14:\"attribute_name\";s:28:\"manufacturer-recommended-age\";s:15:\"attribute_label\";s:28:\"Manufacturer recommended age\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:365;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"9\";s:14:\"attribute_name\";s:8:\"material\";s:15:\"attribute_label\";s:8:\"Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:366;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"564\";s:14:\"attribute_name\";s:20:\"material-composition\";s:15:\"attribute_label\";s:20:\"Material Composition\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:367;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"143\";s:14:\"attribute_name\";s:16:\"material-feature\";s:15:\"attribute_label\";s:16:\"Material Feature\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:368;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"566\";s:14:\"attribute_name\";s:13:\"material-free\";s:15:\"attribute_label\";s:13:\"Material free\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:369;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"204\";s:14:\"attribute_name\";s:13:\"material-type\";s:15:\"attribute_label\";s:13:\"Material Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:370;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"144\";s:14:\"attribute_name\";s:18:\"material-type-free\";s:15:\"attribute_label\";s:18:\"Material Type Free\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:371;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"240\";s:14:\"attribute_name\";s:21:\"max-screen-resolution\";s:15:\"attribute_label\";s:21:\"Max Screen Resolution\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:372;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"500\";s:14:\"attribute_name\";s:23:\"max-temperature-setting\";s:15:\"attribute_label\";s:23:\"Max Temperature Setting\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:373;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"665\";s:14:\"attribute_name\";s:23:\"maximum-compatible-size\";s:15:\"attribute_label\";s:23:\"Maximum Compatible Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:374;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"283\";s:14:\"attribute_name\";s:26:\"maximum-compatible-wattage\";s:15:\"attribute_label\";s:26:\"Maximum Compatible Wattage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:375;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"426\";s:14:\"attribute_name\";s:21:\"maximum-energy-output\";s:15:\"attribute_label\";s:21:\"Maximum Energy Output\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:376;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"376\";s:14:\"attribute_name\";s:14:\"maximum-height\";s:15:\"attribute_label\";s:14:\"Maximum Height\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:377;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"384\";s:14:\"attribute_name\";s:29:\"maximum-height-recommendation\";s:15:\"attribute_label\";s:29:\"Maximum height recommendation\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:378;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"356\";s:14:\"attribute_name\";s:18:\"maximum-horsepower\";s:15:\"attribute_label\";s:18:\"Maximum Horsepower\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:379;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"588\";s:14:\"attribute_name\";s:20:\"maximum-indoor-range\";s:15:\"attribute_label\";s:20:\"Maximum indoor range\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:380;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"608\";s:14:\"attribute_name\";s:29:\"maximum-number-of-compatible-\";s:15:\"attribute_label\";s:34:\"Maximum number of compatible seats\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:381;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"176\";s:14:\"attribute_name\";s:13:\"maximum-power\";s:15:\"attribute_label\";s:13:\"Maximum Power\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:382;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"359\";s:14:\"attribute_name\";s:16:\"maximum-pressure\";s:15:\"attribute_label\";s:16:\"Maximum Pressure\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:383;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"171\";s:14:\"attribute_name\";s:13:\"maximum-range\";s:15:\"attribute_label\";s:13:\"Maximum Range\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:384;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"519\";s:14:\"attribute_name\";s:24:\"maximum-recommended-load\";s:15:\"attribute_label\";s:24:\"Maximum recommended load\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:385;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"352\";s:14:\"attribute_name\";s:15:\"maximum-suction\";s:15:\"attribute_label\";s:15:\"Maximum Suction\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:386;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"675\";s:14:\"attribute_name\";s:22:\"maximum-supply-voltage\";s:15:\"attribute_label\";s:22:\"Maximum Supply Voltage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:387;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"338\";s:14:\"attribute_name\";s:19:\"maximum-temperature\";s:15:\"attribute_label\";s:19:\"Maximum Temperature\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:388;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"178\";s:14:\"attribute_name\";s:15:\"maximum-voltage\";s:15:\"attribute_label\";s:15:\"Maximum Voltage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:389;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"123\";s:14:\"attribute_name\";s:29:\"maximum-webcam-image-resoluti\";s:15:\"attribute_label\";s:31:\"Maximum Webcam Image Resolution\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:390;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"536\";s:14:\"attribute_name\";s:23:\"maximum-weight-capacity\";s:15:\"attribute_label\";s:23:\"Maximum Weight Capacity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:391;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"400\";s:14:\"attribute_name\";s:29:\"maximum-weight-recommendation\";s:15:\"attribute_label\";s:29:\"Maximum Weight Recommendation\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:392;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"553\";s:14:\"attribute_name\";s:18:\"measurement-system\";s:15:\"attribute_label\";s:18:\"Measurement System\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:393;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"2\";s:14:\"attribute_name\";s:6:\"memory\";s:15:\"attribute_label\";s:6:\"memory\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"1\";}i:394;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"431\";s:14:\"attribute_name\";s:22:\"memory-slots-available\";s:15:\"attribute_label\";s:22:\"Memory Slots Available\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:395;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"242\";s:14:\"attribute_name\";s:12:\"memory-speed\";s:15:\"attribute_label\";s:12:\"Memory Speed\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:396;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"68\";s:14:\"attribute_name\";s:23:\"memory-storage-capacity\";s:15:\"attribute_label\";s:23:\"Memory Storage Capacity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:397;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"595\";s:14:\"attribute_name\";s:10:\"metal-type\";s:15:\"attribute_label\";s:10:\"Metal Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:398;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"445\";s:14:\"attribute_name\";s:16:\"mildew-resistant\";s:15:\"attribute_label\";s:16:\"Mildew-resistant\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:399;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"499\";s:14:\"attribute_name\";s:23:\"min-temperature-setting\";s:15:\"attribute_label\";s:23:\"Min Temperature Setting\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:400;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"666\";s:14:\"attribute_name\";s:23:\"minimum-compatible-size\";s:15:\"attribute_label\";s:23:\"Minimum Compatible Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:401;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"601\";s:14:\"attribute_name\";s:29:\"minimum-height-recommendation\";s:15:\"attribute_label\";s:29:\"Minimum height recommendation\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:402;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"676\";s:14:\"attribute_name\";s:22:\"minimum-supply-voltage\";s:15:\"attribute_label\";s:22:\"Minimum Supply Voltage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:403;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"385\";s:14:\"attribute_name\";s:20:\"minimum-trail-weight\";s:15:\"attribute_label\";s:20:\"Minimum Trail Weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:404;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"634\";s:14:\"attribute_name\";s:19:\"minimum-user-height\";s:15:\"attribute_label\";s:19:\"Minimum User Height\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:405;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"570\";s:14:\"attribute_name\";s:29:\"minimum-weight-recommendation\";s:15:\"attribute_label\";s:29:\"Minimum weight recommendation\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:406;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"368\";s:14:\"attribute_name\";s:5:\"model\";s:15:\"attribute_label\";s:5:\"Model\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:407;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"663\";s:14:\"attribute_name\";s:10:\"model-info\";s:15:\"attribute_label\";s:10:\"Model Info\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:408;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"12\";s:14:\"attribute_name\";s:10:\"model-name\";s:15:\"attribute_label\";s:10:\"Model Name\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:409;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"460\";s:14:\"attribute_name\";s:12:\"model-number\";s:15:\"attribute_label\";s:12:\"Model number\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:410;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"90\";s:14:\"attribute_name\";s:10:\"model-year\";s:15:\"attribute_label\";s:10:\"Model Year\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:411;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"354\";s:14:\"attribute_name\";s:16:\"motor-horsepower\";s:15:\"attribute_label\";s:16:\"Motor Horsepower\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:412;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"137\";s:14:\"attribute_name\";s:10:\"motor-type\";s:15:\"attribute_label\";s:10:\"Motor Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:413;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"94\";s:14:\"attribute_name\";s:13:\"mounting-type\";s:15:\"attribute_label\";s:13:\"Mounting Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:414;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"688\";s:14:\"attribute_name\";s:13:\"musical-style\";s:15:\"attribute_label\";s:13:\"Musical Style\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:415;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"469\";s:14:\"attribute_name\";s:8:\"narrator\";s:15:\"attribute_label\";s:8:\"Narrator\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:416;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"579\";s:14:\"attribute_name\";s:9:\"narrator2\";s:15:\"attribute_label\";s:9:\"Narrator2\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:417;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"254\";s:14:\"attribute_name\";s:21:\"national-stock-number\";s:15:\"attribute_label\";s:21:\"National Stock Number\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:418;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"412\";s:14:\"attribute_name\";s:18:\"net-content-weight\";s:15:\"attribute_label\";s:18:\"Net Content Weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:419;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"101\";s:14:\"attribute_name\";s:18:\"night-vision-range\";s:15:\"attribute_label\";s:18:\"Night Vision Range\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:420;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"674\";s:14:\"attribute_name\";s:11:\"no-of-wires\";s:15:\"attribute_label\";s:12:\"No. of wires\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:421;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"11\";s:14:\"attribute_name\";s:13:\"noise-control\";s:15:\"attribute_label\";s:13:\"Noise Control\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:422;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"54\";s:14:\"attribute_name\";s:22:\"noise-control-features\";s:15:\"attribute_label\";s:22:\"Noise Control Features\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:423;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"129\";s:14:\"attribute_name\";s:11:\"noise-level\";s:15:\"attribute_label\";s:11:\"Noise Level\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:424;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"172\";s:14:\"attribute_name\";s:19:\"number-of-batteries\";s:15:\"attribute_label\";s:19:\"Number of Batteries\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:425;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"157\";s:14:\"attribute_name\";s:16:\"number-of-blades\";s:15:\"attribute_label\";s:16:\"Number of Blades\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:426;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"672\";s:14:\"attribute_name\";s:23:\"number-of-cable-strands\";s:15:\"attribute_label\";s:23:\"Number of Cable Strands\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:427;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"96\";s:14:\"attribute_name\";s:18:\"number-of-channels\";s:15:\"attribute_label\";s:18:\"Number of Channels\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:428;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"220\";s:14:\"attribute_name\";s:18:\"number-of-circuits\";s:15:\"attribute_label\";s:18:\"Number Of Circuits\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:429;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"454\";s:14:\"attribute_name\";s:22:\"number-of-compartments\";s:15:\"attribute_label\";s:22:\"Number of Compartments\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:430;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"452\";s:14:\"attribute_name\";s:18:\"number-of-dividers\";s:15:\"attribute_label\";s:18:\"Number of Dividers\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:431;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"386\";s:14:\"attribute_name\";s:15:\"number-of-doors\";s:15:\"attribute_label\";s:15:\"Number Of Doors\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:432;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"539\";s:14:\"attribute_name\";s:17:\"number-of-drawers\";s:15:\"attribute_label\";s:17:\"Number of Drawers\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:433;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"392\";s:14:\"attribute_name\";s:18:\"number-of-guylines\";s:15:\"attribute_label\";s:18:\"Number of Guylines\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:434;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"678\";s:14:\"attribute_name\";s:15:\"number-of-holes\";s:15:\"attribute_label\";s:15:\"Number Of Holes\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:435;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"523\";s:14:\"attribute_name\";s:15:\"number-of-hooks\";s:15:\"attribute_label\";s:15:\"Number of Hooks\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:436;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"124\";s:14:\"attribute_name\";s:17:\"number-of-ir-leds\";s:15:\"attribute_label\";s:17:\"Number of IR LEDs\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:437;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"35\";s:14:\"attribute_name\";s:15:\"number-of-items\";s:15:\"attribute_label\";s:15:\"Number of Items\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:438;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"282\";s:14:\"attribute_name\";s:23:\"number-of-light-sources\";s:15:\"attribute_label\";s:23:\"Number of Light Sources\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:439;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"166\";s:14:\"attribute_name\";s:16:\"number-of-lights\";s:15:\"attribute_label\";s:16:\"Number of Lights\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:440;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"687\";s:14:\"attribute_name\";s:15:\"number-of-packs\";s:15:\"attribute_label\";s:15:\"Number of Packs\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:441;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"205\";s:14:\"attribute_name\";s:16:\"number-of-pieces\";s:15:\"attribute_label\";s:16:\"Number of Pieces\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:442;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"190\";s:14:\"attribute_name\";s:14:\"number-of-pins\";s:15:\"attribute_label\";s:14:\"Number of Pins\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:443;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"474\";s:14:\"attribute_name\";s:17:\"number-of-players\";s:15:\"attribute_label\";s:17:\"Number of Players\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:444;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"389\";s:14:\"attribute_name\";s:17:\"number-of-pockets\";s:15:\"attribute_label\";s:17:\"Number Of Pockets\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:445;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"325\";s:14:\"attribute_name\";s:19:\"number-of-positions\";s:15:\"attribute_label\";s:19:\"Number of Positions\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:446;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"136\";s:14:\"attribute_name\";s:22:\"number-of-power-levels\";s:15:\"attribute_label\";s:22:\"Number of Power Levels\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:447;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"255\";s:14:\"attribute_name\";s:20:\"number-of-processors\";s:15:\"attribute_label\";s:20:\"Number of Processors\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:448;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"547\";s:14:\"attribute_name\";s:18:\"number-of-programs\";s:15:\"attribute_label\";s:18:\"Number of Programs\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:449;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"596\";s:14:\"attribute_name\";s:29:\"number-of-reclining-positions\";s:15:\"attribute_label\";s:29:\"Number of reclining positions\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:450;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"378\";s:14:\"attribute_name\";s:15:\"number-of-rooms\";s:15:\"attribute_label\";s:15:\"Number of Rooms\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:451;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"554\";s:14:\"attribute_name\";s:14:\"number-of-sets\";s:15:\"attribute_label\";s:14:\"Number of Sets\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:452;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"420\";s:14:\"attribute_name\";s:18:\"number-of-settings\";s:15:\"attribute_label\";s:18:\"Number of settings\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:453;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"524\";s:14:\"attribute_name\";s:17:\"number-of-shelves\";s:15:\"attribute_label\";s:17:\"Number of Shelves\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:454;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"548\";s:14:\"attribute_name\";s:16:\"number-of-slices\";s:15:\"attribute_label\";s:16:\"Number of Slices\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:455;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"146\";s:14:\"attribute_name\";s:16:\"number-of-speeds\";s:15:\"attribute_label\";s:16:\"Number of Speeds\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:456;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"399\";s:14:\"attribute_name\";s:16:\"number-of-spokes\";s:15:\"attribute_label\";s:16:\"Number of Spokes\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:457;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"483\";s:14:\"attribute_name\";s:17:\"number-of-springs\";s:15:\"attribute_label\";s:17:\"Number Of Springs\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:458;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"393\";s:14:\"attribute_name\";s:16:\"number-of-stakes\";s:15:\"attribute_label\";s:16:\"Number of Stakes\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:459;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"249\";s:14:\"attribute_name\";s:23:\"number-of-usb-2-0-ports\";s:15:\"attribute_label\";s:23:\"Number of USB 2.0 Ports\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:460;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"250\";s:14:\"attribute_name\";s:23:\"number-of-usb-3-0-ports\";s:15:\"attribute_label\";s:23:\"Number of USB 3.0 Ports\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:461;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"395\";s:14:\"attribute_name\";s:20:\"number-of-vestibules\";s:15:\"attribute_label\";s:20:\"Number of Vestibules\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:462;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"637\";s:14:\"attribute_name\";s:16:\"number-of-wheels\";s:15:\"attribute_label\";s:16:\"Number of Wheels\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:463;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"388\";s:14:\"attribute_name\";s:17:\"number-of-windows\";s:15:\"attribute_label\";s:17:\"Number of Windows\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:464;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"151\";s:14:\"attribute_name\";s:8:\"occasion\";s:15:\"attribute_label\";s:8:\"Occasion\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:465;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"370\";s:14:\"attribute_name\";s:9:\"occupancy\";s:15:\"attribute_label\";s:9:\"Occupancy\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:466;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"372\";s:14:\"attribute_name\";s:17:\"occupant-capacity\";s:15:\"attribute_label\";s:17:\"Occupant Capacity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:467;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"463\";s:14:\"attribute_name\";s:17:\"opening-mechanism\";s:15:\"attribute_label\";s:17:\"Opening Mechanism\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:468;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"668\";s:14:\"attribute_name\";s:18:\"operating-humidity\";s:15:\"attribute_label\";s:18:\"Operating Humidity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:469;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"233\";s:14:\"attribute_name\";s:16:\"operating-system\";s:15:\"attribute_label\";s:16:\"Operating System\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:470;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"331\";s:14:\"attribute_name\";s:21:\"operating-temperature\";s:15:\"attribute_label\";s:21:\"Operating Temperature\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:471;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"695\";s:14:\"attribute_name\";s:14:\"operating-time\";s:15:\"attribute_label\";s:14:\"Operating Time\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:472;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"319\";s:14:\"attribute_name\";s:17:\"operating-voltage\";s:15:\"attribute_label\";s:17:\"Operating Voltage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:473;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"194\";s:14:\"attribute_name\";s:14:\"operation-mode\";s:15:\"attribute_label\";s:14:\"Operation Mode\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:474;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"6\";s:14:\"attribute_name\";s:16:\"operation-system\";s:15:\"attribute_label\";s:16:\"operation-system\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"1\";}i:475;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"653\";s:14:\"attribute_name\";s:25:\"optical-sensor-technology\";s:15:\"attribute_label\";s:25:\"Optical Sensor Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:476;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"109\";s:14:\"attribute_name\";s:12:\"optical-zoom\";s:15:\"attribute_label\";s:12:\"Optical Zoom\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:477;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"545\";s:14:\"attribute_name\";s:11:\"orientation\";s:15:\"attribute_label\";s:11:\"Orientation\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:478;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"71\";s:14:\"attribute_name\";s:2:\"os\";s:15:\"attribute_label\";s:2:\"OS\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:479;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"213\";s:14:\"attribute_name\";s:21:\"other-camera-features\";s:15:\"attribute_label\";s:21:\"Other camera features\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:480;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"59\";s:14:\"attribute_name\";s:22:\"other-display-features\";s:15:\"attribute_label\";s:22:\"Other display features\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:481;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"191\";s:14:\"attribute_name\";s:14:\"outer-material\";s:15:\"attribute_label\";s:14:\"Outer Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:482;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"679\";s:14:\"attribute_name\";s:12:\"output-power\";s:15:\"attribute_label\";s:12:\"Output Power\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:483;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"180\";s:14:\"attribute_name\";s:14:\"output-voltage\";s:15:\"attribute_label\";s:14:\"Output Voltage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:484;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"237\";s:14:\"attribute_name\";s:14:\"output-wattage\";s:15:\"attribute_label\";s:14:\"Output Wattage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:485;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"56\";s:14:\"attribute_name\";s:18:\"package-dimensions\";s:15:\"attribute_label\";s:18:\"Package Dimensions\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:486;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"531\";s:14:\"attribute_name\";s:19:\"package-information\";s:15:\"attribute_label\";s:19:\"Package Information\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:487;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"572\";s:14:\"attribute_name\";s:12:\"package-type\";s:15:\"attribute_label\";s:12:\"Package Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:488;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"85\";s:14:\"attribute_name\";s:14:\"package-weight\";s:15:\"attribute_label\";s:14:\"Package Weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:489;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"155\";s:14:\"attribute_name\";s:14:\"packaging-type\";s:15:\"attribute_label\";s:14:\"Packaging Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:490;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"360\";s:14:\"attribute_name\";s:8:\"pad-type\";s:15:\"attribute_label\";s:8:\"Pad Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:491;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"429\";s:14:\"attribute_name\";s:10:\"paint-type\";s:15:\"attribute_label\";s:10:\"Paint Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:492;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"694\";s:14:\"attribute_name\";s:16:\"paper-dimensions\";s:15:\"attribute_label\";s:16:\"Paper Dimensions\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:493;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"493\";s:14:\"attribute_name\";s:12:\"paper-finish\";s:15:\"attribute_label\";s:12:\"Paper Finish\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:494;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"693\";s:14:\"attribute_name\";s:12:\"paper-weight\";s:15:\"attribute_label\";s:12:\"Paper Weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:495;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"89\";s:14:\"attribute_name\";s:11:\"part-number\";s:15:\"attribute_label\";s:11:\"Part Number\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:496;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"141\";s:14:\"attribute_name\";s:7:\"pattern\";s:15:\"attribute_label\";s:7:\"Pattern\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:497;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"446\";s:14:\"attribute_name\";s:7:\"perfume\";s:15:\"attribute_label\";s:7:\"Perfume\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:498;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"214\";s:14:\"attribute_name\";s:15:\"phone-talk-time\";s:15:\"attribute_label\";s:15:\"Phone Talk Time\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:499;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"120\";s:14:\"attribute_name\";s:23:\"photo-sensor-technology\";s:15:\"attribute_label\";s:23:\"Photo Sensor Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:500;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"555\";s:14:\"attribute_name\";s:11:\"pile-height\";s:15:\"attribute_label\";s:11:\"Pile Height\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:501;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"504\";s:14:\"attribute_name\";s:11:\"pillow-type\";s:15:\"attribute_label\";s:11:\"Pillow Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:502;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"510\";s:14:\"attribute_name\";s:24:\"pillowcase-closure-depth\";s:15:\"attribute_label\";s:24:\"Pillowcase Closure Depth\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:503;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"507\";s:14:\"attribute_name\";s:24:\"pillowcase-closure-width\";s:15:\"attribute_label\";s:24:\"Pillowcase Closure Width\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:504;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"509\";s:14:\"attribute_name\";s:17:\"pillowcase-length\";s:15:\"attribute_label\";s:17:\"Pillowcase Length\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:505;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"508\";s:14:\"attribute_name\";s:16:\"pillowcase-width\";s:15:\"attribute_label\";s:16:\"Pillowcase Width\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:506;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"530\";s:14:\"attribute_name\";s:28:\"plant-or-animal-product-type\";s:15:\"attribute_label\";s:28:\"Plant or Animal Product Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:507;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"484\";s:14:\"attribute_name\";s:20:\"platform-for-display\";s:15:\"attribute_label\";s:20:\"Platform for Display\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:508;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"291\";s:14:\"attribute_name\";s:11:\"plug-format\";s:15:\"attribute_label\";s:11:\"Plug Format\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:509;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"659\";s:14:\"attribute_name\";s:18:\"pocket-description\";s:15:\"attribute_label\";s:18:\"Pocket Description\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:510;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"350\";s:14:\"attribute_name\";s:11:\"point-style\";s:15:\"attribute_label\";s:11:\"Point Style\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:511;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"477\";s:14:\"attribute_name\";s:10:\"point-type\";s:15:\"attribute_label\";s:10:\"Point Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:512;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"374\";s:14:\"attribute_name\";s:18:\"pole-material-type\";s:15:\"attribute_label\";s:18:\"Pole Material Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:513;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"355\";s:14:\"attribute_name\";s:8:\"portable\";s:15:\"attribute_label\";s:8:\"Portable\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:514;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"273\";s:14:\"attribute_name\";s:17:\"power-consumption\";s:15:\"attribute_label\";s:17:\"Power Consumption\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:515;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"92\";s:14:\"attribute_name\";s:12:\"power-source\";s:15:\"attribute_label\";s:12:\"Power Source\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:516;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"362\";s:14:\"attribute_name\";s:11:\"pre-printed\";s:15:\"attribute_label\";s:11:\"Pre-printed\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:517;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"241\";s:14:\"attribute_name\";s:9:\"processor\";s:15:\"attribute_label\";s:9:\"Processor\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:518;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"514\";s:14:\"attribute_name\";s:16:\"product-benefits\";s:15:\"attribute_label\";s:16:\"Product Benefits\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:519;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"142\";s:14:\"attribute_name\";s:25:\"product-care-instructions\";s:15:\"attribute_label\";s:25:\"Product Care Instructions\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:520;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"26\";s:14:\"attribute_name\";s:18:\"product-dimensions\";s:15:\"attribute_label\";s:18:\"Product Dimensions\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:521;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"126\";s:14:\"attribute_name\";s:13:\"product-grade\";s:15:\"attribute_label\";s:13:\"Product Grade\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:522;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"527\";s:14:\"attribute_name\";s:12:\"product-name\";s:15:\"attribute_label\";s:12:\"Product Name\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:523;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"681\";s:14:\"attribute_name\";s:19:\"projection-distance\";s:15:\"attribute_label\";s:19:\"Projection Distance\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:524;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"471\";s:14:\"attribute_name\";s:16:\"publication-date\";s:15:\"attribute_label\";s:16:\"Publication Date\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:525;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"470\";s:14:\"attribute_name\";s:9:\"publisher\";s:15:\"attribute_label\";s:9:\"Publisher\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:526;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"563\";s:14:\"attribute_name\";s:9:\"pump-type\";s:15:\"attribute_label\";s:9:\"Pump type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:527;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"380\";s:14:\"attribute_name\";s:16:\"rainfly-material\";s:15:\"attribute_label\";s:16:\"Rainfly Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:528;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"396\";s:14:\"attribute_name\";s:14:\"rainfly-weight\";s:15:\"attribute_label\";s:14:\"Rainfly Weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:529;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"200\";s:14:\"attribute_name\";s:3:\"ram\";s:15:\"attribute_label\";s:3:\"RAM\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:530;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"70\";s:14:\"attribute_name\";s:25:\"ram-memory-installed-size\";s:15:\"attribute_label\";s:25:\"Ram Memory Installed Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:531;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"467\";s:14:\"attribute_name\";s:5:\"rated\";s:15:\"attribute_label\";s:5:\"Rated\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:532;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"201\";s:14:\"attribute_name\";s:10:\"read-speed\";s:15:\"attribute_label\";s:10:\"Read Speed\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:533;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"574\";s:14:\"attribute_name\";s:16:\"readout-accuracy\";s:15:\"attribute_label\";s:16:\"Readout Accuracy\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:534;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"600\";s:14:\"attribute_name\";s:29:\"rear-facing-maximum-child-wei\";s:15:\"attribute_label\";s:32:\"Rear-facing maximum child weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:535;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"604\";s:14:\"attribute_name\";s:29:\"rear-facing-minimum-child-wei\";s:15:\"attribute_label\";s:32:\"Rear-facing minimum child weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:536;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"654\";s:14:\"attribute_name\";s:29:\"rechargeable-battery-included\";s:15:\"attribute_label\";s:29:\"Rechargeable Battery Included\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:537;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"614\";s:14:\"attribute_name\";s:24:\"reclining-position-count\";s:15:\"attribute_label\";s:24:\"Reclining Position Count\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:538;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"42\";s:14:\"attribute_name\";s:28:\"recommended-uses-for-product\";s:15:\"attribute_label\";s:28:\"Recommended Uses For Product\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:539;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"671\";s:14:\"attribute_name\";s:18:\"recording-capacity\";s:15:\"attribute_label\";s:18:\"Recording Capacity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:540;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"309\";s:14:\"attribute_name\";s:14:\"recording-mode\";s:15:\"attribute_label\";s:14:\"Recording Mode\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:541;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"589\";s:14:\"attribute_name\";s:27:\"recycled-content-percentage\";s:15:\"attribute_label\";s:27:\"Recycled Content Percentage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:542;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"511\";s:14:\"attribute_name\";s:6:\"refill\";s:15:\"attribute_label\";s:6:\"Refill\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:543;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"229\";s:14:\"attribute_name\";s:12:\"release-date\";s:15:\"attribute_label\";s:12:\"Release date\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:544;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"652\";s:14:\"attribute_name\";s:23:\"remote-control-included\";s:15:\"attribute_label\";s:24:\"Remote Control Included?\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:545;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"649\";s:14:\"attribute_name\";s:25:\"remote-control-technology\";s:15:\"attribute_label\";s:25:\"Remote Control Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:546;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"458\";s:14:\"attribute_name\";s:10:\"resolution\";s:15:\"attribute_label\";s:10:\"Resolution\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:547;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"576\";s:14:\"attribute_name\";s:13:\"response-time\";s:15:\"attribute_label\";s:13:\"Response Time\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:548;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"655\";s:14:\"attribute_name\";s:13:\"return-policy\";s:15:\"attribute_label\";s:13:\"Return Policy\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:549;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"133\";s:14:\"attribute_name\";s:11:\"reusability\";s:15:\"attribute_label\";s:11:\"Reusability\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:550;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"398\";s:14:\"attribute_name\";s:9:\"rim-width\";s:15:\"attribute_label\";s:9:\"Rim Width\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:551;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"517\";s:14:\"attribute_name\";s:11:\"riser-color\";s:15:\"attribute_label\";s:11:\"Riser Color\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:552;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"117\";s:14:\"attribute_name\";s:9:\"room-type\";s:15:\"attribute_label\";s:9:\"Room Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:553;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"557\";s:14:\"attribute_name\";s:13:\"rug-form-type\";s:15:\"attribute_label\";s:13:\"Rug Form Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:554;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"644\";s:14:\"attribute_name\";s:6:\"ruling\";s:15:\"attribute_label\";s:6:\"Ruling\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:555;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"669\";s:14:\"attribute_name\";s:13:\"safety-rating\";s:15:\"attribute_label\";s:13:\"Safety Rating\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:556;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"568\";s:14:\"attribute_name\";s:14:\"safety-warning\";s:15:\"attribute_label\";s:14:\"Safety warning\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:557;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"75\";s:14:\"attribute_name\";s:18:\"scanner-resolution\";s:15:\"attribute_label\";s:18:\"Scanner Resolution\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:558;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"148\";s:14:\"attribute_name\";s:5:\"scent\";s:15:\"attribute_label\";s:5:\"Scent\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:559;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"206\";s:14:\"attribute_name\";s:11:\"school-type\";s:15:\"attribute_label\";s:11:\"School type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:560;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"239\";s:14:\"attribute_name\";s:17:\"screen-resolution\";s:15:\"attribute_label\";s:17:\"Screen Resolution\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:561;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"183\";s:14:\"attribute_name\";s:11:\"screen-size\";s:15:\"attribute_label\";s:11:\"Screen Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:562;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"152\";s:14:\"attribute_name\";s:7:\"seasons\";s:15:\"attribute_label\";s:7:\"Seasons\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:563;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"620\";s:14:\"attribute_name\";s:25:\"seat-back-interior-height\";s:15:\"attribute_label\";s:25:\"Seat Back Interior Height\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:564;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"607\";s:14:\"attribute_name\";s:10:\"seat-depth\";s:15:\"attribute_label\";s:10:\"Seat Depth\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:565;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"609\";s:14:\"attribute_name\";s:11:\"seat-height\";s:15:\"attribute_label\";s:11:\"Seat Height\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:566;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"621\";s:14:\"attribute_name\";s:11:\"seat-length\";s:15:\"attribute_label\";s:11:\"Seat Length\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:567;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"625\";s:14:\"attribute_name\";s:18:\"seat-material-type\";s:15:\"attribute_label\";s:18:\"Seat Material Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:568;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"619\";s:14:\"attribute_name\";s:10:\"seat-width\";s:15:\"attribute_label\";s:10:\"Seat Width\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:569;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"203\";s:14:\"attribute_name\";s:29:\"secure-digital-association-sp\";s:15:\"attribute_label\";s:38:\"Secure Digital Association Speed Class\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:570;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"62\";s:14:\"attribute_name\";s:11:\"sensitivity\";s:15:\"attribute_label\";s:11:\"Sensitivity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:571;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"313\";s:14:\"attribute_name\";s:17:\"sensor-technology\";s:15:\"attribute_label\";s:17:\"Sensor technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:572;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"586\";s:14:\"attribute_name\";s:11:\"sensor-type\";s:15:\"attribute_label\";s:11:\"Sensor Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:573;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"252\";s:14:\"attribute_name\";s:6:\"series\";s:15:\"attribute_label\";s:6:\"Series\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:574;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"66\";s:14:\"attribute_name\";s:13:\"series-number\";s:15:\"attribute_label\";s:13:\"Series Number\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:575;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"221\";s:14:\"attribute_name\";s:8:\"set-name\";s:15:\"attribute_label\";s:8:\"Set Name\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:576;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"302\";s:14:\"attribute_name\";s:11:\"shade-color\";s:15:\"attribute_label\";s:11:\"Shade Color\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:577;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"515\";s:14:\"attribute_name\";s:12:\"shade-height\";s:15:\"attribute_label\";s:12:\"Shade Height\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:578;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"287\";s:14:\"attribute_name\";s:14:\"shade-material\";s:15:\"attribute_label\";s:14:\"Shade Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:579;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"111\";s:14:\"attribute_name\";s:5:\"shape\";s:15:\"attribute_label\";s:5:\"Shape\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:580;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"692\";s:14:\"attribute_name\";s:11:\"sheet-count\";s:15:\"attribute_label\";s:11:\"Sheet Count\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:581;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"645\";s:14:\"attribute_name\";s:10:\"sheet-size\";s:15:\"attribute_label\";s:10:\"Sheet Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:582;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"528\";s:14:\"attribute_name\";s:19:\"shelf-bracket-shape\";s:15:\"attribute_label\";s:19:\"Shelf Bracket Shape\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:583;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"529\";s:14:\"attribute_name\";s:15:\"shelf-thickness\";s:15:\"attribute_label\";s:15:\"Shelf Thickness\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:584;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"541\";s:14:\"attribute_name\";s:10:\"shelf-type\";s:15:\"attribute_label\";s:10:\"Shelf Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:585;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"658\";s:14:\"attribute_name\";s:10:\"shell-type\";s:15:\"attribute_label\";s:10:\"Shell Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:586;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"218\";s:14:\"attribute_name\";s:21:\"signal-to-noise-ratio\";s:15:\"attribute_label\";s:21:\"Signal-to-Noise Ratio\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:587;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"10\";s:14:\"attribute_name\";s:4:\"size\";s:15:\"attribute_label\";s:4:\"Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:588;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"262\";s:14:\"attribute_name\";s:11:\"skill-level\";s:15:\"attribute_label\";s:11:\"Skill Level\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:589;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"587\";s:14:\"attribute_name\";s:9:\"skin-type\";s:15:\"attribute_label\";s:9:\"Skin type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:590;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"685\";s:14:\"attribute_name\";s:24:\"smart-home-compatibility\";s:15:\"attribute_label\";s:24:\"Smart Home Compatibility\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:591;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"328\";s:14:\"attribute_name\";s:11:\"sound-level\";s:15:\"attribute_label\";s:11:\"Sound Level\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:592;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"682\";s:14:\"attribute_name\";s:26:\"speaker-amplification-type\";s:15:\"attribute_label\";s:26:\"Speaker Amplification Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:593;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"643\";s:14:\"attribute_name\";s:13:\"speaker-count\";s:15:\"attribute_label\";s:13:\"Speaker Count\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:594;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"175\";s:14:\"attribute_name\";s:12:\"speaker-size\";s:15:\"attribute_label\";s:12:\"Speaker Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:595;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"168\";s:14:\"attribute_name\";s:12:\"speaker-type\";s:15:\"attribute_label\";s:12:\"Speaker Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:596;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"24\";s:14:\"attribute_name\";s:15:\"special-feature\";s:15:\"attribute_label\";s:15:\"Special Feature\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:597;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"58\";s:14:\"attribute_name\";s:16:\"special-features\";s:15:\"attribute_label\";s:16:\"Special Features\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:598;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"640\";s:14:\"attribute_name\";s:17:\"special-size-type\";s:15:\"attribute_label\";s:17:\"Special size type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:599;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"358\";s:14:\"attribute_name\";s:29:\"specific-instructions-for-use\";s:15:\"attribute_label\";s:29:\"Specific instructions for use\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:600;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"284\";s:14:\"attribute_name\";s:13:\"specific-uses\";s:15:\"attribute_label\";s:13:\"Specific Uses\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:601;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"40\";s:14:\"attribute_name\";s:25:\"specific-uses-for-product\";s:15:\"attribute_label\";s:25:\"Specific Uses For Product\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:602;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"83\";s:14:\"attribute_name\";s:17:\"specification-met\";s:15:\"attribute_label\";s:17:\"Specification Met\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:603;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"131\";s:14:\"attribute_name\";s:5:\"speed\";s:15:\"attribute_label\";s:5:\"Speed\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:604;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"365\";s:14:\"attribute_name\";s:5:\"sport\";s:15:\"attribute_label\";s:5:\"Sport\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:605;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"260\";s:14:\"attribute_name\";s:10:\"sport-type\";s:15:\"attribute_label\";s:10:\"Sport Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:606;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"390\";s:14:\"attribute_name\";s:14:\"stake-material\";s:15:\"attribute_label\";s:14:\"Stake Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:607;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"67\";s:14:\"attribute_name\";s:28:\"standing-screen-display-size\";s:15:\"attribute_label\";s:28:\"Standing screen display size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:608;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"487\";s:14:\"attribute_name\";s:14:\"stitching-type\";s:15:\"attribute_label\";s:14:\"Stitching Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:609;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"464\";s:14:\"attribute_name\";s:14:\"storage-volume\";s:15:\"attribute_label\";s:14:\"Storage Volume\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:610;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"427\";s:14:\"attribute_name\";s:10:\"strap-type\";s:15:\"attribute_label\";s:10:\"Strap Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:611;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"34\";s:14:\"attribute_name\";s:5:\"style\";s:15:\"attribute_label\";s:5:\"Style\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:612;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"264\";s:14:\"attribute_name\";s:9:\"sub-brand\";s:15:\"attribute_label\";s:9:\"Sub Brand\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:613;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"173\";s:14:\"attribute_name\";s:29:\"subwoofer-connectivity-techno\";s:15:\"attribute_label\";s:33:\"Subwoofer Connectivity Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:614;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"217\";s:14:\"attribute_name\";s:18:\"subwoofer-diameter\";s:15:\"attribute_label\";s:18:\"Subwoofer Diameter\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:615;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"88\";s:14:\"attribute_name\";s:15:\"suggested-users\";s:15:\"attribute_label\";s:15:\"Suggested Users\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:616;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"391\";s:14:\"attribute_name\";s:29:\"support-pole-attachment-mecha\";s:15:\"attribute_label\";s:33:\"Support Pole Attachment Mechanism\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:617;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"650\";s:14:\"attribute_name\";s:22:\"supported-image-format\";s:15:\"attribute_label\";s:22:\"Supported Image Format\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:618;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"55\";s:14:\"attribute_name\";s:29:\"supports-bluetooth-technology\";s:15:\"attribute_label\";s:29:\"Supports Bluetooth Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:619;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"411\";s:14:\"attribute_name\";s:22:\"surface-recommendation\";s:15:\"attribute_label\";s:22:\"Surface Recommendation\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:620;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"174\";s:14:\"attribute_name\";s:29:\"surround-sound-channel-config\";s:15:\"attribute_label\";s:36:\"Surround Sound Channel Configuration\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:621;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"631\";s:14:\"attribute_name\";s:15:\"suspension-type\";s:15:\"attribute_label\";s:15:\"Suspension Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:622;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"308\";s:14:\"attribute_name\";s:24:\"switch-installation-type\";s:15:\"attribute_label\";s:24:\"Switch Installation Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:623;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"677\";s:14:\"attribute_name\";s:12:\"switch-style\";s:15:\"attribute_label\";s:12:\"Switch Style\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:624;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"132\";s:14:\"attribute_name\";s:11:\"switch-type\";s:15:\"attribute_label\";s:11:\"Switch Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:625;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"428\";s:14:\"attribute_name\";s:11:\"tank-volume\";s:15:\"attribute_label\";s:11:\"Tank Volume\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:626;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"441\";s:14:\"attribute_name\";s:15:\"target-audience\";s:15:\"attribute_label\";s:15:\"Target Audience\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:627;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"342\";s:14:\"attribute_name\";s:23:\"target-audience-keyword\";s:15:\"attribute_label\";s:23:\"Target Audience Keyword\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:628;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"448\";s:14:\"attribute_name\";s:13:\"target-gender\";s:15:\"attribute_label\";s:13:\"Target gender\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:629;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"485\";s:14:\"attribute_name\";s:9:\"team-name\";s:15:\"attribute_label\";s:9:\"Team Name\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:630;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"332\";s:14:\"attribute_name\";s:17:\"temperature-range\";s:15:\"attribute_label\";s:17:\"Temperature Range\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:631;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"381\";s:14:\"attribute_name\";s:18:\"temperature-rating\";s:15:\"attribute_label\";s:18:\"Temperature Rating\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:632;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"664\";s:14:\"attribute_name\";s:16:\"tensile-strength\";s:15:\"attribute_label\";s:16:\"Tensile Strength\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:633;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"379\";s:14:\"attribute_name\";s:19:\"tent-floor-material\";s:15:\"attribute_label\";s:19:\"Tent Floor Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:634;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"321\";s:14:\"attribute_name\";s:8:\"terminal\";s:15:\"attribute_label\";s:8:\"Terminal\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:635;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"656\";s:14:\"attribute_name\";s:12:\"terms-of-use\";s:15:\"attribute_label\";s:12:\"Terms of Use\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:636;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"145\";s:14:\"attribute_name\";s:5:\"theme\";s:15:\"attribute_label\";s:5:\"Theme\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:637;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"419\";s:14:\"attribute_name\";s:18:\"thermal-resistance\";s:15:\"attribute_label\";s:18:\"Thermal Resistance\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:638;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"265\";s:14:\"attribute_name\";s:9:\"thickness\";s:15:\"attribute_label\";s:9:\"Thickness\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:639;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"506\";s:14:\"attribute_name\";s:12:\"thread-count\";s:15:\"attribute_label\";s:12:\"Thread Count\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:640;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"444\";s:14:\"attribute_name\";s:23:\"tick-repellent-material\";s:15:\"attribute_label\";s:23:\"Tick-repellent material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:641;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"615\";s:14:\"attribute_name\";s:7:\"tilting\";s:15:\"attribute_label\";s:7:\"Tilting\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:642;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"251\";s:14:\"attribute_name\";s:15:\"total-usb-ports\";s:15:\"attribute_label\";s:15:\"Total Usb Ports\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:643;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"437\";s:14:\"attribute_name\";s:15:\"towel-form-type\";s:15:\"attribute_label\";s:15:\"Towel form type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:644;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"224\";s:14:\"attribute_name\";s:16:\"tweeter-diameter\";s:15:\"attribute_label\";s:16:\"Tweeter Diameter\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:645;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"230\";s:14:\"attribute_name\";s:12:\"type-of-item\";s:15:\"attribute_label\";s:12:\"Type of item\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:646;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"410\";s:14:\"attribute_name\";s:28:\"ultraviolet-light-protection\";s:15:\"attribute_label\";s:28:\"Ultraviolet Light Protection\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:647;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"18\";s:14:\"attribute_name\";s:10:\"unit-count\";s:15:\"attribute_label\";s:10:\"Unit Count\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:648;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"207\";s:14:\"attribute_name\";s:5:\"units\";s:15:\"attribute_label\";s:5:\"Units\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:649;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"23\";s:14:\"attribute_name\";s:3:\"upc\";s:15:\"attribute_label\";s:3:\"UPC\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:650;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"623\";s:14:\"attribute_name\";s:22:\"upholstery-fabric-type\";s:15:\"attribute_label\";s:22:\"Upholstery Fabric Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:651;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"179\";s:14:\"attribute_name\";s:24:\"upper-temperature-rating\";s:15:\"attribute_label\";s:24:\"Upper Temperature Rating\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:652;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"290\";s:14:\"attribute_name\";s:5:\"usage\";s:15:\"attribute_label\";s:5:\"Usage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:653;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"597\";s:14:\"attribute_name\";s:7:\"use-for\";s:15:\"attribute_label\";s:7:\"Use for\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:654;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"491\";s:14:\"attribute_name\";s:21:\"utensil-compatibility\";s:15:\"attribute_label\";s:21:\"Utensil Compatibility\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:655;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"357\";s:14:\"attribute_name\";s:28:\"vacuum-collection-technology\";s:15:\"attribute_label\";s:28:\"Vacuum Collection Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:656;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"628\";s:14:\"attribute_name\";s:7:\"variety\";s:15:\"attribute_label\";s:7:\"Variety\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:657;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"585\";s:14:\"attribute_name\";s:20:\"vehicle-service-type\";s:15:\"attribute_label\";s:20:\"Vehicle Service Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:658;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"413\";s:14:\"attribute_name\";s:14:\"vestibule-area\";s:15:\"attribute_label\";s:14:\"Vestibule Area\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:659;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"119\";s:14:\"attribute_name\";s:20:\"video-capture-format\";s:15:\"attribute_label\";s:20:\"Video Capture Format\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:660;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"95\";s:14:\"attribute_name\";s:24:\"video-capture-resolution\";s:15:\"attribute_label\";s:24:\"Video Capture Resolution\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:661;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"110\";s:14:\"attribute_name\";s:14:\"video-encoding\";s:15:\"attribute_label\";s:14:\"Video encoding\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:662;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"311\";s:14:\"attribute_name\";s:11:\"video-input\";s:15:\"attribute_label\";s:11:\"Video Input\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:663;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"651\";s:14:\"attribute_name\";s:23:\"video-output-resolution\";s:15:\"attribute_label\";s:23:\"Video Output Resolution\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:664;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"99\";s:14:\"attribute_name\";s:13:\"viewing-angle\";s:15:\"attribute_label\";s:13:\"Viewing Angle\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:665;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"646\";s:14:\"attribute_name\";s:9:\"viscosity\";s:15:\"attribute_label\";s:9:\"Viscosity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:666;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"648\";s:14:\"attribute_name\";s:15:\"viscosity-level\";s:15:\"attribute_label\";s:15:\"Viscosity Level\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:667;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"103\";s:14:\"attribute_name\";s:7:\"voltage\";s:15:\"attribute_label\";s:7:\"Voltage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:668;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"443\";s:14:\"attribute_name\";s:6:\"volume\";s:15:\"attribute_label\";s:6:\"Volume\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:669;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"234\";s:14:\"attribute_name\";s:8:\"warranty\";s:15:\"attribute_label\";s:8:\"Warranty\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:670;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"87\";s:14:\"attribute_name\";s:20:\"warranty-description\";s:15:\"attribute_label\";s:20:\"Warranty Description\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:671;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"170\";s:14:\"attribute_name\";s:13:\"warranty-type\";s:15:\"attribute_label\";s:13:\"Warranty Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:672;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"699\";s:14:\"attribute_name\";s:23:\"waste-bag-circumference\";s:15:\"attribute_label\";s:23:\"Waste Bag Circumference\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:673;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"259\";s:14:\"attribute_name\";s:22:\"water-resistance-depth\";s:15:\"attribute_label\";s:22:\"Water Resistance Depth\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:674;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"17\";s:14:\"attribute_name\";s:22:\"water-resistance-level\";s:15:\"attribute_label\";s:22:\"Water Resistance Level\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:675;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"371\";s:14:\"attribute_name\";s:27:\"water-resistance-technology\";s:15:\"attribute_label\";s:27:\"Water Resistance Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:676;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:1:\"3\";s:14:\"attribute_name\";s:10:\"waterproof\";s:15:\"attribute_label\";s:10:\"waterproof\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:10:\"menu_order\";s:16:\"attribute_public\";s:1:\"1\";}i:677;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"104\";s:14:\"attribute_name\";s:7:\"wattage\";s:15:\"attribute_label\";s:7:\"Wattage\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:678;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"440\";s:14:\"attribute_name\";s:10:\"weave-type\";s:15:\"attribute_label\";s:10:\"Weave Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:679;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"575\";s:14:\"attribute_name\";s:16:\"weigh-scale-type\";s:15:\"attribute_label\";s:16:\"Weigh Scale Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:680;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"78\";s:14:\"attribute_name\";s:6:\"weight\";s:15:\"attribute_label\";s:6:\"Weight\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:681;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"526\";s:14:\"attribute_name\";s:15:\"weight-capacity\";s:15:\"attribute_label\";s:15:\"Weight capacity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:682;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"361\";s:14:\"attribute_name\";s:12:\"weight-limit\";s:15:\"attribute_label\";s:12:\"Weight Limit\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:683;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"77\";s:14:\"attribute_name\";s:16:\"whats-in-the-box\";s:15:\"attribute_label\";s:16:\"Whats in the box\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:684;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"408\";s:14:\"attribute_name\";s:17:\"wheel-backspacing\";s:15:\"attribute_label\";s:17:\"Wheel Backspacing\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:685;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"633\";s:14:\"attribute_name\";s:14:\"wheel-material\";s:15:\"attribute_label\";s:14:\"Wheel Material\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:686;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"397\";s:14:\"attribute_name\";s:10:\"wheel-size\";s:15:\"attribute_label\";s:10:\"Wheel Size\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:687;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"639\";s:14:\"attribute_name\";s:10:\"wheel-type\";s:15:\"attribute_label\";s:10:\"Wheel Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:688;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"161\";s:14:\"attribute_name\";s:16:\"white-brightness\";s:15:\"attribute_label\";s:16:\"White Brightness\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:689;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"153\";s:14:\"attribute_name\";s:13:\"wick-quantity\";s:15:\"attribute_label\";s:13:\"Wick Quantity\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:690;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:2:\"14\";s:14:\"attribute_name\";s:29:\"wireless-communication-techno\";s:15:\"attribute_label\";s:33:\"Wireless Communication Technology\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:691;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"235\";s:14:\"attribute_name\";s:15:\"wireless-remote\";s:15:\"attribute_label\";s:15:\"Wireless Remote\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:692;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"248\";s:14:\"attribute_name\";s:13:\"wireless-type\";s:15:\"attribute_label\";s:13:\"Wireless Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:693;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"490\";s:14:\"attribute_name\";s:8:\"with-lid\";s:15:\"attribute_label\";s:8:\"With Lid\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:694;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"219\";s:14:\"attribute_name\";s:15:\"woofer-diameter\";s:15:\"attribute_label\";s:15:\"Woofer Diameter\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:695;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"202\";s:14:\"attribute_name\";s:11:\"write-speed\";s:15:\"attribute_label\";s:11:\"Write Speed\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:696;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"642\";s:14:\"attribute_name\";s:4:\"year\";s:15:\"attribute_label\";s:4:\"Year\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:697;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"115\";s:14:\"attribute_name\";s:10:\"zoom-ratio\";s:15:\"attribute_label\";s:10:\"Zoom Ratio\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}i:698;O:8:\"stdClass\":6:{s:12:\"attribute_id\";s:3:\"114\";s:14:\"attribute_name\";s:9:\"zoom-type\";s:15:\"attribute_label\";s:9:\"Zoom Type\";s:14:\"attribute_type\";s:6:\"select\";s:17:\"attribute_orderby\";s:4:\"name\";s:16:\"attribute_public\";s:1:\"1\";}}', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`)
WordPress database error: [INSERT, UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_jetpack_autoloader_plugin_paths', 'a:1:{i:0;s:29:\"{{WP_PLUGIN_DIR}}/woocommerce\";}', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`)
WordPress database error: [INSERT, UPDATE command denied to user 'u452380358_nJcVw'@'127.0.0.1' for table `u452380358_3z9Po`.`wp_options`]INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1775246033.7300229072570800781250', 'on') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`)